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

Side by Side Diff: chrome/test/data/sdch/base-page.html

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix component linkage Created 6 years, 1 month 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/sdch/dict » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <title>Base page containing iframe with SDCH-encoded content</title>
3 <body>
4 <iframe></iframe>
5 <script>
6 var iframe = document.querySelector('iframe');
7 var re = /[&?]iframe_url=([^&?#]*)/;
8 var result = re.exec(document.location.search);
9 iframe.src = 'http://sub.testdomain.com:' + document.location.port +
10 decodeURI(result[1]);
11 </script>
12 </body>
13 </html>
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/sdch/dict » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698