Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/css-parser/offset-path-parsing.html |
| diff --git a/third_party/WebKit/LayoutTests/css-parser/offset-path-parsing.html b/third_party/WebKit/LayoutTests/css-parser/offset-path-parsing.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..651e55fb9f127edca502a2f15e0bac10680d6e18 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/css-parser/offset-path-parsing.html |
| @@ -0,0 +1,22 @@ |
| +<!DOCTYPE html> |
|
pdr.
2017/05/15 22:37:26
Should this be a web platform test that we can sha
Eric Willigers
2017/05/15 23:42:53
Yes. I will next move all the motion path parsing
|
| +<script src="../resources/testharness.js"></script> |
| +<script src="../resources/testharnessreport.js"></script> |
| +<script src="resources/property-parsing-test.js"></script> |
| +<script> |
| +// Verifies that offset-path property and its value are properly parsed |
| + |
| +assert_valid_value("offset-path", "path('M 0 0 L 100 100 M 100 200 L 200 200 Z L 300 300 Z')"); |
| +assert_valid_value("offset-path", "none"); |
| +assert_valid_value("offset-path", "path('')", "none"); |
| +assert_invalid_value("offset-path", "path('M 20 30 A 60 70 80')"); |
| + |
| +assert_valid_value("offset-path", "ray(45deg closest-side)"); |
| +assert_valid_value("offset-path", "ray(sides -1turn)", "ray(-1turn sides)"); |
| +assert_valid_value("offset-path", "ray(400grad farthest-corner contain)"); |
| +assert_valid_value("offset-path", "ray(calc(180deg - 45deg) farthest-side)", "ray(calc(135deg) farthest-side)"); |
| +assert_invalid_value("offset-path", "ray(0deg)"); |
| +assert_invalid_value("offset-path", "ray(closest-side)"); |
| +assert_invalid_value("offset-path", "ray(closest-side 0deg closest-side)"); |
| +assert_invalid_value("offset-path", "ray(0deg closest-side 0deg)"); |
| +assert_invalid_value("offset-path", "ray(contain 0deg closest-side contain)"); |
| +</script> |