Add option to block animation on <title> tag (#760)

* Add option to block animation on <title> tag which can generate massive recordings on some websites (think scrolling title tag)

* Add new option to slimDOMOptions type with tsdoc as suggested by Justin
This commit is contained in:
Eoghan Murray
2024-06-13 06:27:39 +01:00
committed by GitHub
parent 4beaf2d12a
commit e08706ae60
5 changed files with 26 additions and 5 deletions

View File

@@ -169,6 +169,10 @@ export type SlimDOMOptions = Partial<{
headMetaHttpEquiv: boolean;
headMetaAuthorship: boolean;
headMetaVerification: boolean;
/**
* blocks title tag 'animations' which can generate a lot of mutations that aren't usually displayed in replayers
**/
headTitleMutations: boolean;
}>;
export type DataURLOptions = Partial<{