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

Unified Diff: LayoutTests/fast/repaint/table-row-bg-change.html

Issue 214513008: Add layout test for table repainting. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/repaint/table-row-bg-change-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/repaint/table-row-bg-change.html
diff --git a/LayoutTests/fast/repaint/table-row-bg-change.html b/LayoutTests/fast/repaint/table-row-bg-change.html
new file mode 100644
index 0000000000000000000000000000000000000000..83eba09fc93ecb0dbf8dc0ee20290c0ec14babda
--- /dev/null
+++ b/LayoutTests/fast/repaint/table-row-bg-change.html
@@ -0,0 +1,35 @@
+<html>
+<head>
+ <title>Test for crbug.com/357291</title>
+ <script src="resources/text-based-repaint.js" type="text/javascript"></script>
+ <script type="text/javascript">
+ function repaintTest()
+ {
+ var first = document.getElementById('first');
+ first.style.backgroundColor = 'red';
+ }
+ </script>
+ <style>
+ table {
+ height: 200px;
+ width: 200px;
+ }
+ </style>
+
+</head>
+<body onload="runRepaintTest()">
+ <table>
+ <tr id="first">
+ <td>A</td>
+ <td>A</td>
+ <td>A</td>
+ </tr>
+ <tr>
+ <td>A</td>
+ <td>A</td>
+ <td>A</td>
+ </tr>
+ </table>
+</body>
+</html>
+
« no previous file with comments | « no previous file | LayoutTests/fast/repaint/table-row-bg-change-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698