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

Side by Side Diff: chrome/test/data/extensions/api_test/webnavigation/test_history.js

Issue 10815051: Send the correct process ID with webNavigation events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 function runTests() { 5 function runTests() {
6 var getURL = chrome.extension.getURL; 6 var getURL = chrome.extension.getURL;
7 chrome.tabs.create({"url": "about:blank"}, function(tab) { 7 chrome.tabs.create({"url": "about:blank"}, function(tab) {
8 var tabId = tab.id; 8 var tabId = tab.id;
9 9
10 chrome.test.runTests([ 10 chrome.test.runTests([
11 // History manipulation via window.history 11 // History manipulation via window.history
12 function history() { 12 function history() {
13 expect([ 13 expect([
14 { label: "a-onBeforeNavigate", 14 { label: "a-onBeforeNavigate",
15 event: "onBeforeNavigate", 15 event: "onBeforeNavigate",
16 details: { frameId: 0, 16 details: { frameId: 0,
17 processId: 0,
17 tabId: 0, 18 tabId: 0,
18 timeStamp: 0, 19 timeStamp: 0,
19 url: getURL('history/a.html') }}, 20 url: getURL('history/a.html') }},
20 { label: "a-onCommitted", 21 { label: "a-onCommitted",
21 event: "onCommitted", 22 event: "onCommitted",
22 details: { frameId: 0, 23 details: { frameId: 0,
24 processId: 0,
23 tabId: 0, 25 tabId: 0,
24 timeStamp: 0, 26 timeStamp: 0,
25 transitionQualifiers: [], 27 transitionQualifiers: [],
26 transitionType: "link", 28 transitionType: "link",
27 url: getURL('history/a.html') }}, 29 url: getURL('history/a.html') }},
28 { label: "a-onDOMContentLoaded", 30 { label: "a-onDOMContentLoaded",
29 event: "onDOMContentLoaded", 31 event: "onDOMContentLoaded",
30 details: { frameId: 0, 32 details: { frameId: 0,
33 processId: 0,
31 tabId: 0, 34 tabId: 0,
32 timeStamp: 0, 35 timeStamp: 0,
33 url: getURL('history/a.html') }}, 36 url: getURL('history/a.html') }},
34 { label: "a-onCompleted", 37 { label: "a-onCompleted",
35 event: "onCompleted", 38 event: "onCompleted",
36 details: { frameId: 0, 39 details: { frameId: 0,
40 processId: 0,
37 tabId: 0, 41 tabId: 0,
38 timeStamp: 0, 42 timeStamp: 0,
39 url: getURL('history/b.html') }}, 43 url: getURL('history/b.html') }},
40 { label: "a-onHistoryStateUpdated", 44 { label: "a-onHistoryStateUpdated",
41 event: "onHistoryStateUpdated", 45 event: "onHistoryStateUpdated",
42 details: { frameId: 0, 46 details: { frameId: 0,
47 processId: 0,
43 tabId: 0, 48 tabId: 0,
44 timeStamp: 0, 49 timeStamp: 0,
45 transitionQualifiers: ["client_redirect"], 50 transitionQualifiers: ["client_redirect"],
46 transitionType: "link", 51 transitionType: "link",
47 url: getURL('history/b.html') }}], 52 url: getURL('history/b.html') }}],
48 [ navigationOrder("a-") ]); 53 [ navigationOrder("a-") ]);
49 chrome.tabs.update(tabId, { url: getURL('history/a.html') }); 54 chrome.tabs.update(tabId, { url: getURL('history/a.html') });
50 }, 55 },
51 ]); 56 ]);
52 }); 57 });
53 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698