Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <html xmlns="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 | <binding id="foo"> |
michael@0 | 6 | <content> |
michael@0 | 7 | <children xmlns="http://www.mozilla.org/xbl" /> |
michael@0 | 8 | </content> |
michael@0 | 9 | </binding> |
michael@0 | 10 | </bindings> |
michael@0 | 11 | |
michael@0 | 12 | <script> |
michael@0 | 13 | function boom() |
michael@0 | 14 | { |
michael@0 | 15 | document.getElementById("div").style.MozBinding = "url('#foo')"; |
michael@0 | 16 | |
michael@0 | 17 | var opt1 = document.getElementById("opt1"); |
michael@0 | 18 | opt1.removeChild(opt1.firstChild); |
michael@0 | 19 | |
michael@0 | 20 | document.getElementById("textarea").value += " "; |
michael@0 | 21 | |
michael@0 | 22 | document.documentElement.removeAttribute("class") |
michael@0 | 23 | } |
michael@0 | 24 | </script> |
michael@0 | 25 | |
michael@0 | 26 | </head> |
michael@0 | 27 | |
michael@0 | 28 | <body onload="setTimeout(boom, 30);"> |
michael@0 | 29 | |
michael@0 | 30 | <div id="div"> |
michael@0 | 31 | <textarea rows="3" cols="5" id="textarea"></textarea> |
michael@0 | 32 | </div> |
michael@0 | 33 | |
michael@0 | 34 | <select> |
michael@0 | 35 | <option id="opt1">opt1</option> |
michael@0 | 36 | </select> |
michael@0 | 37 | |
michael@0 | 38 | </body> |
michael@0 | 39 | </html> |
michael@0 | 40 |