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

Side by Side Diff: chrome/test/data/extensions/api_test/popup/popup_main/dom_ui_popup.html

Issue 6334101: Removal of chrome.experimental.popup set of APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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>
4 function theAnswer() {
5 return 42;
6 }
7
8 function manipulateHost() {
9 var popupHost = chrome.experimental.popup.getParentWindow();
10 if (popupHost && popupHost.globalValue) {
11 popupHost.globalValue = 42;
12 }
13 }
14 </script>
15 </head>
16 <body>
17 Popup-Contents
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698