diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-11 15:48:56 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-11 15:48:56 +0000 |
commit | d08cd21d05e71fba90efdaacd45771e266730b19 (patch) | |
tree | 08ff048ba3759af9d013b2ce9a30d17e4907e554 /chrome/test/data | |
parent | d8e41ed4a55e60be60d47de5bbcb8a027e85a879 (diff) | |
download | chromium_src-d08cd21d05e71fba90efdaacd45771e266730b19.zip chromium_src-d08cd21d05e71fba90efdaacd45771e266730b19.tar.gz chromium_src-d08cd21d05e71fba90efdaacd45771e266730b19.tar.bz2 |
Closing a tab with a constrained pop-up showing an SSL interstitial would crash the browser.
BUG=1966
TEST=Open a page that opens a popup which is served over bad SSL. Close the tab.
Review URL: http://codereview.chromium.org/1898
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data')
-rw-r--r-- | chrome/test/data/ssl/page_with_unsafe_popup.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chrome/test/data/ssl/page_with_unsafe_popup.html b/chrome/test/data/ssl/page_with_unsafe_popup.html new file mode 100644 index 0000000..093aef7 --- /dev/null +++ b/chrome/test/data/ssl/page_with_unsafe_popup.html @@ -0,0 +1,7 @@ +<html> +This page opens a popup on an insecure page. +<script> + window.open('https://127.0.0.1:9666/files/ssl/bad_iframe.html', 'Portnawak', + "status = 1, height = 300, width = 300, resizable = 0" ); +</script> +</html> |