blob: 12677ade938d989f409a7c3c66d0d4b407dbe9a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<select>
<script>document.documentElement.offsetHeight</script>
<option>Hello there</option>
</select>
<script>
document.querySelector("body").style.display = "inline";
</script>
</body>
</html>
|