diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-01 00:54:19 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-15 00:38:40 +0200 |
commit | bb49bd794bc8ea4238162725b518fb46234f3cf9 (patch) | |
tree | db7b6152daac9f2c6b5fd051ab5d3b7ec7382791 /tests/unit/widget | |
parent | daa6fb55b35065c49c0ffc879c94627bbf85404c (diff) | |
download | jquery-ui-bb49bd794bc8ea4238162725b518fb46234f3cf9.tar.gz jquery-ui-bb49bd794bc8ea4238162725b518fb46234f3cf9.zip |
All: Drop support for IE & some other browsers (but mostly IE)
Closes gh-2249
Diffstat (limited to 'tests/unit/widget')
-rw-r--r-- | tests/unit/widget/core.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/unit/widget/core.js b/tests/unit/widget/core.js index 1054bf092..fe74e18e9 100644 --- a/tests/unit/widget/core.js +++ b/tests/unit/widget/core.js @@ -293,9 +293,7 @@ QUnit.test( "._getCreateOptions()", function( assert ) { assert.deepEqual( superOptions, {}, "Base implementation returns empty object" ); - // Support: IE8 - // Strict equality fails when comparing this.window in ie8 - assert.equal( this.window[ 0 ], window, "this.window is properly defined" ); + assert.strictEqual( this.window[ 0 ], window, "this.window is properly defined" ); assert.strictEqual( this.document[ 0 ], document, "this.document is properly defined" ); return { |