blob: 9119b3a6785d0aa136a5ee2562e2faf3a05d8517 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<iframe id="iframe"></iframe>
<script>
var t = async_test();
var repeat = 3;
function test() {
if (repeat -- > 0)
iframe.src = 'resources/validation-message-crash-iframe.html';
else
t.done();
}
t.step(() => {
iframe.onload = test;
test();
});
</script>