blob: 6bebc0fb0b21a90bc95b26d0e51b27a61e5bc7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.documentElement.offsetHeight;
var x = document.getElementById('x');
x.removeChild(x.childNodes[1]);
document.documentElement.offsetHeight;
}
</script>
</head>
<body onload="boom();">
<div style="column-count: 2;"><span style="unicode-bidi: isolate;" id="x"><span style="direction: rtl;"></span> <span style="unicode-bidi: isolate; white-space: pre;">
x</span></span></div>
</body>
</html>
|