[html5] r8087 - [giow] (2) Rename 'ErrorEvent.column' to 'colno' to match IE. Affected topics: H [...]

whatwg at whatwg.org whatwg at whatwg.org
Thu Jul 25 16:42:42 PDT 2013


Author: ianh
Date: 2013-07-25 16:42:40 -0700 (Thu, 25 Jul 2013)
New Revision: 8087

Modified:
   complete.html
   index
   source
Log:
[giow] (2) Rename 'ErrorEvent.column' to 'colno' to match IE.
Affected topics: HTML, Workers

Modified: complete.html
===================================================================
--- complete.html	2013-07-24 18:50:53 UTC (rev 8086)
+++ complete.html	2013-07-25 23:42:40 UTC (rev 8087)
@@ -256,7 +256,7 @@
 
   <header class=head id=head><p><a href=http://www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 24 July 2013</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 25 July 2013</h2>
    </hgroup><dl><dt><strong>Web developer edition:</strong></dt>
     <dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
     <dt>Multiple-page version:</dt>
@@ -71819,7 +71819,7 @@
 
    <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code> attribute to <var title="">line</var>.</li>
 
-   <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-column><a href=#dom-errorevent-column>column</a></code> attribute to <var title="">col</var>.</li>
+   <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-colno><a href=#dom-errorevent-colno>colno</a></code> attribute to <var title="">col</var>.</li>
 
    <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-object>error</code> attribute to <var title="">error object</var>.</li>
 
@@ -71848,7 +71848,7 @@
   readonly attribute DOMString <a href=#dom-errorevent-message title=dom-ErrorEvent-message>message</a>;
   readonly attribute DOMString <a href=#dom-errorevent-filename title=dom-ErrorEvent-filename>filename</a>;
   readonly attribute unsigned long <a href=#dom-errorevent-lineno title=dom-ErrorEvent-lineno>lineno</a>;
-  readonly attribute unsigned long <a href=#dom-errorevent-column title=dom-ErrorEvent-column>column</a>;
+  readonly attribute unsigned long <a href=#dom-errorevent-colno title=dom-ErrorEvent-colno>colno</a>;
   readonly attribute any <a href=#dom-errorevent-error title=dom-ErrorEvent-error>error</a>;
 };
 
@@ -71877,7 +71877,7 @@
   represents the line number where the error occurred in the
   script.</p>
 
-  <p>The <dfn id=dom-errorevent-column title=dom-ErrorEvent-column><code>column</code></dfn>
+  <p>The <dfn id=dom-errorevent-colno title=dom-ErrorEvent-colno><code>colno</code></dfn>
   attribute must return the value it was initialized to. When the
   object is created, this attribute must be initialized to zero. It
   represents the column number where the error occurred in the
@@ -72457,9 +72457,9 @@
       <dl class=switch><dt>If the attribute is the <code title=handler-onerror><a href=#handler-onerror>onerror</a></code> attribute of
        the <code><a href=#window>Window</a></code> object</dt>
 
-       <dd>Let the function have five arguments, named <code title="">event</code>, <code title="">source</code>, <code title="">lineno</code>, <code title="">column</code>,
+       <dd>Let the function have five arguments, named <code title="">event</code>, <code title="">source</code>, <code title="">lineno</code>, <code title="">colno</code>,
        and <code title="">error</code>.</dd>
-       <!-- /column/ is new as of 2012; see https://www.w3.org/Bugs/Public/show_bug.cgi?id=13319 -->
+       <!-- /colno/ is new as of 2012; see https://www.w3.org/Bugs/Public/show_bug.cgi?id=13319 and 22800 -->
        <!-- /error/ is new as of 2013; see http://lists.w3.org/Archives/Public/public-whatwg-archive/2013Jul/0313.html -->
 
        <dt>Otherwise</dt>
@@ -72610,7 +72610,7 @@
       the first one having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-message><a href=#dom-errorevent-message>message</a></code> attribute,
       the second having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-filename><a href=#dom-errorevent-filename>filename</a></code> attribute,
       the third having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code> attribute,
-      the fourth having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-column><a href=#dom-errorevent-column>column</a></code> attribute,
+      the fourth having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-colno><a href=#dom-errorevent-colno>colno</a></code> attribute,
       the fifth having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-error><a href=#dom-errorevent-error>error</a></code> attribute, and
       with the <i title=dfn-callback-this-value>callback this value</i> set to <var title="">E</var>'s <code title=dom-Event-currentTarget>currentTarget</code>. Let the return
       value be <var title="">return value</var>. <a href=#refsWEBIDL>[WEBIDL]</a></p>
@@ -80775,7 +80775,7 @@
   handled</a></i> afterwards, the user
   agent must <a href=#queue-a-task>queue a task</a> to <a href=#concept-event-fire title=concept-event-fire>fire</a> a <a href=#concept-events-trusted title=concept-events-trusted>trusted</a> event that uses the <code><a href=#errorevent>ErrorEvent</a></code>
   interface, with the name <code title=event-error>error</code>, that doesn't bubble and is
-  cancelable, with its <code title=dom-ErrorEvent-message><a href=#dom-errorevent-message>message</a></code>, <code title=dom-ErrorEvent-filename><a href=#dom-errorevent-filename>filename</a></code>, <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code>, <code title=dom-ErrorEvent-column><a href=#dom-errorevent-column>column</a></code>,
+  cancelable, with its <code title=dom-ErrorEvent-message><a href=#dom-errorevent-message>message</a></code>, <code title=dom-ErrorEvent-filename><a href=#dom-errorevent-filename>filename</a></code>, <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code>, <code title=dom-ErrorEvent-colno><a href=#dom-errorevent-colno>colno</a></code>,
   attributes initialized appropriately,
   and with the <code title=dom-ErrorEvent-error><a href=#dom-errorevent-error>error</a></code> attribute initialized to null,
   at the <code><a href=#worker>Worker</a></code> object associated with the

Modified: index
===================================================================
--- index	2013-07-24 18:50:53 UTC (rev 8086)
+++ index	2013-07-25 23:42:40 UTC (rev 8087)
@@ -256,7 +256,7 @@
 
   <header class=head id=head><p><a href=http://www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 24 July 2013</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 25 July 2013</h2>
    </hgroup><dl><dt><strong>Web developer edition:</strong></dt>
     <dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
     <dt>Multiple-page version:</dt>
@@ -71819,7 +71819,7 @@
 
    <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code> attribute to <var title="">line</var>.</li>
 
-   <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-column><a href=#dom-errorevent-column>column</a></code> attribute to <var title="">col</var>.</li>
+   <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-colno><a href=#dom-errorevent-colno>colno</a></code> attribute to <var title="">col</var>.</li>
 
    <li><p>Initialize <var title="">event</var>'s <code title=dom-ErrorEvent-object>error</code> attribute to <var title="">error object</var>.</li>
 
@@ -71848,7 +71848,7 @@
   readonly attribute DOMString <a href=#dom-errorevent-message title=dom-ErrorEvent-message>message</a>;
   readonly attribute DOMString <a href=#dom-errorevent-filename title=dom-ErrorEvent-filename>filename</a>;
   readonly attribute unsigned long <a href=#dom-errorevent-lineno title=dom-ErrorEvent-lineno>lineno</a>;
-  readonly attribute unsigned long <a href=#dom-errorevent-column title=dom-ErrorEvent-column>column</a>;
+  readonly attribute unsigned long <a href=#dom-errorevent-colno title=dom-ErrorEvent-colno>colno</a>;
   readonly attribute any <a href=#dom-errorevent-error title=dom-ErrorEvent-error>error</a>;
 };
 
@@ -71877,7 +71877,7 @@
   represents the line number where the error occurred in the
   script.</p>
 
-  <p>The <dfn id=dom-errorevent-column title=dom-ErrorEvent-column><code>column</code></dfn>
+  <p>The <dfn id=dom-errorevent-colno title=dom-ErrorEvent-colno><code>colno</code></dfn>
   attribute must return the value it was initialized to. When the
   object is created, this attribute must be initialized to zero. It
   represents the column number where the error occurred in the
@@ -72457,9 +72457,9 @@
       <dl class=switch><dt>If the attribute is the <code title=handler-onerror><a href=#handler-onerror>onerror</a></code> attribute of
        the <code><a href=#window>Window</a></code> object</dt>
 
-       <dd>Let the function have five arguments, named <code title="">event</code>, <code title="">source</code>, <code title="">lineno</code>, <code title="">column</code>,
+       <dd>Let the function have five arguments, named <code title="">event</code>, <code title="">source</code>, <code title="">lineno</code>, <code title="">colno</code>,
        and <code title="">error</code>.</dd>
-       <!-- /column/ is new as of 2012; see https://www.w3.org/Bugs/Public/show_bug.cgi?id=13319 -->
+       <!-- /colno/ is new as of 2012; see https://www.w3.org/Bugs/Public/show_bug.cgi?id=13319 and 22800 -->
        <!-- /error/ is new as of 2013; see http://lists.w3.org/Archives/Public/public-whatwg-archive/2013Jul/0313.html -->
 
        <dt>Otherwise</dt>
@@ -72610,7 +72610,7 @@
       the first one having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-message><a href=#dom-errorevent-message>message</a></code> attribute,
       the second having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-filename><a href=#dom-errorevent-filename>filename</a></code> attribute,
       the third having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code> attribute,
-      the fourth having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-column><a href=#dom-errorevent-column>column</a></code> attribute,
+      the fourth having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-colno><a href=#dom-errorevent-colno>colno</a></code> attribute,
       the fifth having the value of <var title="">E</var>'s <code title=dom-ErrorEvent-error><a href=#dom-errorevent-error>error</a></code> attribute, and
       with the <i title=dfn-callback-this-value>callback this value</i> set to <var title="">E</var>'s <code title=dom-Event-currentTarget>currentTarget</code>. Let the return
       value be <var title="">return value</var>. <a href=#refsWEBIDL>[WEBIDL]</a></p>
@@ -80775,7 +80775,7 @@
   handled</a></i> afterwards, the user
   agent must <a href=#queue-a-task>queue a task</a> to <a href=#concept-event-fire title=concept-event-fire>fire</a> a <a href=#concept-events-trusted title=concept-events-trusted>trusted</a> event that uses the <code><a href=#errorevent>ErrorEvent</a></code>
   interface, with the name <code title=event-error>error</code>, that doesn't bubble and is
-  cancelable, with its <code title=dom-ErrorEvent-message><a href=#dom-errorevent-message>message</a></code>, <code title=dom-ErrorEvent-filename><a href=#dom-errorevent-filename>filename</a></code>, <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code>, <code title=dom-ErrorEvent-column><a href=#dom-errorevent-column>column</a></code>,
+  cancelable, with its <code title=dom-ErrorEvent-message><a href=#dom-errorevent-message>message</a></code>, <code title=dom-ErrorEvent-filename><a href=#dom-errorevent-filename>filename</a></code>, <code title=dom-ErrorEvent-lineno><a href=#dom-errorevent-lineno>lineno</a></code>, <code title=dom-ErrorEvent-colno><a href=#dom-errorevent-colno>colno</a></code>,
   attributes initialized appropriately,
   and with the <code title=dom-ErrorEvent-error><a href=#dom-errorevent-error>error</a></code> attribute initialized to null,
   at the <code><a href=#worker>Worker</a></code> object associated with the

Modified: source
===================================================================
--- source	2013-07-24 18:50:53 UTC (rev 8086)
+++ source	2013-07-25 23:42:40 UTC (rev 8087)
@@ -80316,7 +80316,7 @@
    title="dom-ErrorEvent-lineno">lineno</code> attribute to <var title="">line</var>.</p></li>
 
    <li><p>Initialize <var title="">event</var>'s <code
-   title="dom-ErrorEvent-column">column</code> attribute to <var title="">col</var>.</p></li>
+   title="dom-ErrorEvent-colno">colno</code> attribute to <var title="">col</var>.</p></li>
 
    <li><p>Initialize <var title="">event</var>'s <code
    title="dom-ErrorEvent-object">error</code> attribute to <var title="">error object</var>.</p></li>
@@ -80354,7 +80354,7 @@
   readonly attribute DOMString <span title="dom-ErrorEvent-message">message</span>;
   readonly attribute DOMString <span title="dom-ErrorEvent-filename">filename</span>;
   readonly attribute unsigned long <span title="dom-ErrorEvent-lineno">lineno</span>;
-  readonly attribute unsigned long <span title="dom-ErrorEvent-column">column</span>;
+  readonly attribute unsigned long <span title="dom-ErrorEvent-colno">colno</span>;
   readonly attribute any <span title="dom-ErrorEvent-error">error</span>;
 };
 
@@ -80385,7 +80385,7 @@
   represents the line number where the error occurred in the
   script.</p>
 
-  <p>The <dfn title="dom-ErrorEvent-column"><code>column</code></dfn>
+  <p>The <dfn title="dom-ErrorEvent-colno"><code>colno</code></dfn>
   attribute must return the value it was initialized to. When the
   object is created, this attribute must be initialized to zero. It
   represents the column number where the error occurred in the
@@ -81068,9 +81068,9 @@
        the <code>Window</code> object</dt>
 
        <dd>Let the function have five arguments, named <code title="">event</code>, <code
-       title="">source</code>, <code title="">lineno</code>, <code title="">column</code>,
+       title="">source</code>, <code title="">lineno</code>, <code title="">colno</code>,
        and <code title="">error</code>.</dd>
-       <!-- /column/ is new as of 2012; see https://www.w3.org/Bugs/Public/show_bug.cgi?id=13319 -->
+       <!-- /colno/ is new as of 2012; see https://www.w3.org/Bugs/Public/show_bug.cgi?id=13319 and 22800 -->
        <!-- /error/ is new as of 2013; see http://lists.w3.org/Archives/Public/public-whatwg-archive/2013Jul/0313.html -->
 
        <dt>Otherwise</dt>
@@ -81240,7 +81240,7 @@
       the first one having the value of <var title="">E</var>'s <code title="dom-ErrorEvent-message">message</code> attribute,
       the second having the value of <var title="">E</var>'s <code title="dom-ErrorEvent-filename">filename</code> attribute,
       the third having the value of <var title="">E</var>'s <code title="dom-ErrorEvent-lineno">lineno</code> attribute,
-      the fourth having the value of <var title="">E</var>'s <code title="dom-ErrorEvent-column">column</code> attribute,
+      the fourth having the value of <var title="">E</var>'s <code title="dom-ErrorEvent-colno">colno</code> attribute,
       the fifth having the value of <var title="">E</var>'s <code title="dom-ErrorEvent-error">error</code> attribute, and
       with the <i title="dfn-callback-this-value">callback this value</i> set to <var
       title="">E</var>'s <code title="dom-Event-currentTarget">currentTarget</code>. Let the return
@@ -89945,7 +89945,7 @@
   interface, with the name <code title="event-error">error</code>, that doesn't bubble and is
   cancelable, with its <code title="dom-ErrorEvent-message">message</code>, <code
   title="dom-ErrorEvent-filename">filename</code>, <code
-  title="dom-ErrorEvent-lineno">lineno</code>, <code title="dom-ErrorEvent-column">column</code>,
+  title="dom-ErrorEvent-lineno">lineno</code>, <code title="dom-ErrorEvent-colno">colno</code>,
   attributes initialized appropriately,
   and with the <code title="dom-ErrorEvent-error">error</code> attribute initialized to null,
   at the <code>Worker</code> object associated with the




More information about the Commit-Watchers mailing list