[Bug 20377] New: [XT3TS] embedded-stylesheet-003

https://www.w3.org/Bugs/Public/show_bug.cgi?id=20377

            Bug ID: 20377
           Summary: [XT3TS]  embedded-stylesheet-003
    Classification: Unclassified
           Product: XPath / XQuery / XSLT
           Version: Working drafts
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P2
         Component: XSLT 3.0 Test Suite
          Assignee: abel.online@xs4all.nl
          Reporter: tim@cbcl.co.uk
        QA Contact: public-qt-comments@w3.org

The file embed003.xml is invalid with respect to the DTD.

"The 'xsl:version' attribute has an invalid value according to its data type."  

I suspect this is caused by

<!ATTLIST doc
          xmlns:xsl CDATA #FIXED "http://www.w3.org/1999/XSL/Transform"
          xsl:version CDATA #FIXED "'3.0'">

Shouldn't it be

<!ATTLIST doc
          xmlns:xsl CDATA #FIXED "http://www.w3.org/1999/XSL/Transform"
          xsl:version CDATA #FIXED "3.0">

to match

<doc xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="3.0" >

Also, is

<!ATTLIST xsl:stylesheet 
          version NMTOKEN #REQUIRED>

correct?

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Thursday, 13 December 2012 16:40:49 UTC