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

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

Issue 2827003002: CSS Motion Path: delete implementation of motion-path property (Closed)
Patch Set: ManualTests Created 3 years, 8 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/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>

Powered by Google App Engine
This is Rietveld 408576698