Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
4 <bindings xmlns="http://www.mozilla.org/xbl">
5 <binding id="foo">
6 <content>
7 <div xmlns="http://www.w3.org/1999/xhtml" style="position: fixed;">
8 <children xmlns="http://www.mozilla.org/xbl"/>
9 </div>
10 </content>
11 </binding>
12 </bindings>
14 <script type="text/javascript">
16 function boom()
17 {
18 var tr = document.getElementById("tr");
19 var td = document.getElementById("td");
21 tr.removeChild(td);
22 }
24 </script>
25 </head>
27 <body onload="boom();">
29 <table id="table" style="-moz-binding: url(#foo);">
30 <tr id="tr">
31 <td id="td">Text</td>
32 </tr>
33 </table>
35 </body>
37 </html>