aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/selector.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r--test/unit/selector.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index 440e7167b..7939ea350 100644
--- a/test/unit/selector.js
+++ b/test/unit/selector.js
@@ -73,18 +73,6 @@ test("disconnected nodes - jQuery only", function() {
equal( $opt.is(":selected"), true, "selected option" );
});
-test("jQuery only - broken", 1, function() {
- raises(function() {
- // Setting context to null here somehow avoids QUnit's window.error handling
- // making the e & e.message correct
- // For whatever reason, without this,
- // Sizzle.error will be called but no error will be seen in oldIE
- jQuery.call( null, " <div/> " );
- }, function( e ) {
- return (/syntax.err/i).test( e.message );
- }, "leading space invalid: $(' <div/> ')" );
-});
-
testIframe("selector/html5_selector", "attributes - jQuery.attr", function( jQuery, window, document ) {
expect( 35 );