mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
14 lines
241 B
HTML
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>
|