- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 01 Jul 2011 08:30:35 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view/tools In directory hutz:/tmp/cvs-serv30745/tools Modified Files: preprocess.xsl Log Message: Revamp how audioTracks and videoTracks work on HTMLMediaElement and MediaStream. (whatwg r6275) [updated by splitter] Index: preprocess.xsl =================================================================== RCS file: /sources/public/html5/spec-author-view/tools/preprocess.xsl,v retrieving revision 1.72 retrieving revision 1.73 diff -u -d -r1.72 -r1.73 --- preprocess.xsl 1 Jul 2011 07:50:28 -0000 1.72 +++ preprocess.xsl 1 Jul 2011 08:30:32 -0000 1.73 @@ -474,14 +474,14 @@ <xsl:template match="pre[@class = 'idl']//a[@href[starts-with(.,'#handler-')]]"> <xsl:choose> <xsl:when test= " - @href = 'onenter' - or @href = 'onexit' - or @href = 'onchecking' - or @href = 'onnoupdate' - or @href = 'ondownloading' - or @href = 'onupdateready' - or @href = 'oncached' - or @href = 'onobsolete' + contains(@href, 'onenter') + or contains(@href, 'onexit') + or contains(@href, 'onchecking') + or contains(@href, 'onnoupdate') + or contains(@href, 'ondownloading') + or contains(@href, 'onupdateready') + or contains(@href, 'oncached') + or contains(@href, 'onobsolete') " /> <xsl:otherwise>
Received on Friday, 1 July 2011 08:30:41 UTC