summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/history/the-history-interface/history_replacestate_nooptionalparam.html
blob: 838467d782776af5d8c982ce0d11bdf9c9e9dc6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html>
  <head>
    <title>history_replaceStateNoOptionalParam</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id="log"></div>
    <script>
    test(function () {
      window.history.replaceState(1, document.title);

      var second;
      second = window.history.state;
      assert_equals(second, 1, "history state");
    }, "history replaceStateNoOptionalParam");
    </script>
  </body>
</html>