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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/become-overlay-composited-layer.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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/compositing/repaint/become-overlay-composited-layer.html
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/become-overlay-composited-layer.html b/third_party/WebKit/LayoutTests/compositing/repaint/become-overlay-composited-layer.html
deleted file mode 100644
index b54484065e2a94701955988c0ee49808aaf27f3e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/compositing/repaint/become-overlay-composited-layer.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<html>
-<head>
- <style type="text/css" media="screen">
- #container
- {
- position: relative;
- width: 500px;
- height: 100px;
- opacity: 0.85;
- border: 1px solid black;
- }
-
- #box
- {
- position: absolute;
- height: 100px;
- width: 250px;
- left: 250px;
- background-color: blue;
- -webkit-transition: left 0.2s, top 0.2s;
- }
-
- #container.right #box
- {
- left: 0px;
- top: 100px;
- }
-
- #fader
- {
- position: absolute;
- top: 0;
- left: 0;
- background-color: black;
- width: 50px;
- height: 50px;
- opacity: 0.5;
- -webkit-transition: opacity 0.2s;
- }
-
- #container.right #fader {
- opacity: 1;
- }
- </style>
- <script type="text/javascript" charset="utf-8">
- if (window.testRunner)
- testRunner.waitUntilDone();
-
- function runTest()
- {
- var container = document.getElementById("container");
- var fader = document.getElementById("fader");
- fader.addEventListener('webkitTransitionEnd', function() {
- fader.addEventListener('webkitTransitionEnd', function() {
- if (window.testRunner)
- testRunner.notifyDone();
- });
- container.className = "";
- });
- container.className = "right";
- }
-
- window.addEventListener('load', runTest, false);
- </script>
-</head>
-<body>
- <p><a href="<rdar://problem/6983207>">rdar://problem/6983207</a>Should not leave blue box behind after moving to the top right.</p>
- <div id="container">
- <div id="box"></div>
- <div id="fader"></div>
- </div>
-
-</body></html>

Powered by Google App Engine
This is Rietveld 408576698