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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/scroll-relative-table-inside-table-cell.html

Issue 2321183002: Move repaint tests (except for svg/) 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/fast/repaint/scroll-relative-table-inside-table-cell.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/scroll-relative-table-inside-table-cell.html b/third_party/WebKit/LayoutTests/fast/repaint/scroll-relative-table-inside-table-cell.html
deleted file mode 100644
index 3266fc898a5ea15d48cdc1b5f5faee29d4c43206..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/scroll-relative-table-inside-table-cell.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
- <link rel="stylesheet" href="resources/default.css" />
- <style>
- table {
- border-spacing: 0px;
- background: red;
- }
-
- td {
- padding: 0px;
- border: 2px solid green;
- }
- </style>
- <script src="resources/text-based-repaint.js"></script>
- <script>
- if (window.testRunner)
- testRunner.dumpAsTextWithPixelResults();
-
- function repaintTest()
- {
- var cell = document.getElementById("cellToScroll");
- cell.scrollLeft = 1200;
- }
- window.addEventListener("load", runRepaintAndPixelTest, false);
- </script>
-</head>
-<body>
-<!-- Bug 71550 - REGRESSION (r93614): Content remains despite parent element being scrolled off page using javascript. -->
-<!-- For the test to pass you should not see any RED, only green -->
-<div class="red" style="height: 200px; width: 300px;"></div>
-<table class="relative" style="table-layout: fixed; width: 0; top: 1000px; left: 800px;">
- <tr class="red">
- <td class="green" style="height: 100px; width: 300px;"></td>
- <td class="green" style="height: 100px; width: 450px;"></td>
- </tr>
- <tr>
- <td style="overflow: hidden"><div class="green" style="height: 465px; width: 300px"></div></td>
- <td id="cellToScroll" class="relative" style="overflow: scroll;">
- <div class="relative red" style="height: 450px; width: 450px;"></div>
- <div class="absolute green" style="height: 450px; width: 450px; left: 500px; top: 0px"></div>
- </td>
- </tr>
-</table>
-<script>
- // Make sure we scroll to the bottom of the page.
- window.scrollTo(950, 1250);
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698