Index: third_party/WebKit/LayoutTests/compositing/repaint/composited-document-element.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/composited-document-element.html b/third_party/WebKit/LayoutTests/compositing/repaint/composited-document-element.html |
deleted file mode 100644 |
index 390ff98cc8bf931ed7f5f42f222a2f9f95b4be53..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/compositing/repaint/composited-document-element.html |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<html> |
-<head> |
- <style> |
- html { |
- -webkit-perspective: 1200px; |
- background-color: red; |
- } |
- html.changed { |
- background-color: transparent; |
- } |
- body { |
- transform: translateZ(0); |
- } |
- .box { |
- width: 100px; |
- height: 100px; |
- background-color: blue; |
- } |
- </style> |
- <script> |
- if (window.testRunner) |
- testRunner.waitUntilDone(); |
- |
- function doTest() |
- { |
- window.setTimeout(function() { |
- document.documentElement.className = 'changed'; |
- if (window.testRunner) |
- testRunner.notifyDone(); |
- }, 0); |
- } |
- window.addEventListener('load', doTest, false); |
- </script> |
-</head> |
-<body> |
- <p>In a pixel test, you should see a plain white background.</p> |
-</body> |
-</html> |