diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-10-20 19:18:34 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2014-10-21 09:06:58 -0400 |
commit | 6d7589351eae1e180579fc0c87885e5ab7a73f48 (patch) | |
tree | 3b3b0c0bfc698148dd75d9f0d1fbb8af31c59724 /tests/unit/dialog/dialog_options.js | |
parent | faf87d992455280182edef015c8733313744a739 (diff) | |
download | jquery-ui-6d7589351eae1e180579fc0c87885e5ab7a73f48.tar.gz jquery-ui-6d7589351eae1e180579fc0c87885e5ab7a73f48.zip |
All: Drop support for IE7
Fixes #9838
Closes gh-1365
Diffstat (limited to 'tests/unit/dialog/dialog_options.js')
-rw-r--r-- | tests/unit/dialog/dialog_options.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/dialog/dialog_options.js b/tests/unit/dialog/dialog_options.js index 87f3553be..3e5444c67 100644 --- a/tests/unit/dialog/dialog_options.js +++ b/tests/unit/dialog/dialog_options.js @@ -371,9 +371,9 @@ test("minWidth", function() { test( "position, default center on window", function() { expect( 2 ); - // dialogs alter the window width and height in FF and IE7 + // dialogs alter the window width and height in Firefox // so we collect that information before creating the dialog - // Support: FF, IE7 + // Support: Firefox var winWidth = $( window ).width(), winHeight = $( window ).height(), element = $("<div></div>").dialog(), @@ -387,9 +387,9 @@ test( "position, default center on window", function() { test( "position, right bottom at right bottom via ui.position args", function() { expect( 2 ); - // dialogs alter the window width and height in FF and IE7 + // dialogs alter the window width and height in Firefox // so we collect that information before creating the dialog - // Support: FF, IE7 + // Support: Firefox var winWidth = $( window ).width(), winHeight = $( window ).height(), element = $("<div></div>").dialog({ |