The test for underscore selectors broke under Opera, so the element is now loaded via Ajax and tested. (bug #1084)

This commit is contained in:
John Resig 2007-07-30 02:52:24 +00:00
parent 334462b23c
commit 660490e6f4
2 changed files with 13 additions and 3 deletions

View file

@ -15,6 +15,7 @@
<property name="prop2"> <property name="prop2">
<thing att="something" /> <thing att="something" />
</property> </property>
<foo_bar>foo</foo_bar>
</properties> </properties>
</component> </component>
</meta> </meta>

View file

@ -1,7 +1,7 @@
module("selector"); module("selector");
test("element", function() { test("element", function() {
expect(9); expect(8);
ok( $("*").size() >= 30, "Select all" ); ok( $("*").size() >= 30, "Select all" );
t( "Element Selector", "p", ["firstp","ap","sndp","en","sap","first"] ); t( "Element Selector", "p", ["firstp","ap","sndp","en","sap","first"] );
t( "Element Selector", "body", ["body"] ); t( "Element Selector", "body", ["body"] );
@ -11,10 +11,19 @@ test("element", function() {
ok( $("#length").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' ); ok( $("#length").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' );
ok( $("#lengthtest input").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' ); ok( $("#lengthtest input").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' );
t( "Element Selector with underscore", "foo_bar", ["foobar"] );
}); });
if ( location.protocol != "file:" ) {
test("Element Selector with underscore", function() {
expect(1);
stop();
$.get("data/with_fries.xml", function(xml) {
ok( $("foo_bar", xml).length == 1, "Element Selector with underscore" );
start();
});
});
}
test("broken", function() { test("broken", function() {
expect(7); expect(7);
t( "Broken Selector", "[", [] ); t( "Broken Selector", "[", [] );