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

Side by Side Diff: chrome/test/data/extensions/api_test/tabs/basics/relative.html

Issue 6296008: Update V8 to version 3.0.8.1 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 window.onload = function() { 4 window.onload = function() {
5 chrome.extension.getViews({type:"tab"}).forEach(function(view) { 5 chrome.extension.getViews({type:"tab"}).forEach(function(view) {
6 if (view.relativePageLoaded) { 6 if (view.relativePageLoaded) {
7 view.relativePageLoaded(); 7 view.relativePageLoaded();
8 break;
9 } 8 }
10 }); 9 });
11 } 10 }
12 </script> 11 </script>
13 </head> 12 </head>
14 </html> 13 </html>
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698