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

Unified Diff: LayoutTests/fast/table/simple_paint.html

Issue 3590023: Merge 69161 - 2010-10-05 Fady Samuel <fsamuel@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 2 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 | « LayoutTests/ChangeLog ('k') | LayoutTests/fast/table/simple_paint-expected.checksum » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/simple_paint.html
===================================================================
--- LayoutTests/fast/table/simple_paint.html (revision 69232)
+++ LayoutTests/fast/table/simple_paint.html (working copy)
@@ -1,18 +1,27 @@
<html>
<head>
<title>Simple Table Painting</title>
- <style>
- table.testtable { border: 1px solid black; border-collapse:collapse; background-color: green; }
- table.testtable td { border: 1px solid black; font-size: 20px; background-color: green; width:60px; height:60px; direction:rtl;}
- body { margin: 0px 0px 0px 0px; }
- </style>
- <script>
- if (window.layoutTestController) {
- window.layoutTestController.waitUntilDone();
- }
- </script>
+ <style>
+ table.testtable { border: 1px solid black; border-collapse:collapse; background-color: green; }
+ table.testtable td { border: 1px solid black; font-size: 20px; background-color: green; width:60px; height:60px; direction:rtl;}
+ body { margin: 0px; }
+ </style>
+ <script>
+ if (window.layoutTestController) {
+ window.layoutTestController.waitUntilDone();
+ }
+ function repaintTest() {
+ var testCell = document.getElementById("testcell");
+ var offset = document.body.offsetTop;
+ testCell.style.backgroundColor = "green";
+ if (window.layoutTestController) {
+ window.layoutTestController.notifyDone();
+ }
+ }
+ </script>
+ <script type="text/javascript" src="../repaint/resources/repaint.js"></script>
</head>
- <body>
+ <body onload="runRepaintTest()">
<table class="testtable">
<tr>
<td></td>
@@ -51,12 +60,7 @@
</tr>
</table>
<script>
- var testCell = document.getElementById("testcell");
- var offset = document.body.offsetTop;
- testCell.style.backgroundColor = "green";
- if (window.layoutTestController) {
- window.layoutTestController.notifyDone();
- }
+
</script>
</body>
</html>
« no previous file with comments | « LayoutTests/ChangeLog ('k') | LayoutTests/fast/table/simple_paint-expected.checksum » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698