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

Unified Diff: chrome/test/data/extensions/api_test/webnavigation/navigation2/test.html

Issue 4136004: Track in which frames navigation errors occurred and don't send further navigation events for them (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/extensions
Patch Set: Created 10 years, 2 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 side-by-side diff with in-line comments
Download patch
« chrome/common/url_constants.cc ('K') | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/webnavigation/navigation2/test.html
diff --git a/chrome/test/data/extensions/api_test/webnavigation/navigation2/test.html b/chrome/test/data/extensions/api_test/webnavigation/navigation2/test.html
index 4d03b4faa1a47ff4c204d4c340ede9a306714a7f..9bf4b47241fd11781d8391110f1469e0e82269e3 100644
--- a/chrome/test/data/extensions/api_test/webnavigation/navigation2/test.html
+++ b/chrome/test/data/extensions/api_test/webnavigation/navigation2/test.html
@@ -66,19 +66,6 @@ chrome.tabs.getSelected(null, function(tab) {
frameId: 0,
tabId: tabId,
timeStamp: 0,
- url: getURL('nonexistant.html') }],
- [ "onBeforeNavigate",
- { frameId: 0,
- requestId: 0,
- tabId: tabId,
- timeStamp: 0,
- url: "chrome://chromewebdata/"}],
- [ "onCommitted",
- { frameId: 0,
- tabId: tabId,
- timeStamp: 0,
- transitionQualifiers: "",
- transitionType: "link",
url: getURL('nonexistant.html') }]]);
chrome.tabs.update(tabId, { url: getURL('nonexistant.html') });
},
@@ -110,19 +97,6 @@ chrome.tabs.getSelected(null, function(tab) {
frameId: 1,
tabId: tabId,
timeStamp: 0,
- url: getURL('iframeFail/c.html') }],
- [ "onBeforeNavigate",
- { frameId: 1,
- requestId: 0,
- tabId: tabId,
- timeStamp: 0,
- url: "chrome://chromewebdata/"}],
- [ "onCommitted",
- { frameId: 1,
- tabId: tabId,
- timeStamp: 0,
- transitionQualifiers: "",
- transitionType: "auto_subframe",
url: getURL('iframeFail/c.html') }]]);
chrome.tabs.update(tabId, { url: getURL('iframeFail/d.html') });
},
@@ -167,19 +141,6 @@ chrome.tabs.getSelected(null, function(tab) {
frameId: 1,
tabId: tabId,
timeStamp: 0,
- url: getURL('iframeFail/c.html') }],
- [ "onBeforeNavigate",
- { frameId: 1,
- requestId: 0,
- tabId: tabId,
- timeStamp: 0,
- url: "chrome://chromewebdata/"}],
- [ "onCommitted",
- { frameId: 1,
- tabId: tabId,
- timeStamp: 0,
- transitionQualifiers: "",
- transitionType: "manual_subframe",
url: getURL('iframeFail/c.html') }]]);
chrome.tabs.update(tabId, { url: getURL('iframeFail/a.html') });
},
« chrome/common/url_constants.cc ('K') | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698