Chromium Code Reviews| Index: content/test/data/page_with_blur.html |
| diff --git a/content/test/data/page_with_blur.html b/content/test/data/page_with_blur.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bc794980b1875b365ad610d056282f2ba7481410 |
| --- /dev/null |
| +++ b/content/test/data/page_with_blur.html |
| @@ -0,0 +1,20 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<script> |
| + |
| +window.onload = function() { |
| + document.body.onblur = function() { |
| + domAutomationController.setAutomationId(0); |
| + domAutomationController.send("document-blur"); |
| + } |
| +} |
| + |
| +</script> |
| +</head> |
| + |
| +<body> |
| +This page has a blur event. |
| +</body> |
| +</html> |
| + |