- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 15 Jun 2011 04:47:50 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv11540
Modified Files:
acknowledgements.html number-state.html rendering.html
spec.html the-iframe-element.html
Log Message:
typo (whatwg r6231)
[updated by splitter]
Index: the-iframe-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-iframe-element.html,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- the-iframe-element.html 14 Jun 2011 23:47:03 -0000 1.70
+++ the-iframe-element.html 15 Jun 2011 04:47:48 -0000 1.71
@@ -3914,10 +3914,7 @@
</p><p>Will throw an <code><a href="common-dom-interfaces.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception if there
is no selected <a href="#media-resource">media resource</a>
- or if there is a <a href="#current-media-controller">current media controller</a>.
- Will throw an
- <code><a href="common-dom-interfaces.html#index_size_err">INDEX_SIZE_ERR</a></code> exception if the given time is not
- within the ranges to which the user agent can seek.</p>
+ or if there is a <a href="#current-media-controller">current media controller</a>.</p>
</dd>
Index: rendering.html
===================================================================
RCS file: /sources/public/html5/spec/rendering.html,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- rendering.html 3 Jun 2011 00:48:40 -0000 1.91
+++ rendering.html 15 Jun 2011 04:47:48 -0000 1.92
@@ -3380,7 +3380,7 @@
<p>U+000A LINE FEED (LF) characters are expected to cause line
breaks in the tooltip, U+0009 CHARACTER TABULATION (tab) characters
are expected to render as a non-zero horizontal shift that lines up
- the next glpyh with the next tab stop, with tab stops occurring at
+ the next glyph with the next tab stop, with tab stops occurring at
points that are multiples of 8 times the width of a U+0020 SPACE
character.</p>
Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec/acknowledgements.html,v
retrieving revision 1.1084
retrieving revision 1.1085
diff -u -d -r1.1084 -r1.1085
--- acknowledgements.html 9 Jun 2011 07:47:02 -0000 1.1084
+++ acknowledgements.html 15 Jun 2011 04:47:38 -0000 1.1085
@@ -369,6 +369,7 @@
Andrew Grieve,
Andrew Oakley,
Andrew Sidwell,
+ Andrew Simons,
Andrew Smith,
Andrew W. Hagen,
Andrey V. Lukyanov,
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1536
retrieving revision 1.1537
diff -u -d -r1.1536 -r1.1537
--- spec.html 15 Jun 2011 00:47:16 -0000 1.1536
+++ spec.html 15 Jun 2011 04:47:48 -0000 1.1537
@@ -347,7 +347,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.4992.
+This is revision 1.4995.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2011 <a href="http://www.w3.org/"><abbr title="World Wide
Index: number-state.html
===================================================================
RCS file: /sources/public/html5/spec/number-state.html,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- number-state.html 3 Jun 2011 00:48:25 -0000 1.52
+++ number-state.html 15 Jun 2011 04:47:48 -0000 1.53
@@ -1017,13 +1017,16 @@
following function extracts the filename in a suitably compatible
manner:</p>
- <pre>function extractFilename(path) { var x;
- x = path.lastIndexOf('\\');
- if (x >= 0) // Windows-based path
- return path.substr(x+1);
+ <pre>function extractFilename(path) {
+ if (path.substr(0, 12) == "C:\\fakepath\\")
+ return path.substr(12); // modern browser
+ var x;
x = path.lastIndexOf('/');
if (x >= 0) // Unix-based path
return path.substr(x+1);
+ x = path.lastIndexOf('\\');
+ if (x >= 0) // Windows-based path
+ return path.substr(x+1);
return path; // just the filename
}</pre>
Received on Wednesday, 15 June 2011 04:48:01 UTC