OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Navigates to an URL. | 11 // Navigates to an URL. |
12 function simpleLoad() { | 12 function simpleLoad() { |
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('simpleLoad/a.html') }}, | 20 url: getURL('simpleLoad/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('simpleLoad/a.html') }}, | 29 url: getURL('simpleLoad/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('simpleLoad/a.html') }}, | 36 url: getURL('simpleLoad/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('simpleLoad/a.html') }}], | 43 url: getURL('simpleLoad/a.html') }}], |
40 [ navigationOrder("a-") ]); | 44 [ navigationOrder("a-") ]); |
41 chrome.tabs.update(tabId, { url: getURL('simpleLoad/a.html') }); | 45 chrome.tabs.update(tabId, { url: getURL('simpleLoad/a.html') }); |
42 }, | 46 }, |
43 ]); | 47 ]); |
44 }); | 48 }); |
45 } | 49 } |
OLD | NEW |