| Index: third_party/WebKit/LayoutTests/fast/history/window-open-blocked.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/history/window-open-blocked.html b/third_party/WebKit/LayoutTests/fast/history/window-open-blocked.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..310cb61c52a995ae30f5f8c6e10afdaed64f4b92
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/history/window-open-blocked.html
|
| @@ -0,0 +1,10 @@
|
| +<!DOCTYPE html>
|
| +<div id="result"></div>
|
| +<script>
|
| +if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + testRunner.setCloseRemainingWindowsWhenComplete(true);
|
| +}
|
| +let x = window.open('about:blank');
|
| +result.append(x === null ? 'PASS' : `FAIL: ${x}`);
|
| +</script>
|
|
|