blob: 4b0d9c1d84e35673075c3e3f19533e17ba2efcbf [file] [log] [blame]
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<iframe id="i" src="about:blank"></iframe>
<script>
async_test(t => {
i.onload = () => {
assert_equals(i.contentDocument.body.textContent, "");
t.done();
}
i.contentWindow.location.reload();
i.contentDocument.body.textContent = 'this text should be overwritten by reload';
});
</script>