Fixed test for object/param selection (thanks Andrea)

This commit is contained in:
Jörn Zaefferer 2007-01-07 10:26:58 +00:00
parent d7b73ea5c7
commit 955fdb87a7
2 changed files with 4 additions and 5 deletions

View File

@ -74,8 +74,8 @@
</select> </select>
<object id="object1" codebase="stupid"> <object id="object1" codebase="stupid">
<param id="param1" /> <param name="p1" value="x1" />
<param id="param2" /> <param name="p2" value="x2" />
</object> </object>
</form> </form>
<b id="floatTest">Float test.</b> <b id="floatTest">Float test.</b>

View File

@ -1,14 +1,13 @@
module("selector"); module("selector");
test("expressions - element", function() { test("expressions - element", function() {
expect(7); expect(6);
ok( $("*").size() >= 30, "Select all" ); ok( $("*").size() >= 30, "Select all" );
t( "Element Selector", "div", ["main","foo"] ); t( "Element Selector", "div", ["main","foo"] );
t( "Element Selector", "body", ["body"] ); t( "Element Selector", "body", ["body"] );
t( "Element Selector", "html", ["html"] ); t( "Element Selector", "html", ["html"] );
t( "Parent Element", "div div", ["foo"] ); t( "Parent Element", "div div", ["foo"] );
t( "Object/Param element", "#object1 param", ["param1", "param2"] ); ok( $("param", "#object1").length == 2, "Object/param as context" );
ok( $("param", $("#object1")[0]).length == 2, "Object/param as context" );
}); });
test("expressions - id", function() { test("expressions - id", function() {