| Index: third_party/WebKit/LayoutTests/imported/wpt/html/browsers/browsing-the-web/navigating-across-documents/empty_fragment_iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/browsing-the-web/navigating-across-documents/empty_fragment_iframe.html b/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/browsing-the-web/navigating-across-documents/empty_fragment_iframe.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..26b28a0d7dcb912dc1f1131b98993bb29d3a18c1
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/html/browsers/browsing-the-web/navigating-across-documents/empty_fragment_iframe.html
|
| @@ -0,0 +1,11 @@
|
| +<script>
|
| +var timeout;
|
| +onload = function() {
|
| + location.hash = "";
|
| + timeout = setTimeout(function() { parent.child_succeeded() }, 2000);
|
| +};
|
| +
|
| +onbeforeunload = function() {
|
| + clearTimeout(timeout);
|
| +}
|
| +</script>
|
|
|