layout/reftests/bugs/471594-1.xhtml

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 <html xmlns="http://www.w3.org/1999/xhtml">
     2 <head>
     3 <bindings xmlns="http://www.mozilla.org/xbl">
     4   <binding id="x"><content><span>a
     5 b<children xmlns="http://www.mozilla.org/xbl"/></span></content></binding>
     6 </bindings>
     7 <style>
     8   div#d {
     9     white-space: pre;
    10     -moz-binding: url(#x);
    11   }
    12   span#s {
    13     display: inline-block;
    14   }
    15 </style>
    16 <script>
    17 function boom()
    18 {
    19   document.getElementById("s").style.display = "inline";
    20 }
    21 </script>
    22 </head>
    23 <body onload="boom();">
    24   <div id="d"><span id="s">s</span></div>
    25 </body>
    26 </html>

mercurial