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

Unified Diff: third_party/WebKit/LayoutTests/css3/motion-path/offset-path.html

Issue 2241993002: CSS Motion Path: New names for properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 3 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/css3/motion-path/offset-path.html
diff --git a/third_party/WebKit/LayoutTests/css3/motion-path/offset-path.html b/third_party/WebKit/LayoutTests/css3/motion-path/offset-path.html
new file mode 100644
index 0000000000000000000000000000000000000000..12f3f5827558f71eef6a72923e547b87bc7c2db9
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css3/motion-path/offset-path.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<style>
+#div2 {
+ offset-path: none;
+}
+#div3 {
+ offset-path: path('M 20 20 H 80 V 30 H 20 L 20 20');
+}
+#div4 {
+ offset-path: inherit;
+}
+</style>
+</head>
+<body>
+<div id="div1"></div>
+<div id="div2"></div>
+<div id="div3">
+ <div id="div4"></div>
+ <div id="div5"></div>
+</div>
+<span id="span1" style="offset-path: path('M 1 2 V 3')"></span>
+<script>
+"use strict";
+
+test(function() {
+ assert_equals(getComputedStyle(div1, null).offsetPath, 'none');
+}, 'offset-path default is none');
+
+test(function() {
+ assert_equals(getComputedStyle(div2, null).offsetPath, 'none');
+}, 'offset-path can be explicitly none');
+
+test(function() {
+ assert_equals(getComputedStyle(div3, null).offsetPath, "path('M 20 20 H 80 V 30 H 20 L 20 20')");
+}, 'offset-path can be an SVG Path data string');
+
+test(function() {
+ assert_equals(getComputedStyle(div4, null).offsetPath, "path('M 20 20 H 80 V 30 H 20 L 20 20')");
+}, 'offset-path can be explicitly inherited');
+
+test(function() {
+ assert_equals(getComputedStyle(div5, null).offsetPath, 'none');
+}, 'offset-path is not inherited by default');
+
+test(function() {
+ assert_equals(span1.style.offsetPath, "path('M 1 2 V 3')");
+}, 'offset-path style can be set inline');
+
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698