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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/inline-repaint-container.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/inline-repaint-container.html
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/inline-repaint-container.html b/third_party/WebKit/LayoutTests/compositing/repaint/inline-repaint-container.html
deleted file mode 100644
index a011235380e482ddf57617f6fa9ef666c2c76795..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/compositing/repaint/inline-repaint-container.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style type="text/css" media="screen">
- span {
- position: relative;
- padding: 10px;
- }
-
- .composited {
- position: absolute;
- width: 200px;
- height: 100px;
- border: 1px solid black;
- transform: translateZ(0);
- }
- </style>
- <script type="text/javascript" charset="utf-8">
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function doTest()
- {
- window.setTimeout(function() {
- var testNode = document.getElementById('test');
- testNode.removeChild(testNode.firstChild);
- }, 0);
- }
-
- window.addEventListener('load', doTest, false);
- </script>
-</head>
-<body>
-
- <p>This should not assert in debug builds.</p>
- <div class="composited"></div>
- <span id="test">test</span>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698