layout/reftests/bugs/375716-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <html class="reftest-wait"><head>
     2 <title>Bug 375716 - Incremental reflow bug with direction: rtl and bidi-override</title>
     3 <style>
     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>

mercurial