summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/test/data/extensions/subscribe_page_action/manifest.json2
-rw-r--r--chrome/test/data/extensions/subscribe_page_action/subscribe.js3
2 files changed, 3 insertions, 2 deletions
diff --git a/chrome/test/data/extensions/subscribe_page_action/manifest.json b/chrome/test/data/extensions/subscribe_page_action/manifest.json
index 533513f..b1577d2 100644
--- a/chrome/test/data/extensions/subscribe_page_action/manifest.json
+++ b/chrome/test/data/extensions/subscribe_page_action/manifest.json
@@ -1,7 +1,7 @@
{
"name": "RSS Subscription Extension",
"description": "Adds one-click subscription to your toolbar",
- "version": "1.6.1",
+ "version": "1.6.2",
"permissions": [
"tabs",
"http://*/*"
diff --git a/chrome/test/data/extensions/subscribe_page_action/subscribe.js b/chrome/test/data/extensions/subscribe_page_action/subscribe.js
index d0a9a6c..8d9ee1c 100644
--- a/chrome/test/data/extensions/subscribe_page_action/subscribe.js
+++ b/chrome/test/data/extensions/subscribe_page_action/subscribe.js
@@ -41,7 +41,8 @@ var storageEnabled = window.localStorage != null;
// Navigates to the reader of the user's choice (for subscribing to the feed).
function navigate() {
var select = document.getElementById('readerDropdown');
- var url = feedReaderList[select.selectedIndex].url.replace("%s", feedUrl);
+ var url =
+ feedReaderList[select.selectedIndex].url.replace("%s", escape(feedUrl));
document.location = url;
}