Chromium Code Reviews| Index: Source/core/css/CSSComputedStyleDeclaration.cpp |
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp |
| index df84903ef27a30ab300efc8405dd9e60968ed193..3cf16f9b3e4d0cfb37e99f22fc98fea1299b3e42 100644 |
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp |
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp |
| @@ -403,6 +403,15 @@ void CSSComputedStyleDeclaration::setCSSText(const String&, ExceptionState& exce |
| exceptionState.throwDOMException(NoModificationAllowedError, "These styles are computed, and therefore read-only."); |
| } |
| +String CSSComputedStyleDeclaration::cssFloat() const |
| +{ |
| + return ""; |
|
Timothy Loh
2015/06/24 00:35:00
These are wrong, the spec defines cssFloat in term
Sunil Ratnu
2015/06/24 13:17:11
Using getPropertyValue(CSSPropertyFloat) in the cs
|
| +} |
| + |
| +void CSSComputedStyleDeclaration::setCSSFloat(const String& value) |
| +{ |
| +} |
| + |
| static CSSValueID cssIdentifierForFontSizeKeyword(int keywordSize) |
| { |
| ASSERT_ARG(keywordSize, keywordSize); |