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

Unified Diff: LayoutTests/compositing/visible-rect/animated-from-none.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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: LayoutTests/compositing/visible-rect/animated-from-none.html
diff --git a/LayoutTests/compositing/visible-rect/animated-from-none.html b/LayoutTests/compositing/visible-rect/animated-from-none.html
deleted file mode 100644
index fccce7832f05070924f3891d3532b6a6235e9781..0000000000000000000000000000000000000000
--- a/LayoutTests/compositing/visible-rect/animated-from-none.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style>
- .container {
- position: relative;
- height: 200px;
- width: 500px;
- border: 1px solid black;
- overflow: hidden;
- z-index: 0;
- }
-
- .box {
- position: absolute;
- left: -100px;
- width: 200px;
- height: 200px;
- background-color: blue;
- -webkit-animation: move 20000000s linear;
- }
-
- @-webkit-keyframes move {
- from { -webkit-transform: none; }
- to { -webkit-transform: translateX(400px); }
- }
- </style>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- function doTest()
- {
- document.getElementById('animated').addEventListener('webkitAnimationStart', function() {
- if (window.internals)
- document.getElementById('layers').innerText = internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_VISIBLE_RECTS)
-
- if (window.testRunner)
- testRunner.notifyDone();
- }, false);
- }
- window.addEventListener('load', doTest, false);
- </script>
-</head>
-<body>
-
- <div class="container">
- <div id="animated" class="box"></div>
- </div>
-
-<pre id="layers">Layer tree goes here when testing</pre>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698