| Index: chrome/test/data/extensions/api_test/infobars/test.js
|
| ===================================================================
|
| --- chrome/test/data/extensions/api_test/infobars/test.js (revision 96544)
|
| +++ chrome/test/data/extensions/api_test/infobars/test.js (working copy)
|
| @@ -30,7 +30,8 @@
|
|
|
| // Show infobarA in window A (tab A) (and specify no callback).
|
| chrome.experimental.infobars.show({"path": "infobarA.html",
|
| - "tabId": tabA});
|
| + "tabId": tabA,
|
| + "height": 36});
|
| // Flow continues in infobarCallbackA.
|
| });
|
| });
|
| @@ -54,7 +55,8 @@
|
|
|
| // Show infobarB in (current) window B (with callback).
|
| chrome.experimental.infobars.show({"path": "infobarB.html",
|
| - "tabId": tabB},
|
| + "tabId": tabB,
|
| + "height": 36},
|
| function(window) {
|
| assertEq(window.id, windowB);
|
| // This infobar will call back to us through infobarCallbackB (below).
|
|
|