Index: third_party/WebKit/LayoutTests/typedcssom/transformValue.html |
diff --git a/third_party/WebKit/LayoutTests/typedcssom/transformValue.html b/third_party/WebKit/LayoutTests/typedcssom/transformValue.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..66fcd7e5c76e9fc13d2834ca29b9bb366316fa1f |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/typedcssom/transformValue.html |
@@ -0,0 +1,16 @@ |
+<!DOCTYPE html> |
+<script src="../resources/testharness.js"></script> |
+<script src="../resources/testharnessreport.js"></script> |
+ |
+<script> |
+ |
+test(function() { |
+ var transformValueObject = new TransformValue(); |
+ assert_true(transformValueObject instanceof TransformValue); |
+ assert_true(transformValueObject instanceof StyleValue); |
+}, "A TransformValue object can be constructed"); |
+ |
+</script> |
+ |
+<body> |
+</body> |