| Index: LayoutTests/imported/web-platform-tests/html/browsers/history/the-history-interface/history_pushstate.html
|
| diff --git a/LayoutTests/imported/web-platform-tests/html/browsers/history/the-history-interface/history_pushstate.html b/LayoutTests/imported/web-platform-tests/html/browsers/history/the-history-interface/history_pushstate.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0d43326c3a658e9c6db1636bf71f74e529e47f9c
|
| --- /dev/null
|
| +++ b/LayoutTests/imported/web-platform-tests/html/browsers/history/the-history-interface/history_pushstate.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE HTML>
|
| +<html>
|
| + <head>
|
| + <title>history_pushState</title>
|
| + <script src="../../../../../../resources/testharness.js"></script>
|
| + <script src="../../../../../../resources/testharnessreport.js"></script>
|
| + </head>
|
| + <body>
|
| + <div id="log"></div>
|
| + <script>
|
| + test(function () {
|
| + window.history.pushState(1, document.title, '?x=1');
|
| + var state;
|
| + state = window.history.state;
|
| + assert_equals(state, 1, "history state");
|
| + }, "history pushState");
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|