| Index: content/test/data/navigation_controller/remove_blank_iframe_on_load.html
|
| diff --git a/content/test/data/navigation_controller/remove_blank_iframe_on_load.html b/content/test/data/navigation_controller/remove_blank_iframe_on_load.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..aa29b3e50f3a33857e4e8b1f2f2c1c3cb5f9299d
|
| --- /dev/null
|
| +++ b/content/test/data/navigation_controller/remove_blank_iframe_on_load.html
|
| @@ -0,0 +1,14 @@
|
| +<html>
|
| +<head>
|
| +<script>
|
| +function removeFrame() {
|
| + var f = document.getElementById("frame1");
|
| + document.body.removeChild(f);
|
| +}
|
| +</script>
|
| +</head>
|
| +<body onload="removeFrame()">
|
| + This page removes its blank iframe on load.<br>
|
| + <iframe id="frame1"></iframe>
|
| +</body>
|
| +</html>
|
|
|