haikuwebkit/LayoutTests/fast/frames/srcdoc/setting-src-does-nothing.html

15 lines
366 B
HTML

<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.dumpChildFramesAsText();
}
</script>
<p>This test ensures that setting the src attribute does not cause the document
inside the iframe to change.</p>
<iframe srcdoc="
<script>
window.frameElement.src = 'data:text/html,<script>alert(/FAIL/);<\/script>';
</script>
PASS
"></iframe>