Index: third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html |
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..78ade9865527ba86b52ba56918c79e10b8915398 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssURLImageValue.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<script src="../resources/testharness.js"></script> |
+<script src="../resources/testharnessreport.js"></script> |
+ |
+<script> |
+ |
+test(function() { |
+ var bg = new CSSURLImageValue("https://s-media-cache-ak0.pinimg.com/736x/b7/49/fa/b749fa790b531d4fb8f2007bf74859f0.jpg"); |
meade_UTC10
2016/08/12 05:35:32
Don't use this URL. Anything else will do since it
anthonyhkf
2016/08/12 07:36:06
Done.
|
+ assert_equals(bg.state, "unloaded"); |
+}, "Can construct a new CSSURLImageValue object with url"); |
+ |
+</script> |