blob: 51bae713e092f76c827cd9490ae79f655b4c173e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!-- Quirks mode on purpose -->
<html>
<head>
<style>
body { overflow: scroll; border: 1px solid green; }
</style>
<script>
onload = function() {
var newBody = document.createElement("body");
newBody.textContent = "This element should not have scrollbars!";
document.documentElement.appendChild(newBody);
window.nooptimize = newBody.offsetWidth;
document.body.remove();
newBody.scrollHeight; // Asserts in a debug build
}
</script>
</head>
<body>
First body
</body>
</html>
|