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" xmlns:html="http://www.w3.org/1999/xhtml" class="reftest-wait"> |
michael@0 | 2 | |
michael@0 | 3 | <bindings xmlns="http://www.mozilla.org/xbl" xmlns:xlink="http://www.w3.org/1999/xlink"> |
michael@0 | 4 | <binding id="xbl"> |
michael@0 | 5 | <content> |
michael@0 | 6 | <div xmlns="http://www.w3.org/1999/xhtml" style="border: 100px solid red;"> |
michael@0 | 7 | <div style="position: fixed;"/> |
michael@0 | 8 | </div> |
michael@0 | 9 | </content> |
michael@0 | 10 | </binding> |
michael@0 | 11 | </bindings> |
michael@0 | 12 | |
michael@0 | 13 | <div style="position: absolute; -moz-column-count: 2;"> |
michael@0 | 14 | <table style="border: 100px solid green;" id="c"> |
michael@0 | 15 | <tr id="b" style="-moz-binding:url(#xbl)"> |
michael@0 | 16 | <td style="position: absolute;"> |
michael@0 | 17 | m |
michael@0 | 18 | <span id="a"> |
michael@0 | 19 | <div style="border: 100px solid black;"> |
michael@0 | 20 | <div style="position: fixed;"/> |
michael@0 | 21 | </div> |
michael@0 | 22 | </span> |
michael@0 | 23 | |
michael@0 | 24 | </td> |
michael@0 | 25 | </tr> |
michael@0 | 26 | </table> |
michael@0 | 27 | </div> |
michael@0 | 28 | |
michael@0 | 29 | <script> |
michael@0 | 30 | var doc = document; |
michael@0 | 31 | function doe() { |
michael@0 | 32 | var newNode = document.createElementNS("http://www.w3.org/1999/xhtml", 'div'); |
michael@0 | 33 | newNode.innerHTML = '<div xmlns="http://www.w3.org/1999/xhtml" style="border: 100px solid black;"><div style="position: fixed;"/></div>'; |
michael@0 | 34 | document.getElementById('c').insertBefore(newNode, doc.getElementById('b')); |
michael@0 | 35 | document.getElementById('b').removeAttribute('style'); |
michael@0 | 36 | document.documentElement.removeAttribute("class"); |
michael@0 | 37 | } |
michael@0 | 38 | setTimeout(doe, 100); |
michael@0 | 39 | </script> |
michael@0 | 40 | </html> |