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

Unified Diff: Source/core/css/CSSStyleDeclaration.cpp

Issue 15899009: Support indexed setter generation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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: Source/core/css/CSSStyleDeclaration.cpp
diff --git a/Source/core/css/CSSStyleDeclaration.cpp b/Source/core/css/CSSStyleDeclaration.cpp
index de3064306a8a857dcc8d133d987fd0f7fe48f414..1d7e3126b368ecfa3bce83f56196e716eec019d6 100644
--- a/Source/core/css/CSSStyleDeclaration.cpp
+++ b/Source/core/css/CSSStyleDeclaration.cpp
@@ -165,7 +165,7 @@ void CSSStyleDeclaration::anonymousNamedGetter(const AtomicString& name, bool& r
returnValue1Enabled = true;
}
-bool CSSStyleDeclaration::anonymousNamedSetter(const AtomicString& propertyName, const String& value, ExceptionCode& ec)
+bool CSSStyleDeclaration::anonymousNamedSetter(const AtomicString& propertyName, const String& value, bool isValueNull, bool isValueUndefined, ExceptionCode& ec)
{
String propertyValue = value;
CSSPropertyInfo* propInfo = CSSStyleDeclaration::cssPropertyInfo(propertyName);

Powered by Google App Engine
This is Rietveld 408576698