diff options
author | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-28 21:24:34 +0000 |
---|---|---|
committer | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-28 21:24:34 +0000 |
commit | 50cdc732caacead0d4236716c43342ae14e366f3 (patch) | |
tree | bfa49fd0e3ff3a35e16a8201544ed9709136c9df /chrome_frame/test/data | |
parent | e55a7ddf8a95cd64c620f4536d641fede75d51d0 (diff) | |
download | chromium_src-50cdc732caacead0d4236716c43342ae14e366f3.zip chromium_src-50cdc732caacead0d4236716c43342ae14e366f3.tar.gz chromium_src-50cdc732caacead0d4236716c43342ae14e366f3.tar.bz2 |
Add chrome frame tests for common navigation cases to ensure IE still works.
BUG=none
TEST=none
Review url: http://codereview.chromium.org/2173002
Review URL: http://codereview.chromium.org/2374002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48527 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/test/data')
-rw-r--r-- | chrome_frame/test/data/no_interference/javascript_redirect.html | 11 | ||||
-rw-r--r-- | chrome_frame/test/data/no_interference/link.html | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/chrome_frame/test/data/no_interference/javascript_redirect.html b/chrome_frame/test/data/no_interference/javascript_redirect.html new file mode 100644 index 0000000..5e29ab1 --- /dev/null +++ b/chrome_frame/test/data/no_interference/javascript_redirect.html @@ -0,0 +1,11 @@ +<html> + <head> + <script type="text/javascript"> + window.onload = function() { + var url = "" + window.location; + window.location = url.substring(0, url.lastIndexOf("/") + 1) + + "empty.html"; + } + </script> + </head> +</html>
\ No newline at end of file diff --git a/chrome_frame/test/data/no_interference/link.html b/chrome_frame/test/data/no_interference/link.html new file mode 100644 index 0000000..d84da5b --- /dev/null +++ b/chrome_frame/test/data/no_interference/link.html @@ -0,0 +1,5 @@ +<html> + <body> + <a href="empty.html">Empty page</a> + </body> +</html>
\ No newline at end of file |