375716-1.html (572B)
1 <html class="reftest-wait"><head> 2 <title>Bug 375716 - Incremental reflow bug with direction: rtl and bidi-override</title> 3 <style> 4 5 div { 6 border: 1px solid black; 7 width:200px; 8 } 9 </style> 10 <script> 11 function boom() { 12 var div = document.getElementById('div'); 13 div.removeAttribute('style') 14 document.documentElement.removeAttribute("class"); 15 } 16 </script> 17 </head><body onload="boom()"> 18 <div id="div" style="font-size:120%"> 19 <i style="direction: rtl;"> 20 text text text text 21 <b style="unicode-bidi: bidi-override;">text text text text text</b> 22 text 23 </i> 24 </div> 25 </body></html>