- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 22 Apr 2011 09:58:40 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view/tools In directory hutz:/tmp/cvs-serv29364/tools Modified Files: postprocess.xsl preprocess.xsl Log Message: Pause a MediaController if all its slaves are paused, and make it so that the UA UI will unpause all the slaves when it unpauses a MediaController that is itself blocked because all its slaves are paused. (whatwg r6024) [updated by splitter] Index: preprocess.xsl =================================================================== RCS file: /sources/public/html5/spec-author-view/tools/preprocess.xsl,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- preprocess.xsl 22 Apr 2011 08:59:51 -0000 1.8 +++ preprocess.xsl 22 Apr 2011 09:58:37 -0000 1.9 @@ -111,4 +111,5 @@ <xsl:copy-of select="document('../script.xml')"/> <xsl:text> </xsl:text> </xsl:template> + <xsl:template match="comment()"/> </xsl:stylesheet> Index: postprocess.xsl =================================================================== RCS file: /sources/public/html5/spec-author-view/tools/postprocess.xsl,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- postprocess.xsl 22 Apr 2011 09:33:21 -0000 1.14 +++ postprocess.xsl 22 Apr 2011 09:58:37 -0000 1.15 @@ -3,8 +3,8 @@ exclude-result-prefixes="h" version='1.0'> <xsl:output method="html" indent="no" encoding="utf-8" - doctype-public="-//W3C//DTD HTML 4.01//EN" - doctype-system="http://www.w3.org/TR/html4/strict.dtd" + doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" + doctype-system="http://www.w3.org/TR/html4/loose.dtd" /> <xsl:key name="local-frags" match="." use="concat('#',@id)"/> <xsl:key name="filename-map" match="." use="h:li"/>
Received on Friday, 22 April 2011 09:58:42 UTC