| Index: content/test/data/remove_frame_on_load.html
|
| diff --git a/content/test/data/remove_frame_on_load.html b/content/test/data/remove_frame_on_load.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8d1785f11c80dd7a094d8144ba5e32c837e935bb
|
| --- /dev/null
|
| +++ b/content/test/data/remove_frame_on_load.html
|
| @@ -0,0 +1,19 @@
|
| +<html>
|
| + <head>
|
| + <title>Remove frame on load of about:blank</title>
|
| + <script>
|
| + var f;
|
| + window.addEventListener('load', function() {
|
| + f = document.querySelector('iframe')
|
| + f.onload = function() {
|
| + if (f.contentWindow.location.href == 'about:blank')
|
| + f.parentNode.removeChild(f);
|
| + };
|
| + });
|
| + </script>
|
| + </head>
|
| + <body>
|
| + <p>Navigate the frame to about:blank page to cause it to be removed.</p>
|
| + <iframe src="/cross-site/b.com/title2.html"></iframe>
|
| + </body>
|
| +</html>
|
|
|