[ 
http://issues.apache.org/jira/browse/XALANJ-2276?page=comments#action_12369594 
] 

Brian Minchau commented on XALANJ-2276:
---------------------------------------

A testcase for this issue is output40.xsl in the conf/output bucket. I uses the 
doctype-public <xsl:output> attribute, and the document-element in the result 
tree is <root>, not <html>.

The gold file for this testcase is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional">
<root>
<Out> this tests nothing </Out>
<Out> this tests something </Out>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<Body></Body>
</HEAD>
</root>

I'm pretty sure that the <!DOCTYPE....> should be:
<!DOCTYPE root PUBLIC "-//W3C//DTD HTML 4.0 Transitional">


> <!DOCTYPE html ..   is output for html output, even when the first element is 
> not "html"
> ----------------------------------------------------------------------------------------
>
>          Key: XALANJ-2276
>          URL: http://issues.apache.org/jira/browse/XALANJ-2276
>      Project: XalanJ2
>         Type: Bug
>   Components: Serialization
>     Versions: Latest Development Code
>     Reporter: Brian Minchau
>  Attachments: patch2.txt
>
> Probably a minor bug, but the code in ToHTMLStream.java has this line:
>   writer.write("<!DOCTYPE html");
> in the method startDocumentInternal.
> This method can be triggered by the fact that we got a startElement() call.
> The DOCTYPE should apply to the first element, which is usually "html", but 
> could be "HTML" "HtMl" "spider" "fly" ... or whatever.
> The code should be made a little more robust to get the name of the first 
> element
> and the name in the DOCTYPE to be the same.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to