blob: 812ef0203921903dbee5af85e7ecf4dfddbce3eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html><head>
<script>
function doe2(i) {
var x=document.getElementsByTagName('*');
document.body.setAttribute('style', 'display: inline; position: relative;');
document.body.offsetHeight;
document.getElementById('a').setAttribute('style', '');
document.getElementById('b').setAttribute('style', 'position: absolute;');
}
setTimeout(doe2,100);
</script>
</head>
<body>
<span id="b"></span>ع
<span id="a" style="position: absolute;">ع
<span style="position: absolute;"></span>
</span>
</body>
</html>
|