| 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>
|
|
|