Skip to content

Commit

Permalink
[e] (0) tweak IDL to be shorter
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=20302
Affected topics: DOM APIs, HTML

git-svn-id: http://svn.whatwg.org/webapps@7734 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 6, 2013
1 parent 3ee72b2 commit 94b5d74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions complete.html
Expand Up @@ -8341,9 +8341,7 @@ <h3 id=documents><span class=secno>3.1 </span>Documents</h3>
readonly attribute <a href=#element>Element</a>? <a href=#dom-document-activeelement title=dom-document-activeElement>activeElement</a>;
boolean <a href=#dom-document-hasfocus title=dom-document-hasFocus>hasFocus</a>();
attribute DOMString <a href=#designMode title=dom-document-designMode>designMode</a>;
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId);
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId, boolean showUI);
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId, boolean showUI, DOMString value);
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId, optional boolean showUI = false, optional DOMString value = '');
boolean <a href=#dom-document-querycommandenabled title=dom-document-queryCommandEnabled>queryCommandEnabled</a>(DOMString commandId);
boolean <a href=#dom-document-querycommandindeterm title=dom-document-queryCommandIndeterm>queryCommandIndeterm</a>(DOMString commandId);
boolean <a href=#dom-document-querycommandstate title=dom-document-queryCommandState>queryCommandState</a>(DOMString commandId);
Expand Down Expand Up @@ -75933,6 +75931,7 @@ <h4 id=making-entire-documents-editable:-the-designmode-idl-attribute><span clas
</div>


<!--CLEANUP-->
<h4 id=best-practices-for-in-page-editors><span class=secno>8.6.3 </span>Best practices for in-page editors</h4>

<p>Authors are encouraged to set the 'white-space' property on <a href=#editing-host title="editing host">editing hosts</a> and on markup that was
Expand Down
5 changes: 2 additions & 3 deletions index
Expand Up @@ -8341,9 +8341,7 @@ partial /*sealed*/ interface <dfn id=document>Document</dfn> {
readonly attribute <a href=#element>Element</a>? <a href=#dom-document-activeelement title=dom-document-activeElement>activeElement</a>;
boolean <a href=#dom-document-hasfocus title=dom-document-hasFocus>hasFocus</a>();
attribute DOMString <a href=#designMode title=dom-document-designMode>designMode</a>;
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId);
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId, boolean showUI);
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId, boolean showUI, DOMString value);
boolean <a href=#execCommand title=dom-document-execCommand>execCommand</a>(DOMString commandId, optional boolean showUI = false, optional DOMString value = '');
boolean <a href=#dom-document-querycommandenabled title=dom-document-queryCommandEnabled>queryCommandEnabled</a>(DOMString commandId);
boolean <a href=#dom-document-querycommandindeterm title=dom-document-queryCommandIndeterm>queryCommandIndeterm</a>(DOMString commandId);
boolean <a href=#dom-document-querycommandstate title=dom-document-queryCommandState>queryCommandState</a>(DOMString commandId);
Expand Down Expand Up @@ -75933,6 +75931,7 @@ addShortcutKeyLabel(document.getElementById('c'));</pre>
</div>


<!--CLEANUP-->
<h4 id=best-practices-for-in-page-editors><span class=secno>8.6.3 </span>Best practices for in-page editors</h4>

<p>Authors are encouraged to set the 'white-space' property on <a href=#editing-host title="editing host">editing hosts</a> and on markup that was
Expand Down
5 changes: 2 additions & 3 deletions source
Expand Up @@ -8050,9 +8050,7 @@ partial /*sealed*/ interface <dfn>Document</dfn> {
readonly attribute <span>Element</span>? <span title="dom-document-activeElement">activeElement</span>;
boolean <span title="dom-document-hasFocus">hasFocus</span>();
attribute DOMString <span title="dom-document-designMode">designMode</span>;
boolean <span title="dom-document-execCommand">execCommand</span>(DOMString commandId);
boolean <span title="dom-document-execCommand">execCommand</span>(DOMString commandId, boolean showUI);
boolean <span title="dom-document-execCommand">execCommand</span>(DOMString commandId, boolean showUI, DOMString value);
boolean <span title="dom-document-execCommand">execCommand</span>(DOMString commandId, optional boolean showUI = false, optional DOMString value = '');
boolean <span title="dom-document-queryCommandEnabled">queryCommandEnabled</span>(DOMString commandId);
boolean <span title="dom-document-queryCommandIndeterm">queryCommandIndeterm</span>(DOMString commandId);
boolean <span title="dom-document-queryCommandState">queryCommandState</span>(DOMString commandId);
Expand Down Expand Up @@ -88471,6 +88469,7 @@ addShortcutKeyLabel(document.getElementById('c'));</pre>
</div>


<!--CLEANUP-->
<h4>Best practices for in-page editors</h4>

<p>Authors are encouraged to set the 'white-space' property on <span
Expand Down

0 comments on commit 94b5d74

Please sign in to comment.