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

Unified Diff: third_party/WebKit/LayoutTests/css3/motion-path/property-use-count-offset-rotation.html

Issue 2842933003: CSS Motion Path: delete implementation of offset-rotation property (Closed)
Patch Set: remove offsetRotation from webexposed 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/property-use-count-offset-rotation.html
diff --git a/third_party/WebKit/LayoutTests/css3/motion-path/property-use-count-offset-rotation.html b/third_party/WebKit/LayoutTests/css3/motion-path/property-use-count-offset-rotation.html
deleted file mode 100644
index 787ae01a273ee5108fac9bdf03418f34a0f0c51b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/css3/motion-path/property-use-count-offset-rotation.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<head>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-</head>
-
-<div id="target" class="p"></div>
-<script>
-test(function() {
- assert_false(internals.isCSSPropertyUseCounted(document, "offset-rotation"));
-
- var styleElement = document.createElement('style');
- styleElement.textContent = ".p { offset-rotation: 0deg; }";
- document.head.appendChild(styleElement);
- getComputedStyle(target);
-
- assert_true(internals.isCSSPropertyUseCounted(document, "offset-rotation"));
- assert_false(internals.isCSSPropertyUseCounted(document, "offset-rotate"));
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698