387876-3a.html (390B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 function tweak() { 5 document.getElementById('p').textContent = 'below'; 6 document.documentElement.className = ''; 7 } 8 </script> 9 </head> 10 <body onload="tweak()"> 11 <div style="column-width: 60px; height: 60px; background: yellow;"> 12 title 13 <p id="p" style="background: lightgreen"> 14 line 15 break 16 </p> 17 </div> 18 </body> 19 </html>