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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/composited-document-element.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/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>

Powered by Google App Engine
This is Rietveld 408576698