1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
<!DOCTYPE html>
<html>
<head>
<title>Custom Elements: CEReactions on HTMLTableElement interface</title>
<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
<meta name="assert" content="caption, deleteCaption, thead, deleteTHead, tFoot, deleteTFoot, and deleteRow of HTMLTableElement interface must have CEReactions">
<meta name="help" content="https://dom.spec.whatwg.org/#node">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/custom-elements-helpers.js"></script>
<script src="./resources/reactions.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table></table>`;
const table = contentDocument.querySelector('table');
const caption = contentDocument.createElement('caption');
caption.innerHTML = '<custom-element>hello</custom-element>';
assert_array_equals(element.takeLog().types(), ['constructed']);
assert_equals(caption.innerHTML, '<custom-element>hello</custom-element>');
assert_equals(table.caption, null);
table.caption = caption;
assert_array_equals(element.takeLog().types(), ['connected']);
}, 'caption on HTMLTableElement must enqueue connectedCallback when inserting a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table><caption><custom-element>hello</custom-element></caption></table>`;
const caption = contentDocument.querySelector('caption');
assert_array_equals(element.takeLog().types(), ['constructed', 'connected']);
assert_equals(caption.innerHTML, '<custom-element>hello</custom-element>');
const table = contentDocument.querySelector('table');
assert_equals(table.caption, caption);
const newCaption = contentDocument.createElement('caption');
table.caption = newCaption; // Chrome doesn't support setting to null.
assert_equals(table.caption, newCaption);
assert_array_equals(element.takeLog().types(), ['disconnected']);
}, 'caption on HTMLTableElement must enqueue disconnectedCallback when removing a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table><caption><custom-element>hello</custom-element></caption></table>`;
const caption = contentDocument.querySelector('caption');
assert_array_equals(element.takeLog().types(), ['constructed', 'connected']);
assert_equals(caption.innerHTML, '<custom-element>hello</custom-element>');
const table = contentDocument.querySelector('table');
assert_equals(table.caption, caption);
const newCaption = contentDocument.createElement('caption');
table.deleteCaption();
assert_equals(table.caption, null);
assert_array_equals(element.takeLog().types(), ['disconnected']);
}, 'deleteCaption() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table></table>`;
const table = contentDocument.querySelector('table');
const thead = contentDocument.createElement('thead');
thead.innerHTML = '<tr><td><custom-element>hello</custom-element></td></tr>';
assert_array_equals(element.takeLog().types(), ['constructed']);
assert_equals(thead.innerHTML, '<tr><td><custom-element>hello</custom-element></td></tr>');
assert_equals(table.tHead, null);
table.tHead = thead;
assert_array_equals(element.takeLog().types(), ['connected']);
}, 'tHead on HTMLTableElement must enqueue connectedCallback when inserting a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table><thead><tr><td><custom-element>hello</custom-element></td></tr></thead></table>`;
const thead = contentDocument.querySelector('thead');
assert_array_equals(element.takeLog().types(), ['constructed', 'connected']);
assert_equals(thead.innerHTML, '<tr><td><custom-element>hello</custom-element></td></tr>');
const table = contentDocument.querySelector('table');
assert_equals(table.tHead, thead);
const newThead = contentDocument.createElement('thead');
table.tHead = newThead; // Chrome doesn't support setting to null.
assert_equals(table.tHead, newThead);
assert_array_equals(element.takeLog().types(), ['disconnected']);
}, 'tHead on HTMLTableElement must enqueue disconnectedCallback when removing a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table><thead><tr><td><custom-element>hello</custom-element></td></tr></thead></table>`;
const thead = contentDocument.querySelector('thead');
assert_array_equals(element.takeLog().types(), ['constructed', 'connected']);
assert_equals(thead.innerHTML, '<tr><td><custom-element>hello</custom-element></td></tr>');
const table = contentDocument.querySelector('table');
assert_equals(table.tHead, thead);
table.deleteTHead();
assert_equals(table.tHead, null);
assert_array_equals(element.takeLog().types(), ['disconnected']);
}, 'deleteTHead() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table></table>`;
const table = contentDocument.querySelector('table');
const tfoot = contentDocument.createElement('tfoot');
tfoot.innerHTML = '<tr><td><custom-element>hello</custom-element></td></tr>';
assert_array_equals(element.takeLog().types(), ['constructed']);
assert_equals(tfoot.innerHTML, '<tr><td><custom-element>hello</custom-element></td></tr>');
assert_equals(table.tFoot, null);
table.tFoot = tfoot;
assert_array_equals(element.takeLog().types(), ['connected']);
}, 'tFoot on HTMLTableElement must enqueue connectedCallback when inserting a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table><tfoot><tr><td><custom-element>hello</custom-element></td></tr></tfoot></table>`;
const tfoot = contentDocument.querySelector('tfoot');
assert_array_equals(element.takeLog().types(), ['constructed', 'connected']);
assert_equals(tfoot.innerHTML, '<tr><td><custom-element>hello</custom-element></td></tr>');
const table = contentDocument.querySelector('table');
assert_equals(table.tFoot, tfoot);
const newThead = contentDocument.createElement('tfoot');
table.tFoot = newThead; // Chrome doesn't support setting to null.
assert_equals(table.tFoot, newThead);
assert_array_equals(element.takeLog().types(), ['disconnected']);
}, 'tFoot on HTMLTableElement must enqueue disconnectedCallback when removing a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table><tfoot><tr><td><custom-element>hello</custom-element></td></tr></tfoot></table>`;
const tfoot = contentDocument.querySelector('tfoot');
assert_array_equals(element.takeLog().types(), ['constructed', 'connected']);
assert_equals(tfoot.innerHTML, '<tr><td><custom-element>hello</custom-element></td></tr>');
const table = contentDocument.querySelector('table');
assert_equals(table.tFoot, tfoot);
table.deleteTFoot();
assert_equals(table.tFoot, null);
assert_array_equals(element.takeLog().types(), ['disconnected']);
}, 'deleteTFoot() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element');
test_with_window(function (contentWindow, contentDocument) {
const element = define_custom_element_in_window(contentWindow, 'custom-element', []);
contentDocument.body.innerHTML = `<table><tr><td><custom-element>hello</custom-element></td></tr></table>`;
const tr = contentDocument.querySelector('tr');
assert_array_equals(element.takeLog().types(), ['constructed', 'connected']);
assert_equals(tr.innerHTML, '<td><custom-element>hello</custom-element></td>');
const table = contentDocument.querySelector('table');
assert_equals(table.rows.length, 1);
assert_equals(table.rows[0], tr);
table.deleteRow(0);
assert_equals(table.rows.length, 0);
assert_array_equals(element.takeLog().types(), ['disconnected']);
}, 'deleteRow() on HTMLTableElement must enqueue disconnectedCallback when removing a custom element');
</script>
</body>
</html>
|