Hi,

I'm running the results of RichTextArea.getHTML() through xsltproc.
It's complaining about unclosed tags. The culprit seems to be the
break tag:
<report>
        <case>
                <condition><span style="background-color: green;">some
text</span><br></condition>
        </case>
</report>

doesn't parse (parser error : Opening and ending tag mismatch: br line
xxx and condition)

When I convert to:
<report>
        <case>
                <condition><span style="background-color: green;">some
text</span><br/></condition>
        </case>
</report>

happiness ensues.

Any thoughts?



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to