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

Side by Side Diff: chrome/test/data/extensions/samples/print_browser_action/background.html

Issue 243001: Implement Browser Actions extensions.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 <head>
3 <script>
4 // Called when the user clicks on the browser action.
5 chrome.browserAction.onClicked.addListener(function(windowId) {
6 chrome.tabs.getSelected(windowId, function(tab) {
7 var action_url = "javascript:window.print();";
8 chrome.tabs.update(tab.id, {url: action_url});
9 });
10 });
11 </script>
12 </head>
13 </html>
14
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698