| Index: third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-location-interface/location_reload.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-location-interface/location_reload.html b/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-location-interface/location_reload.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..eb2c21b38a307b6ac015f018a8192384455ac9fb
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/history/the-location-interface/location_reload.html
|
| @@ -0,0 +1,40 @@
|
| +<!DOCTYPE HTML>
|
| +<html>
|
| + <head>
|
| + <title>location_reload</title>
|
| + <script src="/resources/testharness.js"></script>
|
| + <script src="/resources/testharnessreport.js"></script>
|
| + </head>
|
| + <body>
|
| + <div id="log"></div>
|
| +
|
| + <iframe></iframe>
|
| +
|
| + <script>
|
| + var history_length;
|
| + async_test(function(t) {
|
| +
|
| + var url = new URL("./location_reload-iframe.html", window.location).href;
|
| +
|
| + window._pingCount = 0;
|
| + window._ping = t.step_func(function(innerURL) {
|
| + // Some browsers keep 'about:blank' in the session history
|
| + if (_pingCount == 0) {
|
| + history_length = history.length;
|
| + }
|
| + assert_equals(url, innerURL, "iframe url (" + _pingCount + ")");
|
| + assert_equals(history_length, history.length, "history length (" + _pingCount + ")");
|
| + _pingCount++;
|
| + if (_pingCount == 5) {
|
| + t.done();
|
| + }
|
| + });
|
| +
|
| + var iframe = document.querySelector("iframe");
|
| + iframe.src = url;
|
| + history_length = history.length;
|
| + });
|
| + </script>
|
| +
|
| + </body>
|
| +</html>
|
|
|