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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/table-shrink-row-repaint.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/table-shrink-row-repaint.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/table-shrink-row-repaint.html b/third_party/WebKit/LayoutTests/fast/repaint/table-shrink-row-repaint.html
deleted file mode 100644
index d7c702ea60415c67a4452e380c046f9c5fcda4e7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/table-shrink-row-repaint.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-td {
- height: 50px;
- border: 5px solid grey;
-}
-</style>
-<script src="resources/text-based-repaint.js" type="text/javascript"></script>
-<script>
-function repaintTest()
-{
- var td = document.getElementById("resizeMe");
- td.style.height = "0px";
-}
-
-window.addEventListener("load", runRepaintAndPixelTest, false);
-</script>
-</head>
-<body>
-<p>This test checks that changing the size of the middle row triggers an invalidation for the following rows.</p>
-<table border="0" cellpadding="0" cellspacing="0" width="100%">
-<tr>
- <td>1</td>
-</tr>
-<tr>
- <td id="resizeMe" style="height: 200px"></td>
-</tr>
-<tr>
- <td>2</td>
-</tr>
-<tr>
- <td>3</td>
-</tr>
-<tr>
- <td>4</td>
-</tr>
-<tr>
- <td>5</td>
-</tr>
-<tr>
- <td>6</td>
-</tr>
-<tr>
- <td>7</td>
-</tr>
-<tr>
- <td>8</td>
-</tr>
-<tr>
- <td>9</td>
-</tr>
-<tr>
- <td>10</td>
-</tr>
-<tr>
- <td>11</td>
-</tr>
-<tr>
- <td>12</td>
-</tr>
-<tr>
- <td>13</td>
-</tr>
-</table>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698