- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 29 Jun 2011 06:37:18 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view/tools In directory hutz:/tmp/cvs-serv12986/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.57 retrieving revision 1.58 diff -u -d -r1.57 -r1.58 --- preprocess.xsl 29 Jun 2011 05:55:58 -0000 1.57 +++ preprocess.xsl 29 Jun 2011 06:37:16 -0000 1.58 @@ -458,27 +458,27 @@ <xsl:variable name="title" select="@title"/> <xsl:choose> <xsl:when test="not(preceding::dl[@class = 'domintro']/dt/code[@title = $title]) - and not(preceding::code[@title = 'dom-applicationCache']) - and not(preceding::code[@title = 'dom-BarProp-visible']) - and not(preceding::code[@title = 'dom-cva-validity']) - and not(preceding::code[@title = 'dom-DataTransferItemList-add']) - and not(preceding::code[@title = 'dom-document-open']) - and not(preceding::code[@title = 'dom-external']) - and not(preceding::code[@title = 'dom-history']) - and not(preceding::code[@title = 'dom-innerHTML']) - and not(preceding::code[@title = 'dom-outerHTML']) - and not(preceding::code[@title = 'dom-media-textTracks']) - and not(preceding::code[@title = 'dom-navigator-registerProtocolHandler']) - and not(preceding::code[@title = 'dom-navigator-registerContentHandler']) - and not(preceding::code[@title = 'dom-navigator']) - and not(preceding::code[@title = 'dom-select-item']) - and not(preceding::code[@title = 'dom-windowtimers-setTimeout']) - and not(preceding::code[@title = 'dom-windowtimers-setInterval']) - and not(preceding::code[@title = 'dom-HTMLCollection-item']) - and not(preceding::code[@title = 'dom-HTMLCollection-length']) - and not(preceding::code[@title = 'dom-HTMLAllCollection-namedItem']) - and not(preceding::code[@title = 'dom-HTMLFormControlsCollection-namedItem']) - and not(preceding::code[@title = 'dom-HTMLOptionsCollection-namedItem']) + and not($title = 'dom-applicationCache' and preceding::code[@title = 'dom-applicationCache']) + and not($title = 'dom-BarProp-visible' and preceding::code[@title = 'dom-BarProp-visible']) + and not($title = 'dom-cva-validity' and preceding::code[@title = 'dom-cva-validity']) + and not($title = 'dom-DataTransferItemList-add' and preceding::code[@title = 'dom-DataTransferItemList-add']) + and not($title = 'dom-document-open' and preceding::code[@title = 'dom-document-open']) + and not($title = 'dom-external' and preceding::code[@title = 'dom-external']) + and not($title = 'dom-history' and preceding::code[@title = 'dom-history']) + and not($title = 'dom-innerHTML' and preceding::code[@title = 'dom-innerHTML']) + and not($title = 'dom-outerHTML' and preceding::code[@title = 'dom-outerHTML']) + and not($title = 'dom-media-textTracks' and preceding::code[@title = 'dom-media-textTracks']) + and not($title = 'dom-navigator-registerProtocolHandler' and preceding::code[@title = 'dom-navigator-registerProtocolHandler']) + and not($title = 'dom-navigator-registerContentHandler' and preceding::code[@title = 'dom-navigator-registerContentHandler']) + and not($title = 'dom-navigator' and preceding::code[@title = 'dom-navigator']) + and not($title = 'dom-select-item' and preceding::code[@title = 'dom-select-item']) + and not($title = 'dom-windowtimers-setTimeout' and preceding::code[@title = 'dom-windowtimers-setTimeout']) + and not($title = 'dom-windowtimers-setInterval' and preceding::code[@title = 'dom-windowtimers-setInterval']) + and not($title = 'dom-HTMLCollection-item' and preceding::code[@title = 'dom-HTMLCollection-item']) + and not($title = 'dom-HTMLCollection-length' and preceding::code[@title = 'dom-HTMLCollection-length']) + and not($title = 'dom-HTMLAllCollection-namedItem' and preceding::code[@title = 'dom-HTMLAllCollection-namedItem']) + and not($title = 'dom-HTMLFormControlsCollection-namedItem' and preceding::code[@title = 'dom-HTMLFormControlsCollection-namedItem']) + and not($title = 'dom-HTMLOptionsCollection-namedItem' and preceding::code[@title = 'dom-HTMLOptionsCollection-namedItem']) "> <code> <xsl:copy-of select="@*"/>
Received on Wednesday, 29 June 2011 06:37:22 UTC