Pass | Comment.before() without any argument. | Asserts runPass | assert_equals("<!--test-->", "<!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:15:9) |
|
Pass | Comment.before() with null as an argument. | Asserts runPass | assert_equals("null<!--test-->", "null<!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:23:9) |
|
Pass | Comment.before() with undefined as an argument. | Asserts runPass | assert_equals("undefined<!--test-->", "undefined<!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:31:9) |
|
Pass | Comment.before() with the empty string as an argument. | Asserts runPass | assert_equals("", "")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:38:9) |
|
Pass | Comment.before() with only text as an argument. | Asserts runPass | assert_equals("text<!--test-->", "text<!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:46:9) |
|
Pass | Comment.before() with only one element as an argument. | Asserts runPass | assert_equals("<x></x><!--test-->", "<x></x><!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:55:9) |
|
Pass | Comment.before() with one element and text as arguments. | Asserts runPass | assert_equals("<x></x>text<!--test-->", "<x></x>text<!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:64:9) |
|
Pass | Comment.before() with context object itself as the argument. | Asserts runPass | assert_equals("text<!--test-->", "text<!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:72:9) |
|
Pass | Comment.before() with context object itself and node as the arguments, switching positions. | Asserts runPass | assert_equals("<x></x><!--test-->", "<x></x><!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:82:9) |
|
Pass | Comment.before() with all siblings of child as arguments. | Asserts runPass | assert_equals("<x></x><y></y><z></z><!--test-->", "<x></x><y></y><z></z><!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:95:9) |
|
Pass | Comment.before() with some siblings of child as arguments; no changes in tree; viable sibling is first child. | Asserts runPass | assert_equals("<x></x><y></y><z></z><!--test-->", "<x></x><y></y><z></z><!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:109:9) |
|
Pass | Comment.before() with some siblings of child as arguments; no changes in tree. | Asserts runPass | assert_equals("<v></v><x></x><y></y><z></z><!--test-->", "<v></v><x></x><y></y><z></z><!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:125:9) |
|
Pass | Comment.before() when pre-insert behaves like prepend. | Asserts runPass | assert_equals("<y></y><x></x><!--test-->", "<y></y><x></x><!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:137:9) |
|
Pass | Comment.before() with one sibling of child and text as arguments. | Asserts runPass | assert_equals("1<y></y><x></x>2<!--test-->", "1<y></y><x></x>2<!--test-->")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:150:9) |
|
Pass | Comment.before() on a child without any parent. | Asserts runPass | assert_equals(null, null)
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:157:9) |
|
Pass | Element.before() without any argument. | Asserts runPass | assert_equals("<test></test>", "<test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:15:9) |
|
Pass | Element.before() with null as an argument. | Asserts runPass | assert_equals("null<test></test>", "null<test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:23:9) |
|
Pass | Element.before() with undefined as an argument. | Asserts runPass | assert_equals("undefined<test></test>", "undefined<test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:31:9) |
|
Pass | Element.before() with the empty string as an argument. | Asserts runPass | assert_equals("", "")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:38:9) |
|
Pass | Element.before() with only text as an argument. | Asserts runPass | assert_equals("text<test></test>", "text<test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:46:9) |
|
Pass | Element.before() with only one element as an argument. | Asserts runPass | assert_equals("<x></x><test></test>", "<x></x><test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:55:9) |
|
Pass | Element.before() with one element and text as arguments. | Asserts runPass | assert_equals("<x></x>text<test></test>", "<x></x>text<test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:64:9) |
|
Pass | Element.before() with context object itself as the argument. | Asserts runPass | assert_equals("text<test></test>", "text<test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:72:9) |
|
Pass | Element.before() with context object itself and node as the arguments, switching positions. | Asserts runPass | assert_equals("<x></x><test></test>", "<x></x><test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:82:9) |
|
Pass | Element.before() with all siblings of child as arguments. | Asserts runPass | assert_equals("<x></x><y></y><z></z><test></test>", "<x></x><y></y><z></z><test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:95:9) |
|
Pass | Element.before() with some siblings of child as arguments; no changes in tree; viable sibling is first child. | Asserts runPass | assert_equals("<x></x><y></y><z></z><test></test>", "<x></x><y></y><z></z><test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:109:9) |
|
Pass | Element.before() with some siblings of child as arguments; no changes in tree. | Asserts runPass | assert_equals("<v></v><x></x><y></y><z></z><test></test>", "<v></v><x></x><y></y><z></z><test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:125:9) |
|
Pass | Element.before() when pre-insert behaves like prepend. | Asserts runPass | assert_equals("<y></y><x></x><test></test>", "<y></y><x></x><test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:137:9) |
|
Pass | Element.before() with one sibling of child and text as arguments. | Asserts runPass | assert_equals("1<y></y><x></x>2<test></test>", "1<y></y><x></x>2<test></test>")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:150:9) |
|
Pass | Element.before() on a child without any parent. | Asserts runPass | assert_equals(null, null)
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:157:9) |
|
Pass | Text.before() without any argument. | Asserts runPass | assert_equals("test", "test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:15:9) |
|
Pass | Text.before() with null as an argument. | Asserts runPass | assert_equals("nulltest", "nulltest")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:23:9) |
|
Pass | Text.before() with undefined as an argument. | Asserts runPass | assert_equals("undefinedtest", "undefinedtest")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:31:9) |
|
Pass | Text.before() with the empty string as an argument. | Asserts runPass | assert_equals("", "")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:38:9) |
|
Pass | Text.before() with only text as an argument. | Asserts runPass | assert_equals("texttest", "texttest")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:46:9) |
|
Pass | Text.before() with only one element as an argument. | Asserts runPass | assert_equals("<x></x>test", "<x></x>test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:55:9) |
|
Pass | Text.before() with one element and text as arguments. | Asserts runPass | assert_equals("<x></x>texttest", "<x></x>texttest")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:64:9) |
|
Pass | Text.before() with context object itself as the argument. | Asserts runPass | assert_equals("texttest", "texttest")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:72:9) |
|
Pass | Text.before() with context object itself and node as the arguments, switching positions. | Asserts runPass | assert_equals("<x></x>test", "<x></x>test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:82:9) |
|
Pass | Text.before() with all siblings of child as arguments. | Asserts runPass | assert_equals("<x></x><y></y><z></z>test", "<x></x><y></y><z></z>test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:95:9) |
|
Pass | Text.before() with some siblings of child as arguments; no changes in tree; viable sibling is first child. | Asserts runPass | assert_equals("<x></x><y></y><z></z>test", "<x></x><y></y><z></z>test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:109:9) |
|
Pass | Text.before() with some siblings of child as arguments; no changes in tree. | Asserts runPass | assert_equals("<v></v><x></x><y></y><z></z>test", "<v></v><x></x><y></y><z></z>test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:125:9) |
|
Pass | Text.before() when pre-insert behaves like prepend. | Asserts runPass | assert_equals("<y></y><x></x>test", "<y></y><x></x>test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:137:9) |
|
Pass | Text.before() with one sibling of child and text as arguments. | Asserts runPass | assert_equals("1<y></y><x></x>2test", "1<y></y><x></x>2test")
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:150:9) |
|
Pass | Text.before() on a child without any parent. | Asserts runPass | assert_equals(null, null)
at Test.<anonymous> ( /dom/nodes/ChildNode-before.html:157:9) |
|