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

Side by Side Diff: chrome_frame/test/data/mshtml_refresh_test_popup.html

Issue 3433026: Add a unit test for refresh in mshtml to see where we're not tagging the user... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <html>
2 <script>
3 function refreshOpener() {
4 window.opener.location.reload();
5 // Same behavior:
6 // window.opener.location.href = window.opener.location.href;
7 return false;
8 }
9
10 function onLoad() {
11 window.setTimeout(refreshOpener, 100);
12 }
13
14 window.onload = onLoad;
15 </script>
16 <body>
17 <p>$UA$</p>
18 <a href="#" onclick="return refreshOpener();">Refresh Opener</a>
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « chrome_frame/test/data/mshtml_refresh_test.html ('k') | chrome_frame/test/test_with_web_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698