- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 12 Oct 2010 21:44:38 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17376
Modified Files:
Overview.html
Log Message:
Move Selection to DOM Range. (whatwg r5617)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4492
retrieving revision 1.4493
diff -u -d -r1.4492 -r1.4493
--- Overview.html 12 Oct 2010 21:20:39 -0000 1.4492
+++ Overview.html 12 Oct 2010 21:44:32 -0000 1.4493
@@ -821,89 +821,91 @@
<li><a href="#a-form-control-s-value"><span class="secno">4.10.19.3 </span>A form control's value</a></li>
<li><a href="#autofocusing-a-form-control"><span class="secno">4.10.19.4 </span>Autofocusing a form control</a></li>
<li><a href="#limiting-user-input-length"><span class="secno">4.10.19.5 </span>Limiting user input length</a></li>
- <li><a href="#form-submission-0"><span class="secno">4.10.19.6 </span>Form submission</a></ol></li>
- <li><a href="#constraints"><span class="secno">4.10.20 </span>Constraints</a>
+ <li><a href="#form-submission-0"><span class="secno">4.10.19.6 </span>Form submission</a></ol></ol></li>
+ <li><a href="#textFieldSelection"><span class="secno">4.11 </span>APIs for the text field selections</a>
+ <ol>
+ <li><a href="#constraints"><span class="secno">4.11.1 </span>Constraints</a>
<ol>
- <li><a href="#definitions"><span class="secno">4.10.20.1 </span>Definitions</a></li>
[...1614 lines suppressed...]
- </div><h3 id="editing-apis"><span class="secno">7.11 </span>Editing APIs</h3><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-execCommand"><a href="#execCommand">execCommand</a></code>(<var title="">commandId</var> [, <var title="">showUI</var> [, <var title="">value</var> ] ] )</dt>
+ </div><h3 id="editing-apis"><span class="secno">7.10 </span>Editing APIs</h3><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-execCommand"><a href="#execCommand">execCommand</a></code>(<var title="">commandId</var> [, <var title="">showUI</var> [, <var title="">value</var> ] ] )</dt>
<dd>
@@ -52531,10 +52170,9 @@
<p>The <dfn id="execCommand" title="dom-document-execCommand"><code>execCommand(<var title="">commandId</var>, <var title="">showUI</var>, <var title="">value</var>)</code></dfn> method on the
<code><a href="#htmldocument">HTMLDocument</a></code> interface allows scripts to perform
- actions on the <a href="#the-selection" title="the selection">current selection</a>
- or at the current caret position. Generally, these commands would be
- used to implement editor UI, for example having a "delete" button on
- a toolbar.</p>
+ actions on the current selection or at the current caret position.
+ Generally, these commands would be used to implement editor UI, for
+ example having a "delete" button on a toolbar.</p>
<p>There are three variants to this method, with one, two, and three
arguments respectively. The <var title="">showUI</var> and <var title="">value</var> parameters, even if specified, are ignored
Received on Tuesday, 12 October 2010 21:44:39 UTC