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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <Script Language="JavaScript">
4 function load() {
5 w = window.open();
6 w.opener=null;
7 w.document.location='http://www.google.com';
8 w();
9 }
10 </Script>
11 </head>
12 <body>
13 <a href="http://www.google.com" target=_blank> Link Test </a>
14 <p>
15 <div onclick='load()'>
16 <a href=""> OnClick Test </a>
17 </div>
18 <p>
19 <a href="about:blank"> Normal Test</a>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698