This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 449 - noderemovechild19 and noderemovechild31 can return multiple exception codes
Summary: noderemovechild19 and noderemovechild31 can return multiple exception codes
Status: RESOLVED FIXED
Alias: None
Product: DOM TS
Classification: Unclassified
Component: DOM Level 3 (show other bugs)
Version: unspecified
Hardware: Other other
: P2 normal
Target Milestone: ---
Assignee: Curt Arnold
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-12-30 09:11 UTC by Curt Arnold
Modified: 2004-01-06 16:46 UTC (History)
0 users

See Also:


Attachments
Allows NOT_FOUND_ERR and performs second mutation (5.55 KB, patch)
2003-12-30 09:24 UTC, Curt Arnold
Details

Description Curt Arnold 2003-12-30 09:11:02 UTC
These tests attempt to remove a non-child node from an entity reference and 
expect a NO_MODIFICATION_ALLOWED_ERR.  A NOT_FOUND_ERR would be equally 
appropriate.  It is unclear whether the test meant to remove a non-child node.

The patch performs the same modification but will accept either code then if 
the entity was resolved (not required if not validating) attempts a removal of 
a child node and expects only NO_MODIFICATION_ALLOWED_ERR.
Comment 1 Curt Arnold 2003-12-30 09:24:14 UTC
Created attachment 146 [details]
Allows NOT_FOUND_ERR and performs second mutation