DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2520>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2520

keyword only attributes in HTML output are incorrect

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|Normal                      |Minor



------- Additional Comments From [EMAIL PROTECTED]  2001-11-01 07:11 -------
Section 16.2 of the XSLT 1.0 spec, says:
The html output method should output boolean attributes (that is attributes with
only a single allowed value that is
            equal to the name of the attribute) in minimized form. For example,
a start-tag written in the stylesheet as

                 <OPTION selected="selected">

            should be output as

                 <OPTION selected>

I know it is only a "should" but other processors have done it. 
We fail output35 because of it.

Running xalan on output35
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional">
<HTML>
<Option selected></Option>
</HTML>



Running XSLTC with Xerces Parser on output35
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional">
<HTML>
  <Option selected="selected"></Option>
</HTML>

So I suggest this bug status is changed to RESOLVED LATER.
I guess it would have to be reopened and then changed to 
that status.

Reply via email to