Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / navigation / resources / subframe-with-unload-handler-in-parent.html
blobeec5d3eedd76a55d0b5391aa0fe3f5b012c4e4d7
1 <html>
2 <head>
3 <script>
4 function unload() {
5 window.parent.imageLoad();
8 function load() {
9 window.top.test();
11 </script>
12 </head>
13 <body onload="load();" onunload="unload();">
14 This subframe has an unload handler.
15 </body>
16 </html>