From 756cfc027696901f0afc9b84bb439c67c8b620ad Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 22 May 2022 13:11:38 -0400 Subject: Use \f rather than \x0C for whitespace form feed (#2158) --- ext/js/dom/sandbox/css-style-applier.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ext/js/dom/sandbox/css-style-applier.js') diff --git a/ext/js/dom/sandbox/css-style-applier.js b/ext/js/dom/sandbox/css-style-applier.js index 6c45f13e..0f44df0a 100644 --- a/ext/js/dom/sandbox/css-style-applier.js +++ b/ext/js/dom/sandbox/css-style-applier.js @@ -53,8 +53,7 @@ class CssStyleApplier { this._styleDataUrl = styleDataUrl; this._styleData = []; this._cachedRules = new Map(); - // eslint-disable-next-line no-control-regex - this._patternHtmlWhitespace = /[\t\r\n\x0C ]+/g; + this._patternHtmlWhitespace = /[\t\r\n\f ]+/g; this._patternClassNameCharacter = /[0-9a-zA-Z-_]/; } -- cgit v1.2.3