blob: 446a2eac2f8aa0b369fa4c0b9c5c05ed822e63cf [file] [log] [blame]
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
const parser = new DOMParser();
const parsed_document =
parser.parseFromString('<iframe loading=lazy ' +
'src=https://domfarolino.com></iframe>',
'text/html');
}, 'Creating a loading=lazy iframe from DOMParser does not crash the renderer');
</script>