| <script src="../../../resources/js-test-pre.js"></script> |
| document.addEventListener("DOMFocusOut", function() { |
| holder.removeChild(willBeRemoved); |
| willBeDisabled.disabled = true; |
| description("document.activeElement should return a valid and focusable element."); |
| shouldNotBe("document.activeElement", "willBeDisabled"); |
| shouldBeEqualToString("document.activeElement.id", "body"); |
| holder.removeChild(willBeDisabled); |
| <body id=body onload="test()"> |
| <input autofocus id=willBeRemoved> |
| <input autofocus id=willBeDisabled> |