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

Unified Diff: chrome/test/data/popup_blocker/popup-window-subframe-open.html

Issue 2778113003: Fix popunders spawned from a subframe. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « chrome/test/data/popup_blocker/popup-subframe.html ('k') | content/browser/frame_host/frame_tree_node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/popup_blocker/popup-window-subframe-open.html
diff --git a/chrome/test/data/popup_blocker/popup-window-subframe-open.html b/chrome/test/data/popup_blocker/popup-window-subframe-open.html
new file mode 100644
index 0000000000000000000000000000000000000000..3731806d16706cb1e61aa919d0a3ba220d27ecfb
--- /dev/null
+++ b/chrome/test/data/popup_blocker/popup-window-subframe-open.html
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>Popup created using window.open</title>
+<script>
+function deleteframe() {
+ var frame = document.getElementById('frame');
+ frame.parentNode.removeChild(frame);
+}
+</script>
+</head>
+<body>
+pop-up test page
+<iframe id="frame" src="popup-subframe.html"></iframe>
+</body>
+</html>
« no previous file with comments | « chrome/test/data/popup_blocker/popup-subframe.html ('k') | content/browser/frame_host/frame_tree_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698