Index: third_party/WebKit/LayoutTests/css3/motion-path/motion-path.html |
diff --git a/third_party/WebKit/LayoutTests/css3/motion-path/motion-path.html b/third_party/WebKit/LayoutTests/css3/motion-path/motion-path.html |
deleted file mode 100644 |
index db7160cd8e01b3dc60a5e976cdc2b02901be35a6..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/css3/motion-path/motion-path.html |
+++ /dev/null |
@@ -1,55 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../resources/testharness.js"></script> |
-<script src="../../resources/testharnessreport.js"></script> |
-<style> |
-#div2 { |
- motion-path: none; |
-} |
-#div3 { |
- motion-path: path('M 20 20 H 80 V 30 H 20 L 20 20'); |
-} |
-#div4 { |
- motion-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="motion-path: path('M 1 2 V 3')"></span> |
-<script> |
-"use strict"; |
- |
-test(function() { |
- assert_equals(getComputedStyle(div1, null).motionPath, 'none'); |
-}, 'motion-path default is none'); |
- |
-test(function() { |
- assert_equals(getComputedStyle(div2, null).motionPath, 'none'); |
-}, 'motion-path can be explicitly none'); |
- |
-test(function() { |
- assert_equals(getComputedStyle(div3, null).motionPath, "path('M 20 20 H 80 V 30 H 20 L 20 20')"); |
-}, 'motion-path can be an SVG Path data string'); |
- |
-test(function() { |
- assert_equals(getComputedStyle(div4, null).motionPath, "path('M 20 20 H 80 V 30 H 20 L 20 20')"); |
-}, 'motion-path can be explicitly inherited'); |
- |
-test(function() { |
- assert_equals(getComputedStyle(div5, null).motionPath, 'none'); |
-}, 'motion-path is not inherited by default'); |
- |
-test(function() { |
- assert_equals(span1.style.motionPath, "path('M 1 2 V 3')"); |
-}, 'motion-path style can be set inline'); |
- |
-</script> |
-</body> |
-</html> |