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> |