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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/table-col-background-offset.html

Issue 1676933004: Table cell background painting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests: add 2nd col, rebaseline old. fix setLocation() Created 4 years, 9 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-col-background-offset.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/table-col-background.html b/third_party/WebKit/LayoutTests/fast/repaint/table-col-background-offset.html
similarity index 66%
copy from third_party/WebKit/LayoutTests/fast/repaint/table-col-background.html
copy to third_party/WebKit/LayoutTests/fast/repaint/table-col-background-offset.html
index b3fbc11f958dd9c8c363b3a0c766d11adb00cf00..30868918c9ab2dfb01af321dfc6092d76278eeb8 100644
--- a/third_party/WebKit/LayoutTests/fast/repaint/table-col-background.html
+++ b/third_party/WebKit/LayoutTests/fast/repaint/table-col-background-offset.html
@@ -1,6 +1,6 @@
<html>
<head>
- <title>Test for http://bugs.webkit.org/show_bug.cgi?id=5821</title>
+ <title>Tests col background with offset</title>
<script src="resources/text-based-repaint.js" type="text/javascript"></script>
<script type="text/javascript">
function repaintTest()
@@ -10,11 +10,16 @@
</script>
</head>
<body onload="runRepaintTest()">
+ <style>
+ td { width: 100px; height: 100px; }
+ </style>
+ <div style="height:100px"></div>
<table>
+ <col/>
<col id="col" style="background-color: red;">
<tr>
- <td style="width: 100px; height: 100px;">
- </td>
+ <td></td>
+ <td></td>
</tr>
</table>
</body>

Powered by Google App Engine
This is Rietveld 408576698