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

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: size contain? 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
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..c38ee2fa23442f8eaedfe869f6291b94233a6b03
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css-parser/offset-path-parsing.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<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)");
fs 2017/05/15 09:18:14 Maybe add a test with calc(...) for the <angle>.
Eric Willigers 2017/05/15 10:52:23 Done.
+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') | third_party/WebKit/Source/core/css/BasicShapeFunctions.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698