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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/block-shift-repaint.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/paint/invalidation/spv2/block-shift-repaint.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/block-shift-repaint.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/block-shift-repaint.html
deleted file mode 100644
index 2db9582d7c7bff7149ac3c569c0be446b4fc060c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/block-shift-repaint.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<!-- Based on fast/repaint/block-shift-repaint.html -->
-<html>
-<head>
- <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12079</title>
- <style type="text/css">
- div.playground { position: relative; width: 90px; height: 90px; }
- .red { background-color: yellow; }
- .blue { background-color: blue; }
- .green { background-color: green; }
- .zero { height: 0; width: 60px; }
- .half { height: 30px; width: 60px; }
- .full { height: 60px; width: 60px; }
- </style>
- <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
- <script type="text/javascript">
- function paintInvalidationTest()
- {
- var div1 = document.getElementById("div1");
- div1.style.height = "0";
-
- var div2 = document.getElementById("div2");
- div2.style.height = "30px";
-
- var top = document.getElementById("top");
- top.style.height = "0";
-
- var top = document.getElementById("innerDiv");
- innerDiv.style.height = "15px";
- }
- </script>
-</head>
-<body onload="runPaintInvalidationTest()">
- <div class="playground">
- <div id="div1" class="blue half"></div>
- <div class="red half"></div>
- <div class="green half"></div>
- </div>
-
- <div class="playground">
- <div><div id="top" class="blue half"></div></div>
- <div class="red half"></div>
- <div class="green half"></div>
- </div>
-
- <div class="playground">
- <div id="div2" class="zero"></div>
- <div class="green half"></div>
- <div class="red half"></div>
- </div>
-
- <div class="playground" style="margin-top: 30px;">
- <div style="width: 10px; margin: auto;">
- <div id="innerDiv"></div>
- </div>
- <div class="half"></div>
- <div class="half" style="border-top: solid yellow 8px;"></div>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698