1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 var getURL = chrome.extension.getURL;
7 chrome.tabs.create({"url": "about:blank"}, function(tab) {
10 chrome.test.runTests([
11 // Reference fragment navigation.
12 function referenceFragment() {
14 { label: "a-onBeforeNavigate",
15 event: "onBeforeNavigate",
16 details: { frameId: 0,
21 url: getURL('a.html') }},
22 { label: "a-onCommitted",
24 details: { frameId: 0,
28 transitionQualifiers: [],
29 transitionType: "link",
30 url: getURL('a.html') }},
31 { label: "a-onDOMContentLoaded",
32 event: "onDOMContentLoaded",
33 details: { frameId: 0,
37 url: getURL('a.html') }},
38 { label: "a-onCompleted",
40 details: { frameId: 0,
44 url: getURL('a.html#anchor') }},
45 { label: "a-onReferenceFragmentUpdated",
46 event: "onReferenceFragmentUpdated",
47 details: { frameId: 0,
51 transitionQualifiers: ["client_redirect"],
52 transitionType: "link",
53 url: getURL('a.html#anchor') }}],
54 [ navigationOrder("a-") ]);
55 chrome.tabs.update(tabId, { url: getURL('a.html') });