mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
20 lines
591 B
HTML
20 lines
591 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<style type="text/css">
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
body {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<iframe id="iframe" src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"></iframe>
|
|
</body>
|
|
<script type="text/javascript">
|
|
window.onload = function() {
|
|
document.getElementById("iframe").classList.add("hidden");
|
|
document.documentElement.classList.remove("reftest-wait");
|
|
}
|
|
</script>
|
|
</html>
|