- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 15 Feb 2012 19:09:36 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webvtt In directory hutz:/tmp/cvs-serv8300 Modified Files: Overview.html Log Message: Make the text/vtt registration mention the magic signature for empty WebVTT files (not that that's particularly useful to detect, but at least it makes the parser and registration consistent). (whatwg r6997) Index: Overview.html =================================================================== RCS file: /sources/public/html5/webvtt/Overview.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Overview.html 15 Feb 2012 18:58:58 -0000 1.11 +++ Overview.html 15 Feb 2012 19:09:34 -0000 1.12 @@ -2946,16 +2946,18 @@ <dd> <dl><dt>Magic number(s):</dt> <dd> - <p>WebVTT files all begin with one of the following byte sequences:</p> + <p>WebVTT files all begin with one of the following byte sequences (where "EOF" means the end of the file):</p> <ul class=brief><li> EF BB BF 57 45 42 56 54 54 0A <li> EF BB BF 57 45 42 56 54 54 0D <li> EF BB BF 57 45 42 56 54 54 20 <li> EF BB BF 57 45 42 56 54 54 09 + <li> EF BB BF 57 45 42 56 54 54 EOF <li> 57 45 42 56 54 54 0A <li> 57 45 42 56 54 54 0D <li> 57 45 42 56 54 54 20 <li> 57 45 42 56 54 54 09 - </ul><p class=note>(An optional UTF-8 BOM, the ASCII string "<code title="">WEBVTT</code>", and finally a space, tab, or line break.) + <li> 57 45 42 56 54 54 EOF + </ul><p class=note>(An optional UTF-8 BOM, the ASCII string "<code title="">WEBVTT</code>", and finally a space, tab, line break, or the end of the file.) </dd> <dt>File extension(s):</dt> <dd>"<code title="">vtt</code>"</dd>
Received on Wednesday, 15 February 2012 19:09:38 UTC