summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/http/tests/navigation/resources/document-location.js
blob: 1db48cdffb6c8dca5effcde61f4d30ced82fa9e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function start() {
  if (window.layoutTestController) {
    var n = document.location.search.substring(1);
    if (!n) {
      // page just opened
      layoutTestController.dumpBackForwardList();
      layoutTestController.dumpAsText();
      layoutTestController.waitUntilDone();

      runTest();
    } else {
      // loaded the ?1 navigation
      layoutTestController.notifyDone();
    }
  }
}

function setLocation() {
  document.location = "?1"
}