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 647 - LS: normalizecharacters04 should set 'normalize-characters' to false
Summary: LS: normalizecharacters04 should set 'normalize-characters' to false
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: Philippe Le Hegaret
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-04-02 10:47 UTC by nnissar
Modified: 2004-04-08 15:57 UTC (History)
0 users

See Also:


Attachments
Changes to false, removes unused variables (1.36 KB, patch)
2004-04-08 11:57 UTC, Curt Arnold
Details

Description nnissar 2004-04-02 10:47:49 UTC
In LS test normalizecharacters04, the description states that "Characters 
should be not normalized on serialization if normalize-characters is false."  
canSetParameter is invoked with the value 'false', but setParameter is called 
to set 'normalize-characters' to true, rather than 'false' as I believe was 
intended.

- <setParameter obj="domConfig" name='"normalize-characters"' value="true"/>
+ <setParameter obj="domConfig" name='"normalize-characters"' value="false"/>
Comment 1 Curt Arnold 2004-04-08 11:57:05 UTC
Created attachment 350 [details]
Changes to false, removes unused variables