- From: Simon Pieters via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 14 Sep 2012 12:35:28 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/html4-differences
In directory hutz:/tmp/cvs-serv18692
Modified Files:
Overview.html Overview.src.html
Log Message:
s/ECMAScript/JavaScript/
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/html4-differences/Overview.html,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -d -r1.186 -r1.187
--- Overview.html 14 Sep 2012 12:30:25 -0000 1.186
+++ Overview.html 14 Sep 2012 12:35:20 -0000 1.187
@@ -715,8 +715,9 @@
<li><p>The <code class="external" title="attr-data-*"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#attr-data-*">data-<var>*</var></a></code> collection of author-defined
attributes. Authors can define any attribute they want as long as they
prefix it with <code>data-</code> to avoid clashes with future versions of
- HTML. The only requirement on these attributes is that they are not used
- for user agent extensions.
+ HTML. These are intended to be used to store custom data to be consumed by
+ the Web page or application itself. They are <em>not</em> intended for
+ data to be consumed by other parties (e.g. user agents).
<li><p>The <code class="external" title="attr-draggable"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#the-draggable-attribute">draggable</a></code> and <code class="external" title="attr-dropzone"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#the-dropzone-attribute">dropzone</a></code> attributes can be used together with
the new drag & drop API.
@@ -1631,7 +1632,7 @@
<li><p>The <code class="external" title="attr-script-type"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#attr-script-type">type</a></code>
attribute on <code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#the-script-element">script</a></code> and <code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-style-element">style</a></code> is no longer required if the scripting
- language is ECMAScript and the styling language is CSS, respectively.</p>
+ language is JavaScript and the styling language is CSS, respectively.</p>
<li><p>The <code class="external" title="attr-hyperlink-usemap"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-map-element.html#attr-hyperlink-usemap">usemap</a></code> attribute on <code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/embedded-content-1.html#the-img-element">img</a></code> no longer takes a URL, but instead takes
a <a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-microsyntaxes.html#valid-hash-name-reference">valid hash-name reference</a> to a <code class="external"><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-map-element.html#the-map-element">map</a></code> element.
@@ -2482,7 +2483,7 @@
has been introduced.
<li>The <code>tracks</code> IDL attribute on media elements has been renamed
to <code>textTracks</code>.
- <li>Event handler content attributes now support ECMAScript strict mode.
+ <li>Event handler content attributes now support JavaScript strict mode.
<li>The <code>forminput</code> and <code>formchange</code> events, and
the <code>dispatchFormInput()</code> and <code>dispatchFormChange()</code>
methods have been dropped.
@@ -2723,7 +2724,7 @@
<ul>
<li>A new global attribute called <code>spellcheck</code> has been
added.</li>
- <li>Defined that ECMAScript <code>this</code> in the global object
+ <li>Defined that JavaScript <code>this</code> in the global object
returns a <code>WindowProxy</code> object rather than the
<code>Window</code> object.</li>
<li>The <code>value</code> IDL attribute for <code>input</code>
Index: Overview.src.html
===================================================================
RCS file: /sources/public/html5/html4-differences/Overview.src.html,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -d -r1.200 -r1.201
--- Overview.src.html 14 Sep 2012 12:33:47 -0000 1.200
+++ Overview.src.html 14 Sep 2012 12:35:26 -0000 1.201
@@ -1623,7 +1623,7 @@
<li><p>The <code data-anolis-spec=html title=attr-script-type>type</code>
attribute on <code data-anolis-spec=html>script</code> and <code
data-anolis-spec=html>style</code> is no longer required if the scripting
- language is ECMAScript and the styling language is CSS, respectively.</p>
+ language is JavaScript and the styling language is CSS, respectively.</p>
<li><p>The <code data-anolis-spec=html
title=attr-hyperlink-usemap>usemap</code> attribute on <code
@@ -2680,7 +2680,7 @@
has been introduced.
<li>The <code>tracks</code> IDL attribute on media elements has been renamed
to <code>textTracks</code>.
- <li>Event handler content attributes now support ECMAScript strict mode.
+ <li>Event handler content attributes now support JavaScript strict mode.
<li>The <code>forminput</code> and <code>formchange</code> events, and
the <code>dispatchFormInput()</code> and <code>dispatchFormChange()</code>
methods have been dropped.
@@ -2921,7 +2921,7 @@
<ul>
<li>A new global attribute called <code>spellcheck</code> has been
added.</li>
- <li>Defined that ECMAScript <code>this</code> in the global object
+ <li>Defined that JavaScript <code>this</code> in the global object
returns a <code>WindowProxy</code> object rather than the
<code>Window</code> object.</li>
<li>The <code>value</code> IDL attribute for <code>input</code>
Received on Friday, 14 September 2012 12:35:34 UTC