OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title></title> | 3 <title></title> |
4 <script src="resources/text-based-repaint.js"></script> | 4 <script src="resources/text-based-repaint.js"></script> |
5 <script> | 5 <script> |
6 function repaintTest() | 6 function repaintTest() |
7 { | 7 { |
8 document.getElementById("target").style.display = ""; | 8 document.getElementById("target").style.display = ""; |
9 } | 9 } |
10 </script> | 10 </script> |
11 </head> | 11 </head> |
12 <body onload="runRepaintAndPixelTest()"> | 12 <body onload="runRepaintAndPixelTest()"> |
13 <p> | 13 <p> |
14 Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=1583
8">http://bugs.webkit.org/show_bug.cgi?id=15838</a> Incomplete repaint toggling
"How you know this person" on Facebook</i>. | 14 Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=1583
8">http://bugs.webkit.org/show_bug.cgi?id=15838</a> Incomplete repaint toggling
"How you know this person" on Facebook</i>. |
15 </p> | 15 </p> |
16 <div> | 16 <div> |
17 Word,<br> | 17 Word,<br> |
18 words,<br> | 18 words,<br> |
19 more words.<br> | 19 more words.<br> |
20 I could<br> | 20 I could<br> |
21 write a book<br> | 21 write a book<br> |
22 <div id="target" style="background-color: yellow; display: none; height:
100px; width: 10px;"></div> | 22 <div id="target" style="background-color: yellow; display: none; height:
100px; width: 10px;"></div> |
23 about all the stuff<br> | 23 about all the stuff<br> |
24 that comes<br> | 24 that comes<br> |
25 after<br> | 25 after<br> |
26 the break. | 26 the break. |
27 </div> | 27 </div> |
28 </body> | 28 </body> |
29 </html> | 29 </html> |
OLD | NEW |