flutter_flutter/engine/web/tests/data/add_frame_in_unload.html
2014-10-23 11:17:19 -07:00

14 lines
241 B
HTML

<!DOCTYPE html>
<html>
<script>
function handleUnload()
{
var iframe = document.createElement('iframe');
iframe.src = 'about:blank';
document.body.appendChild(iframe);
}
</script>
<body onunload="handleUnload()">
</body>
</html>