| OLD | NEW |
| 1 <script src="resources/text-based-repaint.js"></script> | 1 <script src="resources/text-based-repaint.js"></script> |
| 2 <body onload="runRepaintTest()"> | 2 <body onload="runRepaintTest()"> |
| 3 <span style="position: relative; top: 80px;"> | 3 <span style="position: relative; top: 80px;"> |
| 4 <div id="target" style="display: inline-block; width: 100px; height: 100px;
overflow: hidden; font-family: ahem; font-size: 100px; background: red; color: g
reen;">p</div> | 4 <div id="target" style="display: inline-block; width: 100px; height: 100px;
overflow: hidden; font-family: Ahem; font-size: 100px; background: red; color: g
reen;">p</div> |
| 5 </span> | 5 </span> |
| 6 <script> | 6 <script> |
| 7 function repaintTest() | 7 function repaintTest() |
| 8 { | 8 { |
| 9 document.getElementById("target").firstChild.data = "a"; | 9 document.getElementById("target").firstChild.data = "a"; |
| 10 } | 10 } |
| 11 </script> | 11 </script> |
| OLD | NEW |