| OLD | NEW |
| 1 <script src="resources/text-based-repaint.js"></script> | 1 <script src="resources/text-based-repaint.js"></script> |
| 2 <script> | 2 <script> |
| 3 function repaintTest() | 3 function repaintTest() |
| 4 { | 4 { |
| 5 document.getElementById("target").style.webkitTextStrokeColor = "green"; | 5 document.getElementById("target").style.webkitTextStrokeColor = "green"; |
| 6 } | 6 } |
| 7 </script> | 7 </script> |
| 8 <script src="../../resources/ahem.js"></script> | 8 <script src="../../resources/ahem.js"></script> |
| 9 <body onload="runRepaintTest()" style="padding: 50px;"> | 9 <body onload="runRepaintAndPixelTest()" style="padding: 50px;"> |
| 10 <span id="target" style="font-family: Ahem; font-size: 50px; -webkit-text-st
roke: 50px red;">A B</span> | 10 <span id="target" style="font-family: Ahem; font-size: 50px; -webkit-text-st
roke: 50px red;">A B</span> |
| 11 </body> | 11 </body> |
| OLD | NEW |