OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> | 3 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> |
4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
5 function repaintTest() | 5 function repaintTest() |
6 { | 6 { |
7 dv.firstChild.data='Lorem ipsu'; | 7 dv.firstChild.data='Lorem ipsu'; |
8 } | 8 } |
9 </script> | 9 </script> |
10 </head> | 10 </head> |
11 <body onload="runRepaintTest();"> | 11 <body onload="runRepaintAndPixelTest();"> |
12 <p> | 12 <p> |
13 This is a repaint test for <i><a href="http://bugs.webkit.org/show_bug.c
gi?id=11277">http://bugs.webkit.org/show_bug.cgi?id=11277</a> | 13 This is a repaint test for <i><a href="http://bugs.webkit.org/show_bug.c
gi?id=11277">http://bugs.webkit.org/show_bug.cgi?id=11277</a> |
14 REGRESSION: Incomplete repaint of overflow areas when deleting</i>. | 14 REGRESSION: Incomplete repaint of overflow areas when deleting</i>. |
15 </p> | 15 </p> |
16 <hr> | 16 <hr> |
17 <div contenteditable id="dv" style="overflow: hidden; outline: none; width:
80px; height: 36px"> | 17 <div contenteditable id="dv" style="overflow: hidden; outline: none; width:
80px; height: 36px"> |
18 Lorem ipsum | 18 Lorem ipsum |
19 </div> | 19 </div> |
20 </body> | 20 </body> |
21 </html> | 21 </html> |
OLD | NEW |