Index: Source/core/css/DOMWindowCSS.cpp |
diff --git a/Source/core/css/DOMWindowCSS.cpp b/Source/core/css/DOMWindowCSS.cpp |
index 1738ae6ce80e60ed19548900e05f6d4831ae6c52..be978a78da607d5f9c5d5224770c012730a6605a 100644 |
--- a/Source/core/css/DOMWindowCSS.cpp |
+++ b/Source/core/css/DOMWindowCSS.cpp |
@@ -49,8 +49,8 @@ bool DOMWindowCSS::supports(const String& property, const String& value) |
ASSERT(CSSPropertyMetadata::isEnabledProperty(unresolvedProperty)); |
// This will return false when !important is present |
- RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(HTMLQuirksMode); |
- return CSSParser::parseValue(dummyStyle.get(), unresolvedProperty, value, false, HTMLStandardMode, 0); |
+ RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = MutableStylePropertySet::create(HTMLStandardMode); |
+ return CSSParser::parseValue(dummyStyle.get(), unresolvedProperty, value, false, 0); |
} |
bool DOMWindowCSS::supports(const String& conditionText) |