Closed
Bug 56758
Opened 24 years ago
Closed 11 years ago
Attr appendChild, insertBefore, removeChild, replaceChild fail
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
RESOLVED
INVALID
Future
People
(Reporter: bc, Unassigned)
References
Details
(Keywords: dom1)
Attr may have Text or EntityReference Nodes as children. When using any of the
appendChild, insertBefore, removeChild, replaceChild methods a
DOM_NO_MODIFICATION_ALLOWED_ERR exception is thrown no matter what.
To reproduce, visit the above URL using a recent build of Mozilla, select the
tc_catt504 test case and press submit. In the left frame you can view the setup
steps (creating the nodes used), and the results of executing the test case. Due
to a scrollbar bug, you will have to click on the right frame and use the
keyboard to navigate through the report.
I will attach simplified testcases as soon as I can.
Comment 1•24 years ago
|
||
Known problem, could even be a dup. --> Future.
Status: NEW → ASSIGNED
Target Milestone: --- → Future
Updated•24 years ago
|
Component: DOM Level 1 → DOM Core
Comment 4•23 years ago
|
||
This doesn't even come close to working in Mozilla 0.9.3 on MacOS 9.1.
I just ran through the DOM HTML Level 2 Conformance tests made available by
Netscape. The test is called "tc_hatt504 Test Attribute children". Mozilla
0.9.3 for Mac failed every single part of this test, including
Node.insertBefore, appendChild, removeChild and replaceChild.
The Netscape test is available here:
http://developer.netscape.com/evangelism/tools/testsuites/tc.html?txtTitle=DOM%20HTML%20Level%202%20Conformance%20Tests&txtApiPath=w3c-dom-html-2/&txtTestCases=tc&txtInvariantApiTestFrame=tc_invariantTestFrame&txtMutantApiTestFrame=tc_mutantTestFrame
If this link doesn't work for you, try clicking on the "DOM HTML Level 2
Conformance Test on this page:
http://developer.netscape.com/evangelism/tools/testsuites/
Comment 5•23 years ago
|
||
Some of these are working, some not (replaceChild). Will there be any movement
here soon?
Comment 6•23 years ago
|
||
Yes. See Jonas Sicking's last comment in bug 104219. Not too soon unfortunately :-(
Comment 7•23 years ago
|
||
Even if our attribute code soon can cope with this we'll still need to work on
our entity code to expose what we need from the parser, I wouldn't hold my
breath here...
Comment 8•23 years ago
|
||
This appears to be causing Moz to fail one of the tests in the w3c DOM test suite:
The test ECMAscript/tests/attrsetvaluenomodificationallowederrEE.html barfs, with
[Exception... "Component returned failure code: 0x80004003
(NS_ERROR_INVALID_POINTER) [nsIDOMElement.appendChild]" nsresult: "0x80004003
(NS_ERROR_INVALID_POINTER)"
location: "JS frame ::
file:///C:/bugzilla/w3c_dom_core/ecmascript/tests/alltests.html ::
attrsetvaluenomodificationallowederrEE_runTest :: line 624" data: no]"
Blocks: 125665
Keywords: mozilla1.0
Comment 11•22 years ago
|
||
Mass-reassigning bugs to dom_bugs@netscape.com
Assignee: jst → dom_bugs
Status: ASSIGNED → NEW
Comment 12•20 years ago
|
||
So if I understand this right, I have to do the following to fix this bug
- I need to implement appendChild, etc in nsDOMAttribute class.
- Have appendChild, insertBefore, etc call appropriate functions in
nsAttributeChildList
- Implement those functions in nsAttributeChildList
Does this look right? If it does, then I have the following questions
- Is there a standard Vector or List data structure that I can use instead of
implementing my own in nsAttributeChildList.
Reporter | ||
Comment 13•19 years ago
|
||
My old mindspring account is long ago and far away. Updating URL. Select
tc_catt504. You can also run:
<http://test.bclary.com/tests/w3.org/2001/DOM-Test-Suite/build/ecmascript/level2/core/alltests.html>
QA Contact: stummala → ian
Comment 14•18 years ago
|
||
I don't really have a good grasp on what's expected behavior for this bug. I'm also not able to find the testcases bc points us to for Attr.*Child or Attr.insertBefore.
Reporter | ||
Comment 15•18 years ago
|
||
Comment 16•18 years ago
|
||
For the record, there are some very basic tests which use Attr.appendChild in bug 345700 (to be committed within the next few days, depending on when I have free time ). Whenever this is fixed, the test code there should be enabled so that this functionality can be tested there.
Comment 17•18 years ago
|
||
When this is fixed the code in nsNodeUtils::CloneAndAdopt should be updated (it has a comment about which block to remove).
Comment 19•17 years ago
|
||
currently we throw NS_ERROR_NOT_IMPLEMENTED
instead of NS_ERROR_DOM_HIERARCHY_REQUEST_ERR as expected in http://mxr.mozilla.org/mozilla/source/dom/tests/mochitest/dom-level1-core/test_hc_attrappendchild2.html?raw=1
Updated•14 years ago
|
Depends on: AttrExodus
Comment 21•11 years ago
|
||
This shouldn't work per spec, and we won't make it work.
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → INVALID
Updated•11 years ago
|
Assignee: general → nobody
Reporter | ||
Comment 22•11 years ago
|
||
<http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-637646024>
<quote>
In XML, where the value of an attribute can contain entity references, the child nodes of the Attr node may be either Text or EntityReference nodes
</quote>
While html attributes don't have children, xml attributes do, so this isn't invalid. If it is not worth fixing, just say so.
For what it's worth, Chrome does allow you to append text children to either html or xml attributes and we now throw HierarchyRequestError.
You need to log in
before you can comment on or make changes to this bug.
Description
•