layout/reftests/bugs/488390-1.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html>
     3   <head>
     4     <script type="text/javascript">
     5       function boom()
     6       {
     7         var s = document.getElementById("s");
     8         s.parentNode.removeChild(s);
     9       }
    10     </script>
    11   </head>
    12   <body onload="boom();">
    13     <!-- Need the bidi control chars to trigger non-fluid continuations, and
    14          need the span right around the div so that the prevSibling of the node
    15          whose frame we try to get doesn't have a frame map entry (so that we
    16          don't have a useful hint). -->
    17     <span>&#x202E;a&#x202C;b
    18       <span><div></div></span>
    19       <span id="s">This text should be gone</span>
    20     </span>
    21   </body>
    22 </html>

mercurial