Files
servo/tests/wpt/web-platform-tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/014-1.html

10 lines
231 B
HTML

<script>
onload = parent.t.step_func(function() {
setTimeout(parent.t.step_func(function() {
document.open()
setTimeout(parent.t.step_func(function() {parent.t.done()}), 0);
document.close();
}), 100)
});
</script>