1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19

content / test / data / page_with_blur.html [blame]

<!DOCTYPE html>
<html>
<head>
<script>

window.onload = function() {
  document.body.onblur = function() {
    domAutomationController.send("document-blur");
  }
}

</script>
</head>

<body>
This page has a blur event.
</body>
</html>