blob: 966cf6c6e491340e314b510b93588fe25af0cf66 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="/js-test-resources/js-test.js"></script>
<script>
description("Test that top-level navigations by a third-party iframe are allowed with a user gesture.");
jsTestIsAsync = true;
onload = () => {
setTimeout(() => {
document.getElementById('testFrame').src = "http://localhost:8000/security/resources/navigate-top-level-frame-to-success-page-with-user-gesture.html";
setTimeout(() => {
testFailed("Navigation by subframe should not have been blocked");
finishJSTest();
}, 5000);
}, 10);
}
</script>
<iframe id="testFrame"></iframe>
</body>
</html>