Index: LayoutTests/imported/csswg-test/css-shapes-1/shape-outside-invalid-circle-000.html |
diff --git a/LayoutTests/imported/csswg-test/css-shapes-1/shape-outside-invalid-circle-000.html b/LayoutTests/imported/csswg-test/css-shapes-1/shape-outside-invalid-circle-000.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d5a0c385dd12bc330a95f92e37e8dbe22b5fec01 |
--- /dev/null |
+++ b/LayoutTests/imported/csswg-test/css-shapes-1/shape-outside-invalid-circle-000.html |
@@ -0,0 +1,35 @@ |
+<!DOCTYPE html> |
+<head> |
+ <meta charset="utf-8"> |
+ <title>CSS Shapes Tests: Circle - invalid 2 args</title> |
+ <link rel="author" title="biqing" href="biqing.kwok@qq.com"> |
+ <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#supported-basic-shapes"> |
+ <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#funcdef-circle"> |
+ <script src="../../../resources/testharness.js"></script> |
+ <script src="../../../resources/testharnessreport.js"></script> |
+ <link rel="stylesheet" href="../../../resources/testharness.css"> |
+ <meta name="flags" content="dom"> |
+ <meta name="assert" content="shape-outside declaration is invalid if circle shape function only has two parameters"> |
+ <style type="text/css"> |
+ #float { |
+ shape-outside: circle(50px, 50px); |
+ float: left; |
+ width: 100px; |
+ height: 100px; |
+ } |
+ </style> |
+</head> |
+<body> |
+ <div id="log"></div> |
+ |
+ <div id="float"></div> |
+ |
+ <script> |
+ |
+ test(function() { |
+ assert_true(getComputedStyle(document.getElementById('float')).shapeOutside == 'none'); |
+ }, 'Circle - invalid 2 args'); |
+ |
+ </script> |
+</body> |
+</html> |