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.
5 chrome.webNavigation.onBeforeNavigate.addListener(
7 chrome.webNavigation.onCommitted.addListener(
9 chrome.webNavigation.onDOMContentLoaded.addListener(
10 function(details) {});
11 chrome.webNavigation.onCompleted.addListener(
12 function(details) {});
13 chrome.webNavigation.onErrorOccurred.addListener(
14 function(details) {});
15 chrome.webNavigation.onCreatedNavigationTarget.addListener(
16 function(details) {});
17 chrome.test.notifyPass();