Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(887)

Unified Diff: third_party/WebKit/LayoutTests/css-parser/offset-path-parsing.html

Issue 2881673003: CSS Motion Path: Support parsing of ray(<angle>) paths (Closed)
Patch Set: DCHECK_EQ Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698