1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

content / test / data / render_frame_host / beforeunload.html [blame]

<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
<script>
window.onbeforeunload=function(e){
  return 'foo';
}
</script>
</html>