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 580 - incorrect default parameter setting in domconfigurationgetparameter01
Summary: incorrect default parameter setting in domconfigurationgetparameter01
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-02-27 10:33 UTC by nnissar
Modified: 2004-03-10 19:41 UTC (History)
0 users

See Also:


Attachments

Description nnissar 2004-02-27 10:33:29 UTC
The default value of 'infoset' parameter is false since 'entities' default is 
true.  Test case currently expects getParameter for 'infoset' to return true.

Also, parameter 'namespace-declaration' should be changed to 'namespace-
declarations'.

- <getParameter obj="domConfig" var="param" name='"namespace-declaration"'/>
+ <getParameter obj="domConfig" var="param" name='"namespace-declarations"'/>
  <assertTrue actual="param" id="domconfigurationgetparameter01_4"/>
  <getParameter obj="domConfig" var="param" name='"infoset"'/>
- <assertTrue actual="param" id="domconfigurationgetparameter01_5"/>
+ <assertFalse actual="param" id="domconfigurationgetparameter01_5"/>