[html5] r2902 - [e] (0) fix errors related to use of class=impl (credit: sp)

whatwg at whatwg.org whatwg at whatwg.org
Tue Mar 24 01:57:07 PDT 2009


Author: ianh
Date: 2009-03-24 01:57:06 -0700 (Tue, 24 Mar 2009)
New Revision: 2902

Modified:
   index
   source
Log:
[e] (0) fix errors related to use of class=impl (credit: sp)

Modified: index
===================================================================
--- index	2009-03-24 08:45:30 UTC (rev 2901)
+++ index	2009-03-24 08:57:06 UTC (rev 2902)
@@ -6582,7 +6582,7 @@
   "<code title="">HTML</code>" and "<code>5.0</code>" (respectively)
   to determine whether or not this module is supported by the
   implementation. In addition to the feature string "<code title="">HTML</code>", the feature string "<code title="">XHTML</code>" (with version string "<code>5.0</code>") can
-  be used to check if the implementation supports XHTML. <span title=impl>User agents should respond with a true value when the
+  be used to check if the implementation supports XHTML. <span class=impl>User agents should respond with a true value when the
   <code><a href=#hasfeature>hasFeature</a></code> method is queried with these values.</span>
   Authors are cautioned, however, that UAs returning true might not be
   perfectly compliant, and that UAs returning false might well have
@@ -8412,7 +8412,7 @@
   behavior</a>, which means that the user can activate them. This
   triggers a sequence of events dependent on the activation mechanism,
   and normally culminating in a <code title=event-click>click</code>
-  event followed by a <code title=event-DOMActivate>DOMActivate</code> event<span title=impl>, as described below</span>.</p>
+  event followed by a <code title=event-DOMActivate>DOMActivate</code> event<span class=impl>, as described below</span>.</p>
 
   <div class=impl>
 
@@ -8644,7 +8644,7 @@
 
     <p>The canonical form of HTML markup is all-lowercase; thus, this
     method will <a href=#converted-to-lowercase title="converted to lowercase">lowercase</a>
-    the argument before creating the requisite element. <span title=impl>Also, the element created must be in the <a href=#html-namespace-0>HTML
+    the argument before creating the requisite element. <span class=impl>Also, the element created must be in the <a href=#html-namespace-0>HTML
     namespace</a></span>.</p>
 
     <p class=note>This doesn't apply to <code title="">Document.createElementNS()</code>. Thus, it is possible,
@@ -9557,7 +9557,7 @@
   </div>
 
   <p>The string to use as the document's title is given by the <code title=dom-document-title><a href=#document.title>document.title</a></code> DOM
-  attribute. <span title=impl>User agents should use the document's
+  attribute. <span class=impl>User agents should use the document's
   title when referring to the document in their user
   interface.</span></p>
 
@@ -12918,7 +12918,7 @@
   attribute.</p>
 
   <p>If the <code title=attr-blockquote-cite><a href=#attr-blockquote-cite>cite</a></code> attribute
-  is present, it must be a <a href=#valid-url>valid URL</a>. <span title=impl>To obtain the corresponding citation link, the value of
+  is present, it must be a <a href=#valid-url>valid URL</a>. <span class=impl>To obtain the corresponding citation link, the value of
   the attribute must be <a href=#resolve-a-url title="resolve a url">resolved</a>
   relative to the element. User agents should allow users to follow
   such citation links.</span></p>
@@ -21801,7 +21801,7 @@
 
   <table><thead><tr><th> Type <th> Other arguments
    <tbody><tr><td> image/jpeg
-     <td> The second argument<span title=impl>, if it</span> is a
+     <td> The second argument<span class=impl>, if it</span> is a
      number between 0.0 and 1.0<span class=impl>, must be</span>
      treated as the desired quality level. <span class=impl>If it is
      not a number or is outside that range, the user agent must use
@@ -24610,7 +24610,7 @@
   attribute must, if specified, contain a <a href=#valid-list-of-integers>valid list of
   integers</a>. This attribute gives the coordinates for the shape
   described by the <code title=attr-area-shape><a href=#attr-area-shape>shape</a></code>
-  attribute. <span title=impl>The processing for this attribute is
+  attribute. <span class=impl>The processing for this attribute is
   described as part of the <a href=#image-map>image map</a> processing
   model.</span></p>
 
@@ -25139,7 +25139,7 @@
   specification does not define a precise heuristic.</p>
 
   <p>Tables have rows and columns given by their descendants. A table
-  must not have an empty row or column<span title=impl>, as
+  must not have an empty row or column<span class=impl>, as
   described in the description of the <a href=#table-model>table
   model</a></span>. <!-- conformance criteria for detecting this
   are in the table model section --></p>
@@ -25988,7 +25988,7 @@
 
   <p>These attributes give the number of columns and rows respectively
   that the cell is to span. These attributes must not be used to
-  overlap cells<span title=impl>, as described in the description of
+  overlap cells<span class=impl>, as described in the description of
   the <a href=#table-model>table model</a></span>.</p> <!-- conformance criteria
   for determining when this is violated are given in the processing
   model -->
@@ -40245,10 +40245,10 @@
    <li><p>Return to the first step of the <a href=#event-loop>event
    loop</a>.</li>
 
-  </ol><hr><p class=impl>Some of the algorithms in this specification, for
-  historical reasons, require the user agent to <dfn id=pause>pause</dfn> while
-  running a <a href=#concept-task title=concept-task>task</a> until some
-  condition has been met. While a user agent has a paused <a href=#concept-task title=concept-task>task</a>, the corresponding <a href=#event-loop>event
+  </ol><hr><p>Some of the algorithms in this specification, for historical
+  reasons, require the user agent to <dfn id=pause>pause</dfn> while running a
+  <a href=#concept-task title=concept-task>task</a> until some condition has been
+  met. While a user agent has a paused <a href=#concept-task title=concept-task>task</a>, the corresponding <a href=#event-loop>event
   loop</a> must not run further <a href=#concept-task title=concept-task>tasks</a>, and any script in the currently
   running <a href=#concept-task title=concept-task>task</a> must block. User
   agents should remain responsive to user input while paused, however,

Modified: source
===================================================================
--- source	2009-03-24 08:45:30 UTC (rev 2901)
+++ source	2009-03-24 08:57:06 UTC (rev 2902)
@@ -6637,7 +6637,7 @@
   title="">HTML</code>", the feature string "<code
   title="">XHTML</code>" (with version string "<code>5.0</code>") can
   be used to check if the implementation supports XHTML. <span
-  title="impl">User agents should respond with a true value when the
+  class="impl">User agents should respond with a true value when the
   <code>hasFeature</code> method is queried with these values.</span>
   Authors are cautioned, however, that UAs returning true might not be
   perfectly compliant, and that UAs returning false might well have
@@ -8720,7 +8720,7 @@
   and normally culminating in a <code title="event-click">click</code>
   event followed by a <code
   title="event-DOMActivate">DOMActivate</code> event<span
-  title="impl">, as described below</span>.</p>
+  class="impl">, as described below</span>.</p>
 
   <div class="impl">
 
@@ -8975,7 +8975,7 @@
     <p>The canonical form of HTML markup is all-lowercase; thus, this
     method will <span title="converted to lowercase">lowercase</span>
     the argument before creating the requisite element. <span
-    title="impl">Also, the element created must be in the <span>HTML
+    class="impl">Also, the element created must be in the <span>HTML
     namespace</span></span>.</p>
 
     <p class="note">This doesn't apply to <code
@@ -10010,7 +10010,7 @@
 
   <p>The string to use as the document's title is given by the <code
   title="dom-document-title">document.title</code> DOM
-  attribute. <span title="impl">User agents should use the document's
+  attribute. <span class="impl">User agents should use the document's
   title when referring to the document in their user
   interface.</span></p>
 
@@ -13825,7 +13825,7 @@
 
   <p>If the <code title="attr-blockquote-cite">cite</code> attribute
   is present, it must be a <span>valid URL</span>. <span
-  title="impl">To obtain the corresponding citation link, the value of
+  class="impl">To obtain the corresponding citation link, the value of
   the attribute must be <span title="resolve a url">resolved</span>
   relative to the element. User agents should allow users to follow
   such citation links.</span></p>
@@ -23782,7 +23782,7 @@
    <tbody>
     <tr>
      <td> image/jpeg
-     <td> The second argument<span title="impl">, if it</span> is a
+     <td> The second argument<span class="impl">, if it</span> is a
      number between 0.0 and 1.0<span class="impl">, must be</span>
      treated as the desired quality level. <span class="impl">If it is
      not a number or is outside that range, the user agent must use
@@ -27155,7 +27155,7 @@
   attribute must, if specified, contain a <span>valid list of
   integers</span>. This attribute gives the coordinates for the shape
   described by the <code title="attr-area-shape">shape</code>
-  attribute. <span title="impl">The processing for this attribute is
+  attribute. <span class="impl">The processing for this attribute is
   described as part of the <span>image map</span> processing
   model.</span></p>
 
@@ -27789,7 +27789,7 @@
   specification does not define a precise heuristic.</p>
 
   <p>Tables have rows and columns given by their descendants. A table
-  must not have an empty row or column<span title="impl">, as
+  must not have an empty row or column<span class="impl">, as
   described in the description of the <span>table
   model</span></span>. <!-- conformance criteria for detecting this
   are in the table model section --></p>
@@ -28763,7 +28763,7 @@
 
   <p>These attributes give the number of columns and rows respectively
   that the cell is to span. These attributes must not be used to
-  overlap cells<span title="impl">, as described in the description of
+  overlap cells<span class="impl">, as described in the description of
   the <span>table model</span></span>.</p> <!-- conformance criteria
   for determining when this is violated are given in the processing
   model -->
@@ -45650,10 +45650,10 @@
 
   <hr>
 
-  <p class="impl">Some of the algorithms in this specification, for
-  historical reasons, require the user agent to <dfn>pause</dfn> while
-  running a <span title="concept-task">task</span> until some
-  condition has been met. While a user agent has a paused <span
+  <p>Some of the algorithms in this specification, for historical
+  reasons, require the user agent to <dfn>pause</dfn> while running a
+  <span title="concept-task">task</span> until some condition has been
+  met. While a user agent has a paused <span
   title="concept-task">task</span>, the corresponding <span>event
   loop</span> must not run further <span
   title="concept-task">tasks</span>, and any script in the currently




More information about the Commit-Watchers mailing list