blob: 3220a12f43b9d6cee815a3e7ec75120d50934dd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html class="reftest-wait">
<script>
function run() {
let iframe = document.querySelector("iframe");
iframe.contentDocument.body.offsetHeight;
document.documentElement.removeAttribute("class");
}
</script>
<body>
<iframe src="1539303-iframe.html" onload="run()">
</iframe>
</body>
|