To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=69431





------- Additional comments from [EMAIL PROTECTED] Wed Jul 25 13:43:28 +0000 
2007 -------
The problem is that the value is set, but not unset in case of 'none'

<xsl:when test='name()="style:text-underline"'>
    <xsl:if test='not(.="none")'>
        <xsl:text>text-decoration:underline; </xsl:text>
    </xsl:if>
</xsl:when>

<xsl:when test='name()="style:text-underline"'>
    <xsl:choose>
        <xsl:when test='.="none"'>
            <xsl:text>text-decoration:none; </xsl:text>
        </xsl:when>
        <xsl:otherwise>
            <xsl:text>text-decoration:underline; </xsl:text>
        </xsl:otherwise>
    </xsl:choose>
</xsl:when>

A missing feature of XHTML/CSS is the simultaneous usage of underline and
line-through.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

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


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

Reply via email to