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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/same-size-invalidation.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/same-size-invalidation.html
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/same-size-invalidation.html b/third_party/WebKit/LayoutTests/compositing/repaint/same-size-invalidation.html
deleted file mode 100644
index f07eef3c0af53e9baa022bcfcc955b3f04e20fa6..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/compositing/repaint/same-size-invalidation.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<html>
-<head>
- <style type="text/css" media="screen">
- .container {
- height: 200px;
- width: 200px;
- background-color: green;
- transform: translateZ(0);
- }
-
- #tester {
- position: absolute;
- top: 50px;
- left: 50px;
- height: 100px;
- width: 100px;
- background-color: blue;
- }
- </style>
- <script type="text/javascript" charset="utf-8">
- function doTest() {
- setTimeout(changeBackground1, 0);
- }
- function changeBackground1() {
- document.getElementById('tester').style.backgroundColor = 'red';
- setTimeout(changeBackground2, 0);
- }
- function changeBackground2() {
- document.getElementById('tester').style.backgroundColor = 'green';
- if (window.testRunner)
- testRunner.notifyDone();
- }
- if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.dumpAsTextWithPixelResults();
- }
- window.addEventListener('load', doTest, false);
- </script>
-</head>
-<body>
- <!-- this test should only display a green square -->
- <div class="container">
- <div id="tester"></div>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698