mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
373 B
HTML
21 lines
373 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body style="direction: rtl;">
|
|
m
|
|
<span id="a" style="border: 1px solid black;"></span>
|
|
<div><script>document.body.offsetHeight;</script></div>
|
|
m
|
|
|
|
<script>
|
|
function doe() {
|
|
var a=document.getElementById('a');
|
|
a.style.outline = '1px solid transparent';
|
|
document.body.offsetHeight;
|
|
a.style.outline = '';
|
|
}
|
|
setTimeout(doe, 500);
|
|
</script>
|
|
</body>
|
|
</html>
|