Closed
Bug 1850
Opened 26 years ago
Closed 26 years ago
TextNode's .splitText(num) method not working
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
VERIFIED
FIXED
M4
People
(Reporter: jeremie, Assigned: vidur)
References
()
Details
All javascript processing ceases after hitting a .splitText() on a TextNode.
Here's some example code:
<HTML>
<BODY>
This is a text node...
<SCRIPT>
alert("First try:" + document.body.firstChild.nodeValue);
document.body.firstChild.splitText(4);
alert("Second try:" + document.body.firstChild.nodeValue);
</SCRIPT>
</BODY>
</HTML>
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Comment 2•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
QA contact re-assigned according to the product areas we're currently working
on.
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 4•26 years ago
|
||
Implemented splitText. Note that there is still an existing problem that's a
DUP of 2243. However, the split operation does work correctly.
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•