Index: third_party/WebKit/LayoutTests/external/wpt/css/motion-1/offset-rotate-parsing-valid.html |
diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/motion-1/offset-rotate-parsing-valid.html b/third_party/WebKit/LayoutTests/external/wpt/css/motion-1/offset-rotate-parsing-valid.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5dfe04d708a67dd0bf98bd5651e9d98678d2bc32 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/external/wpt/css/motion-1/offset-rotate-parsing-valid.html |
@@ -0,0 +1,21 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<meta charset="utf-8"> |
+<title>Motion Path Module Level 1: parsing offset-rotate with valid values</title> |
+<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@google.com"> |
+<link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-rotate-property"> |
+<script src="/resources/testharness.js"></script> |
+<script src="/resources/testharnessreport.js"></script> |
+<script src="resources/testcommon.js"></script> |
+</head> |
+<body> |
+<script> |
+assert_valid_value("offset-rotate", "auto"); |
+assert_valid_value("offset-rotate", "reverse"); |
+assert_valid_value("offset-rotate", "-400deg"); |
+assert_valid_value("offset-rotate", "auto 5turn"); |
+assert_valid_value("offset-rotate", "reverse 0rad"); |
+</script> |
+</body> |
+</html> |