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

Unified Diff: chrome/test/data/appmodenavigation_test.html

Issue 18093: Changes to insure that when in app-mode, links open in the default browser. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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: chrome/test/data/appmodenavigation_test.html
===================================================================
--- chrome/test/data/appmodenavigation_test.html (revision 0)
+++ chrome/test/data/appmodenavigation_test.html (revision 0)
@@ -0,0 +1,21 @@
+<html>
+<head>
+<Script Language="JavaScript">
+function load() {
+ w = window.open();
+ w.opener=null;
+ w.document.location='http://www.google.com';
+ w();
+}
+</Script>
+</head>
+<body>
+<a href="http://www.google.com" target=_blank> Link Test </a>
+<p>
+<div onclick='load()'>
+<a href=""> OnClick Test </a>
+</div>
+<p>
+<a href="about:blank"> Normal Test</a>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698