Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <html xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml" class="reftest-wait"> |
michael@0 | 2 | <head> |
michael@0 | 3 | |
michael@0 | 4 | <bindings xmlns="http://www.mozilla.org/xbl"> |
michael@0 | 5 | |
michael@0 | 6 | <binding id="td"> |
michael@0 | 7 | <content> |
michael@0 | 8 | <html:td><children/></html:td> |
michael@0 | 9 | </content> |
michael@0 | 10 | </binding> |
michael@0 | 11 | |
michael@0 | 12 | <binding id="foo"> |
michael@0 | 13 | <content> |
michael@0 | 14 | <html:span/> |
michael@0 | 15 | </content> |
michael@0 | 16 | </binding> |
michael@0 | 17 | |
michael@0 | 18 | </bindings> |
michael@0 | 19 | |
michael@0 | 20 | |
michael@0 | 21 | <script> |
michael@0 | 22 | function f1() |
michael@0 | 23 | { |
michael@0 | 24 | document.getElementById("inner").style.MozBinding = "url(#foo)"; |
michael@0 | 25 | document.documentElement.removeAttribute("class"); |
michael@0 | 26 | } |
michael@0 | 27 | </script> |
michael@0 | 28 | |
michael@0 | 29 | </head> |
michael@0 | 30 | |
michael@0 | 31 | |
michael@0 | 32 | <body onload="setTimeout(f1, 30);"> |
michael@0 | 33 | |
michael@0 | 34 | |
michael@0 | 35 | <div id="outer" style="-moz-binding: url(#td)"><div id="inner">M</div></div> |
michael@0 | 36 | |
michael@0 | 37 | |
michael@0 | 38 | </body> |
michael@0 | 39 | |
michael@0 | 40 | </html> |