Sign in
◑
Theme
chromium
/
chromium
/
src.git
/
cacd985b2d2a5eb8a94deab5368d2f7d2c4bac52
/
.
/
chrome
/
test
/
data
/
beforeunload.html
blob: 5904abc1af7ea7c4476f56696b1e0d8b622c8de9 [
file
]
<html>
<head>
<title>
Loading...
</title>
<script>
window
.
onbeforeunload
=
function
(
e
)
{
return
'foo'
;
};
</script>
</head>
<body>
<p>
Navigate to another page to trigger beforeunload handler.
</p>
</body>
</html>