- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 06 May 2011 01:47:00 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv31192 Modified Files: common-dom-interfaces.html introduction.html spec.html the-canvas-element.html webappapis.html Log Message: Fix event handler attribute interaction with ES (whatwg r6099) [updated by splitter] Index: the-canvas-element.html =================================================================== RCS file: /sources/public/html5/spec/the-canvas-element.html,v retrieving revision 1.895 retrieving revision 1.896 diff -u -d -r1.895 -r1.896 --- the-canvas-element.html 3 May 2011 19:47:20 -0000 1.895 +++ the-canvas-element.html 6 May 2011 01:46:57 -0000 1.896 @@ -406,10 +406,13 @@ instead.</p><!-- CANVAS-FOCUS-FALLBACK --><p>When a <code><a href="#the-canvas-element">canvas</a></code> element <a href="rendering.html#represents">represents</a> <a href="content-models.html#embedded-content">embedded content</a>, the user can still focus descendants of the <code><a href="#the-canvas-element">canvas</a></code> element (in the <a href="content-models.html#fallback-content">fallback - content</a>). This allows authors to make an interactive canvas - keyboard-focusable: authors should have a one-to-one mapping of + content</a>). When an element is focused, it is the target of + keyboard interaction events (even though the element itself is not + visible). This allows authors to make an interactive canvas + keyboard-accessible: authors should have a one-to-one mapping of interactive regions to focusable elements in the <a href="content-models.html#fallback-content">fallback - content</a>.</p><p>The <code><a href="#the-canvas-element">canvas</a></code> element has two attributes to control the + content</a>. (Focus has no effect on mouse interaction + events.) <a href="#DOMEVENTS">[DOMEVENTS]</a></p><p>The <code><a href="#the-canvas-element">canvas</a></code> element has two attributes to control the size of the coordinate space: <dfn id="attr-canvas-width" title="attr-canvas-width"><code>width</code></dfn> and <dfn id="attr-canvas-height" title="attr-canvas-height"><code>height</code></dfn>. These attributes, when specified, must have values that are <a href="common-microsyntaxes.html#valid-non-negative-integer" title="valid non-negative integer">valid non-negative integers</a>. <span class="impl">The <a href="common-microsyntaxes.html#rules-for-parsing-non-negative-integers">rules for parsing Index: common-dom-interfaces.html =================================================================== RCS file: /sources/public/html5/spec/common-dom-interfaces.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- common-dom-interfaces.html 5 May 2011 21:47:02 -0000 1.46 +++ common-dom-interfaces.html 6 May 2011 01:46:57 -0000 1.47 @@ -1079,12 +1079,12 @@ <li>Otherwise, <a href="common-microsyntaxes.html#split-a-string-on-spaces" title="split a string on spaces">split the underlying string on spaces</a> to get the list of tokens in the - object's underlying string.</li> + <code><a href="#domtokenlist">DOMTokenList</a></code> object's underlying string.</li> <li>If the token indicated by <var title="">token</var> is a <a href="infrastructure.html#case-sensitive">case-sensitive</a> match for one of the tokens in the - object's underlying string then return true and stop this - algorithm.</li> + <code><a href="#domtokenlist">DOMTokenList</a></code> object's underlying string then return + true and stop this algorithm.</li> <li>Otherwise, return false.</li> @@ -1101,7 +1101,7 @@ <li>Otherwise, <a href="common-microsyntaxes.html#split-a-string-on-spaces" title="split a string on spaces">split the underlying string on spaces</a> to get the list of tokens in the - object's underlying string.</li> + <code><a href="#domtokenlist">DOMTokenList</a></code> object's underlying string.</li> <li>If the given <var title="">token</var> is a <a href="infrastructure.html#case-sensitive">case-sensitive</a> match for one of the tokens in the @@ -1144,7 +1144,7 @@ <li>Otherwise, <a href="common-microsyntaxes.html#split-a-string-on-spaces" title="split a string on spaces">split the underlying string on spaces</a> to get the list of tokens in the - object's underlying string.</li> + <code><a href="#domtokenlist">DOMTokenList</a></code> object's underlying string.</li> <li>If the given <var title="">token</var> is a <a href="infrastructure.html#case-sensitive">case-sensitive</a> match for one of the tokens in the @@ -1161,9 +1161,8 @@ <li>Return true.</li> - </ol><p>Objects implementing the <code><a href="#domtokenlist">DOMTokenList</a></code> interface must - <dfn id="dom-tokenlist-tostring" title="dom-tokenlist-toString">stringify</dfn> to the object's - underlying string representation.</p> + </ol><p>A <code><a href="#domtokenlist">DOMTokenList</a></code> object must <dfn id="dom-tokenlist-tostring" title="dom-tokenlist-toString">stringify</dfn> to the value of the + <code><a href="#domtokenlist">DOMTokenList</a></code> object's underlying string.</p> </div><h4 id="domsettabletokenlist-0"><span class="secno">2.8.4 </span>DOMSettableTokenList</h4><p>The <code><a href="#domsettabletokenlist">DOMSettableTokenList</a></code> interface is the same as the <code><a href="#domtokenlist">DOMTokenList</a></code> interface, except that it allows the Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1478 retrieving revision 1.1479 diff -u -d -r1.1478 -r1.1479 --- spec.html 6 May 2011 00:47:29 -0000 1.1478 +++ spec.html 6 May 2011 01:46:57 -0000 1.1479 @@ -367,7 +367,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.4899. +This is revision 1.4903. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide Index: introduction.html =================================================================== RCS file: /sources/public/html5/spec/introduction.html,v retrieving revision 1.1033 retrieving revision 1.1034 diff -u -d -r1.1033 -r1.1034 --- introduction.html 3 May 2011 22:46:53 -0000 1.1033 +++ introduction.html 6 May 2011 01:46:57 -0000 1.1034 @@ -1035,10 +1035,10 @@ <div class="example"> <p>In the fragments below, for example, the semantics are - nonsensical: a row cannot simultaneously be a cell, nor can a - radio button be a progress bar.</p> + nonsensical: a separator cannot simultaneously be a cell, nor can + a radio button be a progress bar.</p> - <pre class="bad"><tr role="cell"></pre> + <pre class="bad"><hr role="cell"></pre> <pre class="bad"><input type=radio role=progressbar></pre> </div> Index: webappapis.html =================================================================== RCS file: /sources/public/html5/spec/webappapis.html,v retrieving revision 1.169 retrieving revision 1.170 diff -u -d -r1.169 -r1.170 --- webappapis.html 3 May 2011 22:46:55 -0000 1.169 +++ webappapis.html 6 May 2011 01:46:58 -0000 1.170 @@ -1182,10 +1182,12 @@ <li> <p>If <var title="">body</var> is not parsable as - <i>FunctionBody</i> then abort these steps.</p> + <i>FunctionBody</i> or if parsing detects an <i>early error</i> + then abort these steps.</p> <p class="note"><i>FunctionBody</i> is defined in ECMAScript - edition 5 section 13 Function Definition. <a href="references.html#refsECMA262">[ECMA262]</a></p> + edition 5 section 13 Function Definition. <i>Early error</i> is + defined in ECMAScript edition 5 section 16 Errors. <a href="references.html#refsECMA262">[ECMA262]</a></p> </li> @@ -1199,15 +1201,6 @@ </li> - <li> - - <p>If <var title="">strict</var> is true, and anything in <var title="">body</var> is a <code>SyntaxError</code> according to the - Strict Mode Restrictions, then abort these steps.</p> - - <p class="note">The Strict Mode Restrictions are those listed in - ECMAScript edition 5 section 13.1 Strict Mode Restrictions. <a href="references.html#refsECMA262">[ECMA262]</a></p> - - </li> <li>
Received on Friday, 6 May 2011 01:47:01 UTC