- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 29 Jul 2009 05:38:13 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/tools
In directory hutz:/tmp/cvs-serv5315/tools
Modified Files:
generate-spec-source.xsl
Log Message:
fixed handling of normal-character-data links in doc for <iframe> and <option>
Index: generate-spec-source.xsl
===================================================================
RCS file: /sources/public/html5/markup/tools/generate-spec-source.xsl,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -d -r1.185 -r1.186
--- generate-spec-source.xsl 20 Jul 2009 23:15:32 -0000 1.185
+++ generate-spec-source.xsl 29 Jul 2009 05:38:11 -0000 1.186
@@ -2494,6 +2494,9 @@
<xsl:param name="ref" select="substring-after(@href,'#')"/>
<xsl:variable name="parent" select="../@id"/>
<xsl:choose>
+ <xsl:when test="$ref = 'normal-character-data'">
+ <xsl:copy-of select="."/>
+ </xsl:when>
<xsl:when test="$ref = 'colgroup.inner'">
<!-- * special-case constraint of col element vs. span -->
<!-- * attribute in colgroup content model requires some -->
Received on Wednesday, 29 July 2009 05:38:21 UTC