You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow preprocessing of the input stream to be skipped
This change adds an optional isPreprocessed boolean parameter to the
StyleSheetParser() constructor; if the value of that parameter is true,
the steps from https://drafts.csswg.org/css-syntax/#input-preprocessing
for preprocessing the input stream are skipped — so UnescapeFilterReader()
is not called.
This is useful when the code is called from a context where the input
stream has already been preprocessed — for example, if the contents of
the stylesheet being parsed are from an HTML document that has already
been parsed by a conformant HTML parser (which is the case, for example,
when https://github.com/validator/validator HTML checker calls the code).
0 commit comments