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 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <script> |
michael@0 | 5 | window.onload = function() { |
michael@0 | 6 | setInterval( |
michael@0 | 7 | function next_step() { |
michael@0 | 8 | var style = document.createElement('style'); |
michael@0 | 9 | style.innerHTML = "{ }"; |
michael@0 | 10 | document.getElementsByTagName("*")[ 7 ].appendChild(style); |
michael@0 | 11 | window.dump('.'); |
michael@0 | 12 | }, 10); |
michael@0 | 13 | } |
michael@0 | 14 | </script> |
michael@0 | 15 | </head> |
michael@0 | 16 | <body> |
michael@0 | 17 | <div id="console"></div> |
michael@0 | 18 | <div id="parentDiv"> |
michael@0 | 19 | <div id="left-to-right" dir="auto" class="testElement"> |
michael@0 | 20 | <input type="text" value="מקור השם עברית">Test test test |
michael@0 | 21 | </div> |
michael@0 | 22 | </div> |
michael@0 | 23 | <script id="des"> |
michael@0 | 24 | var el = document.getElementById("left-to-right"); |
michael@0 | 25 | document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color'); |
michael@0 | 26 | |
michael@0 | 27 | document.getElementById("parentDiv").style.display = "none"; |
michael@0 | 28 | </script> |
michael@0 | 29 | |
michael@0 | 30 | </body> |
michael@0 | 31 | </html> |