Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/sandbox-DENIED-top-navigation-without-user-gesture.html

Issue 2711073002: WPT tests of allow-top-navigation-by-user-activation for iframe@sandbox. (Closed)
Patch Set: Add an async_test for the manual test to test the top-navigation blocking given no user gesture. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/sandbox-DENIED-top-navigation-without-user-gesture.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/sandbox-DENIED-top-navigation-without-user-gesture.html b/third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/sandbox-DENIED-top-navigation-without-user-gesture.html
deleted file mode 100644
index 6138dd2ba23e75600c32d5f2d1a74db0f5f3bed5..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/security/frameNavigation/sandbox-DENIED-top-navigation-without-user-gesture.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script>
-async_test(function(t) {
- window.addEventListener("message", t.step_func_done(function(e) {
- assert_equals(e.data, "PASS", "The message should say 'PASS' instead of 'FAIL'");
- }));
-}, "The sandboxed iframe should post a message saying the test was in the state of 'PASS'.");
-</script>
-</head>
-<body>
- <p>This tests that an iframe in sandbox with 'allow-top-navigation-by-user-activation'
- cannot navigate its top level page, if it is not trigged by a user gesture.</p>
- <iframe sandbox='allow-top-navigation-by-user-activation allow-scripts' src="resources/iframe-that-performs-top-navigation-without-user-gesture-failed.html"></iframe>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698