Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: third_party/WebKit/Source/core/css/DOMWindowCSS.cpp

Issue 2616093003: Make CSSParserContext be garbage collected. (Closed)
Patch Set: fix fuzzer compile again Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
diff --git a/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp b/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
index 46c90a4218e188aefb0c9d833db582802b0000e9..3b9bbca4a4ae6db22cc1c30f099dcd00dae9e835 100644
--- a/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
+++ b/third_party/WebKit/Source/core/css/DOMWindowCSS.cpp
@@ -57,7 +57,7 @@ bool DOMWindowCSS::supports(const String& property, const String& value) {
// This will return false when !important is present
MutableStylePropertySet* dummyStyle =
MutableStylePropertySet::create(HTMLStandardMode);
- return CSSParser::parseValue(dummyStyle, unresolvedProperty, value, false, 0)
+ return CSSParser::parseValue(dummyStyle, unresolvedProperty, value, false)
.didParse;
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSStyleSheet.cpp ('k') | third_party/WebKit/Source/core/css/FontFace.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698