summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp')
-rw-r--r--third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
new file mode 100644
index 0000000..2a0a0a7
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
@@ -0,0 +1,25 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "core/css/cssom/StyleValueFactory.h"
+
+#include "core/css/CSSValue.h"
+#include "core/css/cssom/SimpleLength.h"
+#include "core/css/cssom/StyleValue.h"
+
+namespace blink {
+
+StyleValue* StyleValueFactory::create(CSSPropertyID propertyID, const CSSValue& value)
+{
+ if (value.isPrimitiveValue()) {
+ const CSSPrimitiveValue& primitiveValue = toCSSPrimitiveValue(value);
+ if (primitiveValue.isLength() && !primitiveValue.isCalculated()) {
+ return SimpleLength::create(primitiveValue.getDoubleValue(), primitiveValue.typeWithCalcResolved());
+ }
+ }
+ // TODO(meade): Implement the rest.
+ return nullptr;
+}
+
+} // namespace blink