]> source.dussan.org Git - jquery-ui.git/commitdiff
Selectmenu Tests: add toLowerCase() to node type checks
authorFelix Nagel <info@felixnagel.com>
Mon, 29 Apr 2013 18:59:35 +0000 (20:59 +0200)
committerFelix Nagel <info@felixnagel.com>
Mon, 29 Apr 2013 18:59:35 +0000 (20:59 +0200)
tests/unit/selectmenu/selectmenu_events.js

index 0d1b3bf91eab24c858a0a74a59b1a405f9a21978..aefd78b940579467ef51e84e7e3c938157aead5d 100644 (file)
@@ -13,7 +13,7 @@ test( "change", function () {
                change: function ( event, ui ) {
                        ok( event, "change event fired on change" );
                        equal( event.type, "selectmenuchange", "event type set to selectmenuchange" );
-                       equal( ui.item.element[ 0 ].nodeName, "OPTION", "ui.item.element[0] points to original option element" );
+                       equal( ui.item.element[ 0 ].nodeName.toLowerCase(), "option", "ui.item.element[0] points to original option element" );
                        equal( ui.item.value, value, "ui.item.value property updated correctly" );
                }
        });
@@ -44,15 +44,13 @@ test( "close", function () {
 test( "focus", function () {
        expect( 3 );
 
-       var button,
-               menu,
-               links;
+       var button, menu, links;
 
        this.element.selectmenu({
                focus: function ( event, ui ) {
                        ok( event, "focus event fired on mouseover" );
                        equal( event.type, "selectmenufocus", "event type set to selectmenufocus" );
-                       equal( ui.item.element[0].nodeName, "OPTION", "ui points to original option element" );
+                       equal( ui.item.element[0].nodeName.toLowerCase(), "option", "ui points to original option element" );
                }
        });
 
@@ -91,7 +89,7 @@ test( "select", function () {
                select: function ( event, ui ) {
                        ok( event, "select event fired on item select" );
                        equal( event.type, "selectmenuselect", "event type set to selectmenuselect" );
-                       equal( ui.item.element[0].nodeName, "OPTION", "ui points to original option element" );
+                       equal( ui.item.element[0].nodeName.toLowerCase(), "option", "ui points to original option element" );
                }
        });