mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
window.onload = function() {
|
||
|
setInterval(
|
||
|
function next_step() {
|
||
|
var style = document.createElement('style');
|
||
|
style.innerHTML = "{ }";
|
||
|
document.getElementsByTagName("*")[ 7 ].appendChild(style);
|
||
|
window.dump('.');
|
||
|
}, 10);
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="console"></div>
|
||
|
<div id="parentDiv">
|
||
|
<div id="left-to-right" dir="auto" class="testElement">
|
||
|
<input type="text" value="מקור השם עברית">Test test test
|
||
|
</div>
|
||
|
</div>
|
||
|
<script id="des">
|
||
|
var el = document.getElementById("left-to-right");
|
||
|
document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color');
|
||
|
|
||
|
document.getElementById("parentDiv").style.display = "none";
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|