Use \f rather than \x0C for whitespace form feed (#2158)
This commit is contained in:
parent
259a3031ce
commit
756cfc0276
@ -53,8 +53,7 @@ class CssStyleApplier {
|
|||||||
this._styleDataUrl = styleDataUrl;
|
this._styleDataUrl = styleDataUrl;
|
||||||
this._styleData = [];
|
this._styleData = [];
|
||||||
this._cachedRules = new Map();
|
this._cachedRules = new Map();
|
||||||
// eslint-disable-next-line no-control-regex
|
this._patternHtmlWhitespace = /[\t\r\n\f ]+/g;
|
||||||
this._patternHtmlWhitespace = /[\t\r\n\x0C ]+/g;
|
|
||||||
this._patternClassNameCharacter = /[0-9a-zA-Z-_]/;
|
this._patternClassNameCharacter = /[0-9a-zA-Z-_]/;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,8 +22,7 @@
|
|||||||
class SimpleDOMParser {
|
class SimpleDOMParser {
|
||||||
constructor(content) {
|
constructor(content) {
|
||||||
this._document = parse5.parse(content);
|
this._document = parse5.parse(content);
|
||||||
// eslint-disable-next-line no-control-regex
|
this._patternHtmlWhitespace = /[\t\r\n\f ]+/g;
|
||||||
this._patternHtmlWhitespace = /[\t\r\n\x0C ]+/g;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getElementById(id, root=null) {
|
getElementById(id, root=null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user