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

Side by Side Diff: chrome/test/data/extensions/api_test/toolstrip/test.html

Issue 203023: add mole collapse/expand events. convert mappy to use this. (Closed)
Patch Set: add missing file Created 11 years, 3 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
OLDNEW
(Empty)
1 <script>
2 chrome.test.runTests([
3 function expand() {
4 chrome.test.listenOnce(chrome.toolstrip.onExpanded, function(){});
5 chrome.toolstrip.expand({height:200},
6 chrome.test.callbackPass(function(){}));
7 },
8
9 function collapse() {
10 chrome.test.listenOnce(chrome.toolstrip.onCollapsed, function(){});
11 chrome.toolstrip.collapse({}, chrome.test.callbackPass(function(){}));
12 }
13 ]);
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698