- From: CVS User pjgenste <cvsmail@w3.org>
- Date: Thu, 30 Jan 2014 22:36:06 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webvtt
In directory roscoe:/tmp/cvs-serv22943
Modified Files:
Overview.html
Log Message:
Sync WebVTT with Git commit e6efded9950fe40f84140a4075cc89e230cebc06
--- /sources/public/html5/webvtt/Overview.html 2014/01/30 22:32:55 1.104
+++ /sources/public/html5/webvtt/Overview.html 2014/01/30 22:36:06 1.105
@@ -287,7 +287,7 @@
</p>
<h1 class="title p-name" id="title" property="dcterms:title">WebVTT: The Web Video Text Tracks Format</h1>
- <h2 property="dcterms:issued" datatype="xsd:dateTime" content="2014-01-30T22:32:51.000Z" id="draft-community-group-specification-30-january-2014">Draft Community Group Specification <time class="dt-published" datetime="2014-01-30">30 January 2014</time></h2>
+ <h2 property="dcterms:issued" datatype="xsd:dateTime" content="2014-01-30T22:36:01.000Z" id="draft-community-group-specification-30-january-2014">Draft Community Group Specification <time class="dt-published" datetime="2014-01-30">30 January 2014</time></h2>
<dl>
@@ -2416,7 +2416,9 @@
</ol>
- <p>The rules to <dfn id="dfn-parse-a-percentage-string">parse a percentage string</dfn> are as follows. This will return a percentage value or, if at any point the algorithm says that it "fails", this means that it is aborted at that point with an IndexSizeError and returns nothing.</p>
+ <p>The rules to <dfn id="dfn-parse-a-percentage-string">parse a percentage string</dfn> are as follows. This will return either a
+ number in the range 0..100, or nothing. If at any point the algorithm says that it "fails", this
+ means that it is aborted at that point and returns nothing.</p>
<ol>
<li><p>Let <var>input</var> be the string being parsed.</p></li>
@@ -2433,7 +2435,7 @@
<li><p>Ignoring the trailing percent sign, interpret <var>input</var> as a real number. Let that number be the <var>percentage</var>.</p></li>
- <li><p>If <var>percentage</var> is outside the range 0.0% .. 100.0%, fail.</p></li>
+ <li><p>If <var>percentage</var> is outside the range 0..100, then fail.</p></li>
<li><p>Return <var>percentage</var>.</p></li>
</ol>
Received on Thursday, 30 January 2014 22:36:08 UTC