| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset=utf-8> | 2 <meta charset=utf-8> |
| 3 <title>ParentNode.append</title> | 3 <title>ParentNode.append</title> |
| 4 <link rel=help href="https://dom.spec.whatwg.org/#dom-parentnode-append"> | 4 <link rel=help href="https://dom.spec.whatwg.org/#dom-parentnode-append"> |
| 5 <script src="../../../../resources/testharness.js"></script> | 5 <script src="/resources/testharness.js"></script> |
| 6 <script src="../../../../resources/testharnessreport.js"></script> | 6 <script src="/resources/testharnessreport.js"></script> |
| 7 <script> | 7 <script> |
| 8 | 8 |
| 9 function test_append(node, nodeName) { | 9 function test_append(node, nodeName) { |
| 10 | 10 |
| 11 test(function() { | 11 test(function() { |
| 12 var parent = node.cloneNode(); | 12 var parent = node.cloneNode(); |
| 13 parent.append(); | 13 parent.append(); |
| 14 assert_array_equals(parent.childNodes, []); | 14 assert_array_equals(parent.childNodes, []); |
| 15 }, nodeName + '.append() without any argument, on a parent having no child.'
); | 15 }, nodeName + '.append() without any argument, on a parent having no child.'
); |
| 16 | 16 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 assert_equals(parent.childNodes[0], child); | 57 assert_equals(parent.childNodes[0], child); |
| 58 assert_equals(parent.childNodes[1], x); | 58 assert_equals(parent.childNodes[1], x); |
| 59 assert_equals(parent.childNodes[2].textContent, 'text'); | 59 assert_equals(parent.childNodes[2].textContent, 'text'); |
| 60 }, nodeName + '.append() with one element and text as argument, on a parent
having a child.'); | 60 }, nodeName + '.append() with one element and text as argument, on a parent
having a child.'); |
| 61 } | 61 } |
| 62 | 62 |
| 63 test_append(document.createElement('div'), 'Element'); | 63 test_append(document.createElement('div'), 'Element'); |
| 64 test_append(document.createDocumentFragment(), 'DocumentFrgment'); | 64 test_append(document.createDocumentFragment(), 'DocumentFrgment'); |
| 65 </script> | 65 </script> |
| 66 </html> | 66 </html> |
| OLD | NEW |