WebCore/manual-tests/modal-dialog-blur.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/modal-dialog-blur.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+<head><title>
+Tests blur/focus events with modal dialogs
+</title></head>
+<script>
+var failed = "";
+function failBlur() {
+  failed = "blur";
+}
+function failFocus() {
+  failed = "focus";
+}
+
+var inputElement;
+
+function test() {
+  inputElement = document.getElementById("i")
+  inputElement.focus();
+  inputElement.addEventListener("blur", failBlur, false);
+  inputElement.addEventListener("focus", failFocus, false);
+  window.showModalDialog("modal-dialog-blur-selfclose.html");
+  if (failed) {
+    document.getElementById("status").innerHTML = "FAIL, " + failed;
+  } else {
+    document.getElementById("status").innerHTML = "SUCCESS";
+  }
+}
+</script>
+<body onload="test()">
+<input id="i"></input>
+<div id="status">RUNNING...</div>
+</body>
+</html>