aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/core.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/core.js')
-rw-r--r--test/unit/core.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index 6801c7c0d..d1b221ce8 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -1516,3 +1516,10 @@ testIframeWithCallback( "Tolerating alias-masked DOM properties (#14074)", "core
deepEqual( errors, [], "jQuery loaded" );
}
);
+
+testIframeWithCallback( "Don't call window.onready (#14802)", "core/onready.html",
+ function( error ) {
+ expect( 1 );
+ equal( error, false, "no call to user-defined onready" );
+ }
+);