- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 30 Jun 2011 15:23:53 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view/tools
In directory hutz:/tmp/cvs-serv15784/tools
Modified Files:
preprocess.xsl
Log Message:
Structured clone: Preserve sparse arrays and mention that non-index properties of arrays are preserved too. (whatwg r6274)
[updated by splitter]
Index: preprocess.xsl
===================================================================
RCS file: /sources/public/html5/spec-author-view/tools/preprocess.xsl,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- preprocess.xsl 29 Jun 2011 06:37:16 -0000 1.58
+++ preprocess.xsl 30 Jun 2011 15:23:51 -0000 1.59
@@ -435,7 +435,16 @@
<a href="#the-menu-element">menu</a>
elements.</p>
</xsl:template>
- <xsl:template match="pre[@class = 'idl']//a[@href[starts-with(.,'#handler-')]]">
+ <xsl:template match="pre[@class = 'idl']//a[@href[starts-with(.,'#handler-window-on')]]">
+ <a>
+ <xsl:copy-of select="@*"/>
+ <xsl:attribute name="href">
+ <xsl:value-of select="concat('#ix-handler-window-on', substring-after(@href, '-on'))"/>
+ </xsl:attribute>
+ <xsl:apply-templates/>
+ </a>
+ </xsl:template>
+ <xsl:template match="pre[@class = 'idl']//a[@href[starts-with(.,'#handler-on')]]">
<a>
<xsl:copy-of select="@*"/>
<xsl:attribute name="href">
Received on Thursday, 30 June 2011 15:24:03 UTC