Changeset 216259 in webkit
- Timestamp:
- May 5, 2017, 12:26:11 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 183 deleted
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r216254 r216259 1 2017-05-05 Chris Dumez <cdumez@apple.com> 2 3 Attr Nodes should not have children 4 https://bugs.webkit.org/show_bug.cgi?id=171688 5 <rdar://problem/31998412> 6 7 Reviewed by Andreas Kling. 8 9 * fast/dom/Attr/cannot-have-children-expected.txt: Added. 10 * fast/dom/Attr/cannot-have-children.html: Added. 11 Add layout test coverage. I have verified that this test passes in both 12 Firefox and Chrome. 13 14 * dom/html/level1/*: Removed legacy / outdated tests. 15 * dom/xhtml/level1/*: Removed legacy / outdated tests. 16 17 * fast/dom/Attr/child-nodes-cache-expected.txt: Removed. 18 * fast/dom/Attr/child-nodes-cache.html: Removed. 19 * fast/dom/Attr/child-nodes-length-cache-expected.txt: Removed. 20 * fast/dom/Attr/child-nodes-length-cache.html: Removed. 21 * fast/dom/Attr/invalidate-nodelist-after-attr-setvalue-expected.txt: Removed. 22 * fast/dom/Attr/invalidate-nodelist-after-attr-setvalue.html: Removed. 23 * fast/dom/attribute-change-on-mutate-expected.txt: Removed. 24 * fast/dom/attribute-change-on-mutate.html: Removed. 25 * svg/custom/image-with-attr-change-after-delete-crash-expected.txt: Removed. 26 * svg/custom/image-with-attr-change-after-delete-crash.html: Removed. 27 * traversal/moz-bug590771-expected.txt: Removed. 28 * traversal/moz-bug590771.html: Removed. 29 Removed some outdated tests. 30 31 * fast/custom-elements/reactions-for-webkit-extensions-expected.txt: 32 * fast/custom-elements/reactions-for-webkit-extensions.html: 33 * fast/dom/Attr/change-id-via-attr-node-value-expected.txt: 34 * fast/dom/Attr/change-id-via-attr-node-value.html: 35 * fast/dom/Element/normalize-crash.html: 36 * fast/dom/Element/normalize-crash2.html: 37 * fast/dom/HTMLLinkElement/event-while-removing-attribute-expected.txt: 38 * fast/dom/HTMLLinkElement/event-while-removing-attribute.html: 39 * fast/dom/MutationObserver/observe-attributes-expected.txt: 40 * fast/dom/MutationObserver/observe-attributes.html: 41 * fast/dom/import-attribute-node.html: 42 * fast/dom/insertedIntoDocument-child.html: 43 * fast/dom/insertedIntoDocument-sibling.html: 44 * fast/dom/no-assert-for-malformed-js-url-attribute-expected.txt: 45 * fast/dom/no-assert-for-malformed-js-url-attribute.html: 46 * fast/dom/normalize-attributes-mutation-event-crash.html: 47 * fast/dom/serialize-nodes.xhtml: 48 * http/tests/security/xss-DENIED-iframe-src-alias-expected.txt: 49 Update existing tests so they stop relying on Attr Node having Text children. 50 1 51 2017-05-05 Ryan Haddad <ryanhaddad@apple.com> 2 52 -
trunk/LayoutTests/fast/custom-elements/reactions-for-webkit-extensions-expected.txt
r208082 r216259 4 4 PASS data on CharacterData must enqueue an attributeChanged reaction when replacing an existing attribute 5 5 PASS data on CharacterData must not enqueue an attributeChanged reaction when replacing an existing unobserved attribute 6 PASS appendData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute7 PASS insertData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute8 PASS deleteData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute9 PASS replaceData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute10 6 PASS remove(HTMLOptionElement) on HTMLOptionsCollection must enqueue disconnectedCallback when removing a custom element 11 7 PASS remove(HTMLOptionElement) on HTMLSelectElement must enqueue disconnectedCallback when removing a custom element -
trunk/LayoutTests/fast/custom-elements/reactions-for-webkit-extensions.html
r208360 r216259 18 18 19 19 testAttributeMutator(function (element, name, value) { 20 element.attributes[name]. firstChild.data= value;20 element.attributes[name].value = value; 21 21 }, 'data on CharacterData'); 22 23 test(function () {24 var element = define_new_custom_element(['title']);25 var instance = document.createElement(element.name);26 instance.setAttribute('title', 'hello');27 assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);28 instance.attributes.title.firstChild.appendData(' world');29 var logEntries = element.takeLog();30 assert_array_equals(logEntries.types(), ['attributeChanged']);31 assert_attribute_log_entry(logEntries.last(), {name: 'title', oldValue: 'hello', newValue: 'hello world', namespace: null});32 }, 'appendData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute');33 34 test(function () {35 var element = define_new_custom_element(['title']);36 var instance = document.createElement(element.name);37 instance.setAttribute('title', 'foo');38 assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);39 instance.attributes.title.firstChild.insertData(2, 'bar');40 var logEntries = element.takeLog();41 assert_array_equals(logEntries.types(), ['attributeChanged']);42 assert_attribute_log_entry(logEntries.last(), {name: 'title', oldValue: 'foo', newValue: 'fobaro', namespace: null});43 }, 'insertData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute');44 45 test(function () {46 var element = define_new_custom_element(['title']);47 var instance = document.createElement(element.name);48 instance.setAttribute('title', 'hello world');49 assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);50 instance.attributes.title.firstChild.deleteData(5, 100);51 var logEntries = element.takeLog();52 assert_array_equals(logEntries.types(), ['attributeChanged']);53 assert_attribute_log_entry(logEntries.last(), {name: 'title', oldValue: 'hello world', newValue: 'hello', namespace: null});54 }, 'deleteData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute');55 56 test(function () {57 var element = define_new_custom_element(['title']);58 var instance = document.createElement(element.name);59 instance.setAttribute('title', 'hello');60 assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);61 instance.attributes.title.firstChild.replaceData(1, 4, 'i');62 var logEntries = element.takeLog();63 assert_array_equals(logEntries.types(), ['attributeChanged']);64 assert_attribute_log_entry(logEntries.last(), {name: 'title', oldValue: 'hello', newValue: 'hi', namespace: null});65 }, 'replaceData on CharacterData must enqueue an attributeChangedCallback when mutating an existing attribute');66 22 67 23 test_with_window(function (contentWindow) { -
trunk/LayoutTests/fast/dom/Attr/change-id-via-attr-node-value-expected.txt
r211395 r216259 36 36 PASS document.body.getAttribute("id") is "f" 37 37 PASS attrNode.textContent is "f" 38 PASS attrNode.childNodes.length is 138 PASS attrNode.childNodes.length is 0 39 39 40 7. Attr.replaceChild(). 41 PASS document.getElementById("f") is null 42 PASS document.getElementById("g") is document.body 43 PASS document.body.id is "g" 44 PASS document.body.getAttribute("id") is "g" 45 PASS attrNode.textContent is "g" 46 PASS attrNode.childNodes.length is 1 47 48 8. Attr.insertBefore(). 49 PASS document.getElementById("g") is null 50 PASS document.getElementById("0g") is document.body 51 PASS document.body.id is "0g" 52 PASS document.body.getAttribute("id") is "0g" 53 PASS attrNode.textContent is "0g" 54 PASS attrNode.childNodes.length is 2 55 56 9. attr.appendChild(). 57 PASS document.getElementById("0g") is null 58 PASS document.getElementById("0g2") is document.body 59 PASS document.body.id is "0g2" 60 PASS document.body.getAttribute("id") is "0g2" 61 PASS attrNode.textContent is "0g2" 62 PASS attrNode.childNodes.length is 3 63 64 10. Attr.removeChild() 65 PASS document.body.getAttributeNode("id").childNodes.length is 0 66 PASS document.getElementById("h") is null 67 PASS document.getElementById("") is null 68 PASS document.body.id is "" 69 PASS document.body.getAttribute("id") is "" 70 PASS document.body.getAttributeNode("id").textContent is "" 71 72 11. Changing Text.nodeValue. 73 PASS attrNode.firstChild.nodeValue is "i" 74 PASS document.getElementById("i") is document.body 75 PASS document.body.id is "i" 76 PASS document.body.getAttribute("id") is "i" 77 PASS attrNode.textContent is "i" 78 PASS attrNode.childNodes.length is 1 79 80 12. Chnaging Attr.textContent. 40 7. Changing Attr.textContent. 81 41 PASS document.getElementById("i") is null 82 42 PASS document.getElementById("hi") is document.body … … 84 44 PASS document.body.getAttribute("id") is "hi" 85 45 PASS attrNode.textContent is "hi" 86 PASS attrNode.childNodes.length is 146 PASS attrNode.childNodes.length is 0 87 47 88 13. Text.splitText().48 8. Node.normalize(), joining text nodes. 89 49 PASS document.getElementById("hi") is document.body 90 50 PASS document.body.id is "hi" 91 51 PASS document.body.getAttribute("id") is "hi" 92 52 PASS document.body.getAttributeNode("id").textContent is "hi" 93 PASS document.body.getAttributeNode("id").childNodes.length is 253 PASS document.body.getAttributeNode("id").childNodes.length is 0 94 54 95 14. Node.normalize(), joining text nodes. 96 PASS document.getElementById("hi") is document.body 97 PASS document.body.id is "hi" 98 PASS document.body.getAttribute("id") is "hi" 99 PASS document.body.getAttributeNode("id").textContent is "hi" 100 PASS document.body.getAttributeNode("id").childNodes.length is 1 101 102 16. Changing Text.data. 103 PASS document.getElementById("j") is null 104 PASS document.getElementById("k") is document.body 105 PASS document.body.id is "k" 106 PASS document.body.getAttribute("id") is "k" 107 PASS attrNode.textContent is "k" 108 PASS attrNode.childNodes.length is 1 109 110 17. Changing text child with appendData(). 111 PASS document.getElementById("k") is null 112 PASS document.getElementById("kl") is document.body 113 PASS document.body.id is "kl" 114 PASS document.body.getAttribute("id") is "kl" 115 PASS attrNode.textContent is "kl" 116 PASS attrNode.childNodes.length is 1 117 118 18. Changing text child with insertData(). 119 PASS document.getElementById("kl") is null 120 PASS document.getElementById("k1l") is document.body 121 PASS document.body.id is "k1l" 122 PASS document.body.getAttribute("id") is "k1l" 123 PASS attrNode.textContent is "k1l" 124 PASS attrNode.childNodes.length is 1 125 126 19. Changing text child with deleteData(). 127 PASS document.getElementById("k1l") is null 128 PASS document.getElementById("l") is document.body 129 PASS document.body.id is "l" 130 PASS document.body.getAttribute("id") is "l" 131 PASS attrNode.textContent is "l" 132 PASS attrNode.childNodes.length is 1 133 134 20. Changing text child with replaceData(). 135 PASS document.getElementById("l") is null 136 PASS document.getElementById("mn") is document.body 137 PASS document.body.id is "mn" 138 PASS document.body.getAttribute("id") is "mn" 139 PASS attrNode.textContent is "mn" 140 PASS attrNode.childNodes.length is 1 141 142 21. Remove an Attr node. 55 9. Remove an Attr node. 143 56 PASS document.body.id is "" 144 57 PASS document.getElementById("mn") is null … … 146 59 PASS document.body.getAttributeNode("id") is null 147 60 148 22. Add an Attr node.61 10. Add an Attr node. 149 62 PASS document.getElementById("o") is document.body 150 63 PASS document.body.id is "o" 151 64 PASS document.body.getAttribute("id") is "o" 152 65 153 23. Add an Attr node over an existing one.66 11. Add an Attr node over an existing one. 154 67 PASS document.getElementById("o") is null 155 68 PASS document.getElementById("p") is document.body -
trunk/LayoutTests/fast/dom/Attr/change-id-via-attr-node-value.html
r211395 r216259 47 47 shouldBe('document.body.getAttribute("id")', '"f"'); 48 48 shouldBe('attrNode.textContent', '"f"'); 49 shouldBe('attrNode.childNodes.length', ' 1');49 shouldBe('attrNode.childNodes.length', '0'); 50 50 51 // Firefox doesn't support these for Attr nodes. 52 debug("\n7. Attr.replaceChild()."); 53 try { 54 attrNode.replaceChild(document.createTextNode("g"), attrNode.firstChild); 55 shouldBe('document.getElementById("f")', 'null'); 56 shouldBe('document.getElementById("g")', 'document.body'); 57 shouldBe('document.body.id', '"g"'); 58 shouldBe('document.body.getAttribute("id")', '"g"'); 59 shouldBe('attrNode.textContent', '"g"'); 60 shouldBe('attrNode.childNodes.length', '1'); 61 } catch (ex) { 62 debug(ex); 63 } 64 65 debug("\n8. Attr.insertBefore()."); 66 try { 67 attrNode.insertBefore(document.createTextNode("0"), attrNode.firstChild); 68 shouldBe('document.getElementById("g")', 'null'); 69 shouldBe('document.getElementById("0g")', 'document.body'); 70 shouldBe('document.body.id', '"0g"'); 71 shouldBe('document.body.getAttribute("id")', '"0g"'); 72 shouldBe('attrNode.textContent', '"0g"'); 73 shouldBe('attrNode.childNodes.length', '2'); 74 } catch (ex) { 75 debug(ex); 76 } 77 78 debug("\n9. attr.appendChild()."); 79 try { 80 attrNode.appendChild(document.createTextNode("2")); 81 shouldBe('document.getElementById("0g")', 'null'); 82 shouldBe('document.getElementById("0g2")', 'document.body'); 83 shouldBe('document.body.id', '"0g2"'); 84 shouldBe('document.body.getAttribute("id")', '"0g2"'); 85 shouldBe('attrNode.textContent', '"0g2"'); 86 shouldBe('attrNode.childNodes.length', '3'); 87 } catch (ex) { 88 debug(ex); 89 } 90 91 debug("\n10. Attr.removeChild()"); 92 attrNode.nodeValue = "h"; 93 attrNode.removeChild(attrNode.firstChild); 94 shouldBe('document.body.getAttributeNode("id").childNodes.length', '0'); 95 shouldBe('document.getElementById("h")', 'null'); 96 shouldBe('document.getElementById("")', 'null'); 97 shouldBe('document.body.id', '""'); 98 shouldBe('document.body.getAttribute("id")', '""'); 99 shouldBe('document.body.getAttributeNode("id").textContent', '""'); 100 101 debug("\n11. Changing Text.nodeValue."); 102 attrNode.nodeValue = "h"; 103 attrNode.firstChild.nodeValue = "i"; 104 shouldBe('attrNode.firstChild.nodeValue', '"i"'); 105 shouldBe('document.getElementById("i")', 'document.body'); 106 shouldBe('document.body.id', '"i"'); 107 shouldBe('document.body.getAttribute("id")', '"i"'); 108 shouldBe('attrNode.textContent', '"i"'); 109 shouldBe('attrNode.childNodes.length', '1'); 110 111 debug("\n12. Chnaging Attr.textContent."); 51 debug("\n7. Changing Attr.textContent."); 112 52 attrNode.textContent = "hi"; 113 53 shouldBe('document.getElementById("i")', 'null'); … … 116 56 shouldBe('document.body.getAttribute("id")', '"hi"'); 117 57 shouldBe('attrNode.textContent', '"hi"'); 118 shouldBe('attrNode.childNodes.length', ' 1');58 shouldBe('attrNode.childNodes.length', '0'); 119 59 120 debug("\n13. Text.splitText()."); 121 attrNode.firstChild.splitText(1); 122 shouldBe('document.getElementById("hi")', 'document.body'); 123 shouldBe('document.body.id', '"hi"'); 124 shouldBe('document.body.getAttribute("id")', '"hi"'); 125 shouldBe('document.body.getAttributeNode("id").textContent', '"hi"'); 126 shouldBe('document.body.getAttributeNode("id").childNodes.length', '2'); 127 128 debug("\n14. Node.normalize(), joining text nodes."); 60 debug("\n8. Node.normalize(), joining text nodes."); 129 61 attrNode.normalize(); 130 62 shouldBe('document.getElementById("hi")', 'document.body'); … … 132 64 shouldBe('document.body.getAttribute("id")', '"hi"'); 133 65 shouldBe('document.body.getAttributeNode("id").textContent', '"hi"'); 134 shouldBe('document.body.getAttributeNode("id").childNodes.length', ' 1');66 shouldBe('document.body.getAttributeNode("id").childNodes.length', '0'); 135 67 136 debug("\n16. Changing Text.data."); 137 attrNode.firstChild.data = "k"; 138 shouldBe('document.getElementById("j")', 'null'); 139 shouldBe('document.getElementById("k")', 'document.body'); 140 shouldBe('document.body.id', '"k"'); 141 shouldBe('document.body.getAttribute("id")', '"k"'); 142 shouldBe('attrNode.textContent', '"k"'); 143 shouldBe('attrNode.childNodes.length', '1'); 144 145 debug("\n17. Changing text child with appendData()."); 146 attrNode.firstChild.appendData("l"); 147 shouldBe('document.getElementById("k")', 'null'); 148 shouldBe('document.getElementById("kl")', 'document.body'); 149 shouldBe('document.body.id', '"kl"'); 150 shouldBe('document.body.getAttribute("id")', '"kl"'); 151 shouldBe('attrNode.textContent', '"kl"'); 152 shouldBe('attrNode.childNodes.length', '1'); 153 154 debug("\n18. Changing text child with insertData()."); 155 attrNode.firstChild.insertData(1, "1"); 156 shouldBe('document.getElementById("kl")', 'null'); 157 shouldBe('document.getElementById("k1l")', 'document.body'); 158 shouldBe('document.body.id', '"k1l"'); 159 shouldBe('document.body.getAttribute("id")', '"k1l"'); 160 shouldBe('attrNode.textContent', '"k1l"'); 161 shouldBe('attrNode.childNodes.length', '1'); 162 163 debug("\n19. Changing text child with deleteData()."); 164 attrNode.firstChild.deleteData(0, 2); 165 shouldBe('document.getElementById("k1l")', 'null'); 166 shouldBe('document.getElementById("l")', 'document.body'); 167 shouldBe('document.body.id', '"l"'); 168 shouldBe('document.body.getAttribute("id")', '"l"'); 169 shouldBe('attrNode.textContent', '"l"'); 170 shouldBe('attrNode.childNodes.length', '1'); 171 172 debug("\n20. Changing text child with replaceData()."); 173 attrNode.firstChild.replaceData(0, 1, "mn"); 174 shouldBe('document.getElementById("l")', 'null'); 175 shouldBe('document.getElementById("mn")', 'document.body'); 176 shouldBe('document.body.id', '"mn"'); 177 shouldBe('document.body.getAttribute("id")', '"mn"'); 178 shouldBe('attrNode.textContent', '"mn"'); 179 shouldBe('attrNode.childNodes.length', '1'); 180 181 debug("\n21. Remove an Attr node."); 68 debug("\n9. Remove an Attr node."); 182 69 document.body.removeAttributeNode(attrNode); 183 70 shouldBe('document.body.id', '""'); … … 186 73 shouldBe('document.body.getAttributeNode("id")', 'null'); 187 74 188 debug("\n 22. Add an Attr node.");75 debug("\n10. Add an Attr node."); 189 76 var attrNode = document.createAttribute("id"); 190 77 attrNode.value = "o"; … … 194 81 shouldBe('document.body.getAttribute("id")', '"o"'); 195 82 196 debug("\n 23. Add an Attr node over an existing one.");83 debug("\n11. Add an Attr node over an existing one."); 197 84 var attrNode = document.createAttribute("id"); 198 85 attrNode.value = "p"; -
trunk/LayoutTests/fast/dom/Element/normalize-crash.html
r120792 r216259 21 21 22 22 elem.setAttribute("b", "a"); 23 elem.attributes[0].appendChild(document.createTextNode("hi")); 23 try { 24 elem.attributes[0].appendChild(document.createTextNode("hi")); 25 } catch(e) { 26 } 24 27 elem.attributes[0].addEventListener("DOMSubtreeModified", handler, false); 25 28 elem.normalize(); -
trunk/LayoutTests/fast/dom/Element/normalize-crash2.html
r178363 r216259 6 6 7 7 var testDiv = document.getElementById("testDiv"); 8 testDiv.attributes[0].appendChild(new Text("test")); 8 9 try { 10 testDiv.attributes[0].appendChild(new Text("test")); 11 } catch (e) { 12 } 13 9 14 testDiv.cloneNode(false); 10 15 gc(); -
trunk/LayoutTests/fast/dom/HTMLLinkElement/event-while-removing-attribute-expected.txt
r215787 r216259 7 7 PASS Before load event handled for original link element. 8 8 PASS Before load event handled for original link element. 9 PASS Before load event handled for original link element.10 9 PASS successfullyParsed is true 11 10 -
trunk/LayoutTests/fast/dom/HTMLLinkElement/event-while-removing-attribute.html
r215787 r216259 29 29 30 30 var relAttr = origLink.getAttributeNode('rel'); 31 var textNode = relAttr.childNodes[0]; 32 33 var newTextNode = document.createTextNode("author"); 34 35 relAttr.replaceChild(newTextNode, textNode); 31 relAttr.value = "author"; 36 32 37 33 setTimeout(step2, 0); -
trunk/LayoutTests/fast/dom/MutationObserver/observe-attributes-expected.txt
r137662 r216259 191 191 PASS mutations[0].oldValue is "foo" 192 192 193 Test that mutating an attribute by attaching a child to an attr node delivers mutation records194 PASS mutations.length is 1195 PASS mutations[0].target is div196 PASS mutations[0].type is "attributes"197 PASS mutations[0].attributeName is "data-test"198 PASS mutations[0].oldValue is "foo"199 200 193 Test that mutating via setAttributeNode delivers mutation records 201 194 PASS mutations.length is 3 -
trunk/LayoutTests/fast/dom/MutationObserver/observe-attributes.html
r203941 r216259 785 785 observer.observe(div, { attributes: true, attributeOldValue: true }); 786 786 div.attributes['data-test'].value = 'bar'; 787 788 setTimeout(finish, 0);789 }790 791 function finish() {792 shouldBe('mutations.length', '1');793 shouldBe('mutations[0].target', 'div');794 shouldBe('mutations[0].type', '"attributes"');795 shouldBe('mutations[0].attributeName', '"data-test"');796 shouldBe('mutations[0].oldValue', '"foo"');797 798 observer.disconnect();799 debug('');800 runNextTest();801 }802 803 start();804 }805 806 function testMutateThroughAttrNodeChild() {807 var observer;808 809 function start() {810 debug('Test that mutating an attribute by attaching a child to an attr node delivers mutation records');811 812 mutations = null;813 observer = new MutationObserver(function(mutations) {814 window.mutations = mutations;815 });816 817 div = document.createElement('div');818 div.setAttribute('data-test', 'foo');819 observer.observe(div, { attributes: true, attributeOldValue: true });820 div.attributes['data-test'].appendChild(document.createTextNode('bar'));821 787 822 788 setTimeout(finish, 0); … … 984 950 testStyleAttributePropertyAccessIgnoreNoop, 985 951 testMutateThroughAttrNodeValue, 986 testMutateThroughAttrNodeChild,987 952 testSetAndRemoveAttributeNode, 988 953 testMixedNodeAndElementOperations, -
trunk/LayoutTests/fast/dom/import-attribute-node.html
r120792 r216259 13 13 14 14 var importedNode = xmld2.importNode(srcElem.attributes["test"], false); 15 if (importedNode. firstChild.nodeValue != "baz")16 throw "wrong imported attribute child: '" + importedNode. firstChild.nodeValue + "'";15 if (importedNode.nodeValue != "baz") 16 throw "wrong imported attribute child: '" + importedNode.nodeValue + "'"; 17 17 18 18 dstElem.setAttributeNode(importedNode); -
trunk/LayoutTests/fast/dom/insertedIntoDocument-child.html
r120792 r216259 29 29 attr = document.createAttribute("width"); 30 30 object.setAttributeNode(attr); 31 attr.appendChild(document.createTextNode(1)); 32 attr.childNodes[0].addEventListener("DOMNodeRemoved", handler, false); 31 attr.value = "1"; 33 32 34 33 embed = document.createElement("embed"); -
trunk/LayoutTests/fast/dom/insertedIntoDocument-sibling.html
r120792 r216259 31 31 attr = document.createAttribute("width"); 32 32 object.setAttributeNode(attr); 33 attr.appendChild(document.createTextNode(1)); 34 attr.childNodes[0].addEventListener("DOMNodeRemoved", handler, false); 33 attr.value += "1"; 35 34 36 35 document.body.appendChild(object); -
trunk/LayoutTests/fast/dom/no-assert-for-malformed-js-url-attribute-expected.txt
r214915 r216259 1 CONSOLE MESSAGE: line 1 : SyntaxError: Unexpected identifier 'orem'1 CONSOLE MESSAGE: line 14: SyntaxError: Unexpected identifier 'orem' 2 2 This tests that we do not assert when a malformed JS URL is passed to the 'src' attribute of an iframe. The test passes if it does not ASSERT. 3 3 -
trunk/LayoutTests/fast/dom/no-assert-for-malformed-js-url-attribute.html
r214915 r216259 12 12 { 13 13 var testFrame1 = document.getElementById('testFrame1'); 14 testFrame1.getAttributeNode("src"). firstChild.appendData("missingFunction(this) orem ipsum dosolorem");14 testFrame1.getAttributeNode("src").value += "missingFunction(this) orem ipsum dosolorem"; 15 15 16 16 var testFrame2 = document.getElementById('testFrame2'); 17 testFrame2.getAttributeNode("src"). firstChild.appendData("javascript:missingFunction(this) orem ipsum dosolorem");17 testFrame2.getAttributeNode("src").value += "javascript:missingFunction(this) orem ipsum dosolorem"; 18 18 } 19 19 </script> -
trunk/LayoutTests/fast/dom/normalize-attributes-mutation-event-crash.html
r203535 r216259 13 13 el.setAttribute('a', 'a') 14 14 el.setAttribute('b', 'b') 15 el.attributes[1]. appendChild(document.createTextNode("test"))15 el.attributes[1].value += "test" 16 16 el.attributes[1].addEventListener('DOMSubtreeModified', function() { el.removeAttribute('b') }, false) 17 17 el.normalize() -
trunk/LayoutTests/fast/dom/serialize-nodes.xhtml
r120792 r216259 29 29 c.setAttributeNS("urn:bar-ns", "bar:name", "two"); 30 30 var attr = d.createAttributeNS(null, "name"); 31 var text = d.createTextNode("three"); 32 attr.appendChild(text); 31 attr.value += "three"; 33 32 c.setAttributeNode(attr); 34 33 -
trunk/LayoutTests/http/tests/security/xss-DENIED-iframe-src-alias-expected.txt
r204236 r216259 1 CONSOLE MESSAGE: line 85: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match.2 1 CONSOLE MESSAGE: line 85: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match. 3 2 CONSOLE MESSAGE: line 85: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match. … … 8 7 CONSOLE MESSAGE: line 31: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match. 9 8 CONSOLE MESSAGE: line 36: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match. 10 CONSOLE MESSAGE: line 42: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match.11 CONSOLE MESSAGE: line 46: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match.12 CONSOLE MESSAGE: line 52: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match.13 CONSOLE MESSAGE: line 60: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match.14 CONSOLE MESSAGE: line 64: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match.15 9 CONSOLE MESSAGE: line 70: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match. 16 10 CONSOLE MESSAGE: line 75: Blocked a frame with origin "http://127.0.0.1:8000" from accessing a frame with origin "http://localhost:8080". Protocols, domains, and ports must match. -
trunk/Source/WebCore/ChangeLog
r216258 r216259 1 2017-05-05 Chris Dumez <cdumez@apple.com> 2 3 Attr Nodes should not have children 4 https://bugs.webkit.org/show_bug.cgi?id=171688 5 <rdar://problem/31998412> 6 7 Reviewed by Andreas Kling. 8 9 Attr Nodes should not have children as per the latest DOM specification: 10 - https://dom.spec.whatwg.org/#interface-attr 11 - https://dom.spec.whatwg.org/#dom-attr-value 12 - https://dom.spec.whatwg.org/#concept-node-ensure-pre-insertion-validity (Step 1) 13 14 Firefox and Chrome both have been matching the DOM specification for a while so I think 15 we should do the same. This aligns us with other browsers, simplifies the code, is 16 more efficient and the code being removed has been prone to security bugs. 17 18 Test: fast/dom/Attr/cannot-have-children.html 19 20 * dom/Attr.cpp: 21 (WebCore::Attr::Attr): 22 (WebCore::Attr::create): 23 (WebCore::Attr::setValue): 24 (WebCore::Attr::cloneNodeInternal): 25 * dom/Attr.h: 26 - Have Attr subclass Node instead of ContainerNode as it can no longer have children. 27 - Drop logic to dealing with children / creating a Text child. 28 29 * dom/CharacterData.cpp: 30 (WebCore::CharacterData::notifyParentAfterChange): 31 Drop useless check found by the compiler. parentNode() can no longer be an Attr node. 32 33 * dom/Node.cpp: 34 (WebCore::appendTextContent): 35 appendTextContent() is called by Node.TextContent(). For Attr Nodes, we should no longer traverse 36 its subtree to gather Text Nodes. Instead, we now return Attr.value, as per the specification: 37 - https://dom.spec.whatwg.org/#dom-node-textcontent 38 39 * dom/Range.cpp: 40 (WebCore::lengthOfContentsInNode): 41 As per https://dom.spec.whatwg.org/#concept-node-length, we should return the number of children 42 for Attr Nodes, which will always be 0. 43 44 * xml/XPathUtil.cpp: 45 (WebCore::XPath::isValidContextNode): 46 Always return true for TEXT_NODE as the !(node->parentNode() && node->parentNode()->isAttributeNode()) 47 check will also with true now. This is because a parentNode() cannot be an Attribute Node. 48 1 49 2017-05-05 Brian Burg <bburg@apple.com> 2 50 -
trunk/Source/WebCore/dom/Attr.cpp
r215787 r216259 41 41 42 42 Attr::Attr(Element& element, const QualifiedName& name) 43 : ContainerNode(element.document())43 : Node(element.document(), CreateOther) 44 44 , m_element(&element) 45 45 , m_name(name) … … 48 48 49 49 Attr::Attr(Document& document, const QualifiedName& name, const AtomicString& standaloneValue) 50 : ContainerNode(document)50 : Node(document, CreateOther) 51 51 , m_name(name) 52 52 , m_standaloneValue(standaloneValue) … … 56 56 Ref<Attr> Attr::create(Element& element, const QualifiedName& name) 57 57 { 58 Ref<Attr> attr = adoptRef(*new Attr(element, name)); 59 attr->createTextChild(); 60 return attr; 58 return adoptRef(*new Attr(element, name)); 61 59 } 62 60 63 61 Ref<Attr> Attr::create(Document& document, const QualifiedName& name, const AtomicString& value) 64 62 { 65 Ref<Attr> attr = adoptRef(*new Attr(document, name, value)); 66 attr->createTextChild(); 67 return attr; 63 return adoptRef(*new Attr(document, name, value)); 68 64 } 69 65 70 66 Attr::~Attr() 71 67 { 72 }73 74 void Attr::createTextChild()75 {76 ASSERT(refCount());77 if (!value().isEmpty()) {78 auto textNode = document().createTextNode(value().string());79 80 // This does everything appendChild() would do in this situation (assuming m_ignoreChildrenChanged was set),81 // but much more efficiently.82 textNode->setParentNode(this);83 setFirstChild(textNode.ptr());84 setLastChild(textNode.ptr());85 }86 68 } 87 69 … … 105 87 void Attr::setValue(const AtomicString& value) 106 88 { 107 EventQueueScope scope;108 m_ignoreChildrenChanged++;109 removeChildren();110 89 if (m_element) { 111 90 Style::AttributeChangeInvalidation styleInvalidation(*m_element, qualifiedName(), elementAttribute().value(), value); … … 113 92 } else 114 93 m_standaloneValue = value; 115 createTextChild();116 m_ignoreChildrenChanged--;117 94 118 95 invalidateNodeListAndCollectionCachesInAncestors(&m_name, m_element); … … 137 114 Ref<Node> Attr::cloneNodeInternal(Document& targetDocument, CloningOperation) 138 115 { 139 Ref<Attr> clone = adoptRef(*new Attr(targetDocument, qualifiedName(), value())); 140 cloneChildNodes(clone); 141 return WTFMove(clone); 142 } 143 144 // DOM Section 1.1.1 145 bool Attr::childTypeAllowed(NodeType type) const 146 { 147 return type == TEXT_NODE; 148 } 149 150 void Attr::childrenChanged(const ChildChange&) 151 { 152 if (m_ignoreChildrenChanged > 0) 153 return; 154 155 invalidateNodeListAndCollectionCachesInAncestors(&qualifiedName(), m_element); 156 157 StringBuilder valueBuilder; 158 TextNodeTraversal::appendContents(*this, valueBuilder); 159 160 AtomicString oldValue = value(); 161 AtomicString newValue = valueBuilder.toAtomicString(); 162 if (m_element) 163 m_element->willModifyAttribute(qualifiedName(), oldValue, newValue); 164 165 if (m_element) { 166 Style::AttributeChangeInvalidation styleInvalidation(*m_element, qualifiedName(), oldValue, newValue); 167 elementAttribute().setValue(newValue); 168 } else 169 m_standaloneValue = newValue; 170 171 if (m_element) { 172 NoEventDispatchAssertion::DisableAssertionsInScope allowedScope; 173 m_element->attributeChanged(qualifiedName(), oldValue, newValue); 174 } 116 return adoptRef(*new Attr(targetDocument, qualifiedName(), value())); 175 117 } 176 118 -
trunk/Source/WebCore/dom/Attr.h
r211395 r216259 34 34 class MutableStyleProperties; 35 35 36 // Attr can have Text children 37 // therefore it has to be a fullblown Node. The plan 38 // is to dynamically allocate a textchild and store the 39 // resulting nodevalue in the attribute upon 40 // destruction. however, this is not yet implemented. 41 42 class Attr final : public ContainerNode { 36 class Attr final : public Node { 43 37 public: 44 38 static Ref<Attr> create(Element&, const QualifiedName&); … … 70 64 Attr(Document&, const QualifiedName&, const AtomicString& value); 71 65 72 void createTextChild();73 74 66 String nodeName() const final { return name(); } 75 67 NodeType nodeType() const final { return ATTRIBUTE_NODE; } … … 83 75 84 76 bool isAttributeNode() const final { return true; } 85 bool childTypeAllowed(NodeType) const final;86 87 void childrenChanged(const ChildChange&) final;88 77 89 78 Attribute& elementAttribute(); … … 96 85 97 86 RefPtr<MutableStyleProperties> m_style; 98 unsigned m_ignoreChildrenChanged { 0 };99 87 }; 100 88 -
trunk/Source/WebCore/dom/CharacterData.cpp
r214915 r216259 210 210 void CharacterData::notifyParentAfterChange(ContainerNode::ChildChangeSource source) 211 211 { 212 #if !ASSERT_DISABLED213 auto assertNoEventDispatch = std::make_unique<NoEventDispatchAssertion>();214 #endif215 216 212 document().incDOMTreeVersion(); 217 213 … … 226 222 }; 227 223 228 #if !ASSERT_DISABLED229 // Attribute CharacterData is expected to fire events.230 if (is<Attr>(*parentNode()))231 assertNoEventDispatch = nullptr;232 #endif233 234 224 parentNode()->childrenChanged(change); 235 225 } -
trunk/Source/WebCore/dom/Node.cpp
r214819 r216259 1470 1470 case Node::COMMENT_NODE: 1471 1471 isNullString = false; 1472 content.append( static_cast<const CharacterData*>(node)->data());1472 content.append(downcast<CharacterData>(*node).data()); 1473 1473 break; 1474 1474 1475 1475 case Node::PROCESSING_INSTRUCTION_NODE: 1476 1476 isNullString = false; 1477 content.append( static_cast<const ProcessingInstruction*>(node)->data());1477 content.append(downcast<ProcessingInstruction>(*node).data()); 1478 1478 break; 1479 1479 1480 case Node::ATTRIBUTE_NODE: 1481 isNullString = false; 1482 content.append(downcast<Attr>(*node).value()); 1483 break; 1484 1480 1485 case Node::ELEMENT_NODE: 1481 1486 if (node->hasTagName(brTag) && convertBRsToNewlines) { … … 1485 1490 } 1486 1491 FALLTHROUGH; 1487 case Node::ATTRIBUTE_NODE:1488 1492 case Node::DOCUMENT_FRAGMENT_NODE: 1489 1493 isNullString = false; -
trunk/Source/WebCore/dom/Range.cpp
r215946 r216259 537 537 switch (node.nodeType()) { 538 538 case Node::DOCUMENT_TYPE_NODE: 539 case Node::ATTRIBUTE_NODE: 539 540 return 0; 540 541 case Node::TEXT_NODE: … … 544 545 return downcast<CharacterData>(node).length(); 545 546 case Node::ELEMENT_NODE: 546 case Node::ATTRIBUTE_NODE:547 547 case Node::DOCUMENT_NODE: 548 548 case Node::DOCUMENT_FRAGMENT_NODE: -
trunk/Source/WebCore/xml/XPathUtil.cpp
r204466 r216259 66 66 case Node::ELEMENT_NODE: 67 67 case Node::PROCESSING_INSTRUCTION_NODE: 68 case Node::TEXT_NODE: 68 69 return true; 69 70 case Node::DOCUMENT_FRAGMENT_NODE: 70 71 case Node::DOCUMENT_TYPE_NODE: 71 72 return false; 72 case Node::TEXT_NODE:73 return !(node->parentNode() && node->parentNode()->isAttributeNode());74 73 } 75 74 ASSERT_NOT_REACHED();
Note:
See TracChangeset
for help on using the changeset viewer.