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 241 - contentType condition referenced but not defined in DTD, missing support
Summary: contentType condition referenced but not defined in DTD, missing support
Status: RESOLVED FIXED
Alias: None
Product: DOM TS
Classification: Unclassified
Component: ECMAScript Binding (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-06-27 01:33 UTC by Curt Arnold
Modified: 2003-06-27 06:02 UTC (History)
0 users

See Also:


Attachments
patch (4.98 KB, patch)
2003-06-27 01:34 UTC, Curt Arnold
Details

Description Curt Arnold 2003-06-27 01:33:36 UTC
The contentType condition was defined in the schema, but was only referenced,
not defined in the DTD and the existing bindings did not produce valid code.

The following shows an example of the contentType condition:

<if>
<contentType type="text/html">
<!--  do this if content type is text/html  -->
<assert.../>
<else>
<!--   do this otherwise  -->
</else>
</if>
Comment 1 Curt Arnold 2003-06-27 01:34:19 UTC
Created attachment 20 [details]
patch