We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392d402 commit 304c00dCopy full SHA for 304c00d
tests/unit/widget/widget_core.js
@@ -268,7 +268,10 @@ test( "._getCreateOptions()", function() {
268
option3: "value3"
269
},
270
_getCreateOptions: function() {
271
- strictEqual( this.window[ 0 ], window, "this.window is properly defined" );
+
272
+ // Support: IE8
273
+ // Strict equality fails when comparing this.window in ie8
274
+ equal( this.window[ 0 ], window, "this.window is properly defined" );
275
strictEqual( this.document[ 0 ], document, "this.document is properly defined" );
276
277
return {
0 commit comments