chromium/third_party/blink/web_tests/external/wpt/html/semantics/embedded-content/the-iframe-element/support/iframe-that-performs-top-navigation-without-user-gesture-failed.html

<html>
<body>
The top navigation from this iframe should be blocked. This text should appear.
<script>
window.onload = function()
{
    try {
        top.location = "navigation-changed-iframe.html";
        top.postMessage("FAIL", "*");
    } catch(e) {
        top.postMessage("PASS", "*");
    }
}
</script>
</body>
</html>