Index: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
index 1efc3a647cc936996fb7e059f95221bb30674df3..1106d1dfe8915c9d88e0aa2765acaac9d6f5b730 100644 |
--- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
@@ -677,7 +677,7 @@ String CSSComputedStyleDeclaration::getPropertyValueInternal(CSSPropertyID prope |
return getPropertyValue(propertyID); |
} |
-void CSSComputedStyleDeclaration::setPropertyInternal(CSSPropertyID id, const String&, bool, ExceptionState& exceptionState) |
+void CSSComputedStyleDeclaration::setPropertyInternal(CSSPropertyID id, const String&, const String&, bool, ExceptionState& exceptionState) |
{ |
exceptionState.throwDOMException(NoModificationAllowedError, "These styles are computed, and therefore the '" + getPropertyNameString(id) + "' property is read-only."); |
Timothy Loh
2015/11/14 02:21:05
this might do something weird for custom propertie
leviw_travelin_and_unemployed
2015/11/17 01:25:07
Added a case for this to my test.
|
} |