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

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

Issue 1113013002: CSSStyleDeclaration.cssFloat is not enumerated property (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added test Created 5 years, 6 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
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.h ('k') | Source/core/css/CSSStyleDeclaration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSComputedStyleDeclaration.cpp
diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
index df84903ef27a30ab300efc8405dd9e60968ed193..b7056a523903b55751bf765fbbf279a028b918a8 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 getPropertyValue(CSSPropertyFloat);
+}
+
+void CSSComputedStyleDeclaration::setCSSFloat(const String&, ExceptionState& exceptionState)
+{
+}
+
static CSSValueID cssIdentifierForFontSizeKeyword(int keywordSize)
{
ASSERT_ARG(keywordSize, keywordSize);
« no previous file with comments | « Source/core/css/CSSComputedStyleDeclaration.h ('k') | Source/core/css/CSSStyleDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698