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