| Index: chrome/test/data/extensions/samples/subscribe_page_action/background.html
|
| diff --git a/chrome/test/data/extensions/samples/subscribe_page_action/background.html b/chrome/test/data/extensions/samples/subscribe_page_action/background.html
|
| index a8a0902417a0cea4d9885a0e639937f6bff2231a..9ab4f3f61521e913a54da89252470e9134131307 100644
|
| --- a/chrome/test/data/extensions/samples/subscribe_page_action/background.html
|
| +++ b/chrome/test/data/extensions/samples/subscribe_page_action/background.html
|
| @@ -43,9 +43,9 @@
|
| if (window.focused) {
|
| // Create a new tab showing the subscription page with the right
|
| // feed URL.
|
| - chrome.tabs.create({url: "subscribe.html?" +
|
| - feedData[pageActionInfo.tabId].feedUrl,
|
| - windowId: window.windowId});
|
| + var url = "subscribe.html?" +
|
| + encodeURIComponent(feedData[pageActionInfo.tabId].feedUrl);
|
| + chrome.tabs.create({url: url, windowId: window.windowId});
|
| }
|
| });
|
| });
|
|
|