Home | History | Annotate | Download | only in script-tests

Lines Matching full:shouldbe

20 shouldBe("attributes.length", "1");
21 shouldBe("attributes[0]", "attributes.item(0)");
22 shouldBe("attributes.getNamedItem('a')", "attributes.item(0)");
24 shouldBe("attributes.item(0).name", "'a'");
25 shouldBe("attributes.item(0).specified", "true");
26 shouldBe("attributes.item(0).value", "'b'");
27 shouldBe("attributes.item(0).ownerElement.tagName", "'P'");
31 shouldBe("attributes.item(0).value", "'c'");
35 shouldBe("attributes.length", "0");
44 shouldBe("attr.name", "'a'");
45 shouldBe("attr.specified", "true");
46 shouldBe("attr.value", "'b'");
47 shouldBe("attr.ownerElement.tagName", "'P'");
51 shouldBe("attr.value", "'c'");