- From: <bugzilla@wiggum.w3.org>
- Date: Wed, 23 Jul 2008 10:23:11 +0000
- To: public-qt-comments@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=5871
--- Comment #13 from Oliver Hallam <oliver@cbcl.co.uk> 2008-07-23 10:23:10 ---
Apologies with regard to fn-doc-33 and K2-OrderbyExprWithout-13 - they have
been correctly fixed.
With regards to extvardeclwithtype-23, the XQ version has this element
constructor (on line 68):
<style type="text/css">
.details
{{
text-align: center;
font-size: 80%;
color: gray
}}
.variableName
{{
font-family: courier
}}
</style>
The equivalent part of the XQX version has this constructor:
<xqx:elementConstructor>
<xqx:tagName>style</xqx:tagName>
<xqx:attributeList>
<xqx:attributeConstructor>
<xqx:attributeName>type</xqx:attributeName>
<xqx:attributeValue>text/css</xqx:attributeValue>
</xqx:attributeConstructor>
</xqx:attributeList>
<xqx:elementContent>
<xqx:stringConstantExpr>
<xqx:value>
.details
{
text-align: center;
font-size: 80%;
color: gray
}
.variableName
{
font-family: courier
}</xqx:value>
</xqx:stringConstantExpr>
</xqx:elementContent>
</xqx:elementConstructor>
which evaluates to:
<style type="text/css">
.details
{
text-align: center;
font-size: 80%;
color: gray
}
.variableName
{
font-family: courier
}</style>
missing the newline and indentation at the end of the text node.
K2Literals-28 and K2-Literals-39 seem fine to me.
--
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Wednesday, 23 July 2008 10:23:46 UTC