| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title></title> | 3 <title></title> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <script> | 6 <script> |
| 7 if (window.testRunner) { | 7 if (window.internals) { |
| 8 testRunner.testRepaint(); | 8 window.internals.settings.setForceCompositingMode(true); |
| 9 testRunner.repaintSweepHorizontally(); | |
| 10 } | 9 } |
| 11 </script> | 10 </script> |
| 12 <p> | 11 <p> |
| 13 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12910">http:
//bugs.webkit.org/show_bug.cgi?id=12910</a> | 12 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12910">http:
//bugs.webkit.org/show_bug.cgi?id=12910</a> |
| 14 REGRESSION (r18756-r18765): list-bullet doesn't redraw properly when cha
nging the list's content using JavaScript</i>. | 13 REGRESSION (r18756-r18765): list-bullet doesn't redraw properly when cha
nging the list's content using JavaScript</i>. |
| 15 </p> | 14 </p> |
| 16 <ul> | 15 <ul> |
| 17 <li> | 16 <li> |
| 18 foo | 17 foo |
| 19 <div style="margin: 10px;"></div> | 18 <div style="margin: 10px;"></div> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 </li> | 31 </li> |
| 33 </ul> | 32 </ul> |
| 34 <ul style="direction: rtl; list-style-position: inside;"> | 33 <ul style="direction: rtl; list-style-position: inside;"> |
| 35 <li> | 34 <li> |
| 36 bar | 35 bar |
| 37 <div style="margin: 10px;"></div> | 36 <div style="margin: 10px;"></div> |
| 38 </li> | 37 </li> |
| 39 </ul> | 38 </ul> |
| 40 </body> | 39 </body> |
| 41 </html> | 40 </html> |
| OLD | NEW |