Fix #13393. Avoid IE9 activeElement of death.

This commit is contained in:
Dave Methvin
2013-04-08 21:33:25 -04:00
parent f1ba486ee3
commit 85fc5878b3
3 changed files with 29 additions and 2 deletions

View File

@@ -2416,6 +2416,11 @@ testIframeWithCallback( "jQuery.ready promise", "event/promiseReady.html", funct
ok( isOk, "$.when( $.ready ) works" );
});
testIframeWithCallback( "Focusing iframe element", "event/focusElem.html", function( isOk ) {
expect(1);
ok( isOk, "Focused an element in an iframe" );
});
// need PHP here to make the incepted IFRAME hang
if ( hasPHP ) {
testIframeWithCallback( "jQuery.ready synchronous load with long loading subresources", "event/syncReady.html", function( isOk ) {