4 if (!window
.testRunner
)
7 testRunner
.dumpAsText();
8 testRunner
.waitUntilDone();
10 var element
= document
.getElementById("elem");
16 document
.getElementById("console").innerHTML
= "blur event fired, FAILED!";
17 window
.location
= 'resources/no-blur-result.html/#FAILED';
18 testRunner
.notifyDone();
22 <body onload=
"test();">
23 onblur should not fire if an element has focus when navigating away from the page
<br>
24 <a href=
"rdar://problem/5326303">rdar://problem/
5326303</a><br>
25 <select id=
"elem" onchange=
"window.location='resources/no-blur-result.html';" onblur=
"failed()">
26 <option>CHANGE ME
</option>
27 <option>PICK ME
</option>