Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <html xmlns="http://www.w3.org/1999/xhtml"
2 xmlns:html="http://www.w3.org/1999/xhtml"
3 class="reftest-wait">
4 <head>
5 <bindings xmlns="http://www.mozilla.org/xbl">
6 <binding id="td">
7 <content>
8 <html:td><children/></html:td>
9 </content>
10 </binding>
11 </bindings>
12 <script>
13 function f1() {
14 document.getElementById("outer")
15 .appendChild(document.createTextNode("PASS"));
16 document.documentElement.className = "";
17 }
18 </script>
19 </head>
20 <body onload="f1();">
21 <div id="outer" style="-moz-binding: url(#td)"/>
22 </body>
24 </html>