HTMLQuirksMode     46 Source/core/css/CSSParserMode.cpp     , m_mode(document.inQuirksMode() ? HTMLQuirksMode : HTMLStandardMode)
HTMLQuirksMode     57 Source/core/css/CSSParserMode.h     return mode == HTMLQuirksMode; // || mode == HTMLAttributeMode;
HTMLQuirksMode     72 Source/core/css/CSSParserMode.h     return mode == HTMLQuirksMode || mode == HTMLAttributeMode || mode == SVGAttributeMode;
HTMLQuirksMode    198 Source/core/css/StylePropertySet.h     static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(CSSParserMode = HTMLQuirksMode);
HTMLQuirksMode    999 Source/core/css/parser/BisonCSSParser-in.cpp     if (!parseValue(dummyStyle.get(), CSSPropertyFontFamily, string, false, HTMLQuirksMode, 0))
HTMLQuirksMode   1157 Source/core/css/parser/BisonCSSParser-in.cpp     context.setMode((element->isHTMLElement() && !document.inQuirksMode()) ? HTMLStandardMode : HTMLQuirksMode);
HTMLQuirksMode    874 Source/core/css/parser/CSSPropertyParser.cpp             validPrimitive = (!id && validUnit(value, FPositiveInteger, HTMLQuirksMode));
HTMLQuirksMode    881 Source/core/css/parser/CSSPropertyParser.cpp             validPrimitive = (!id && validUnit(value, FInteger, HTMLQuirksMode));
HTMLQuirksMode   1335 Source/core/css/parser/CSSPropertyParser.cpp         validPrimitive = (!id && (value->unit == CSSPrimitiveValue::CSS_PERCENTAGE || value->fValue) && validUnit(value, FInteger | FPercent | FNonNeg, HTMLQuirksMode));
HTMLQuirksMode   2012 Source/core/css/parser/CSSPropertyParser.cpp         || (!value->id && validUnit(value, FPositiveInteger, HTMLQuirksMode))) {
HTMLQuirksMode   4720 Source/core/css/parser/CSSPropertyParser.cpp     if (validUnit(value, FInteger | FNonNeg, HTMLQuirksMode)) {
HTMLQuirksMode   3172 Source/core/dom/Element.cpp         CSSParserMode mode = (!isHTMLElement() || document().inQuirksMode()) ? HTMLQuirksMode : HTMLStandardMode;
HTMLQuirksMode   2015 Source/core/html/canvas/CanvasRenderingContext2D.cpp         CSSParserMode mode = m_usesCSSCompatibilityParseMode ? HTMLQuirksMode : HTMLStandardMode;