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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/layer-repaint.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/layer-repaint.html
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/layer-repaint.html b/third_party/WebKit/LayoutTests/compositing/repaint/layer-repaint.html
deleted file mode 100644
index 382a20e24ff2b0c85fd75b13bb30211afd27b5a9..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/compositing/repaint/layer-repaint.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style type="text/css" media="screen">
- .container {
- border: 1px solid black;
- height: 300px;
- width: 200px;
- transform: translateZ(0);
- }
-
- #tester {
- margin: 50px;
- height: 100px;
- width: 100px;
- background-color: red;
- }
- </style>
- <script type="text/javascript" charset="utf-8">
- function doTest() {
- setTimeout("changeBackground();", 10);
- }
- function changeBackground() {
- document.getElementById('tester').style.backgroundColor = 'green';
- if (window.testRunner)
- testRunner.notifyDone();
- }
- if (window.testRunner)
- testRunner.waitUntilDone();
- window.addEventListener('load', doTest, false);
- </script>
-</head>
-<body>
- <p>Test for repaint in a composited layer. You should see no red below.</p>
- <div class="container">
- <div id="tester"></div>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698