blob: 0948fad7b3c5506e453aa51bd0c3dd266c57806d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var ifrm = document.createElement("iframe");
ifrm.srcdoc = "PASS";
ifrm.src = "data:text/html,<script>alert(/FAIL/);<\/script>";
document.body.appendChild(ifrm);
</script>
This test passes if it doesn't alert FAIL.
|