[html5] r8712 - [giow] (2) Fix logic error in image maps Fixing https://www.w3.org/Bugs/Public/s [...]

whatwg at whatwg.org whatwg at whatwg.org
Tue Aug 5 17:09:56 PDT 2014


Author: ianh
Date: 2014-08-05 17:09:53 -0700 (Tue, 05 Aug 2014)
New Revision: 8712

Modified:
   complete.html
   index
   source
Log:
[giow] (2) Fix logic error in image maps
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=25964
Affected topics: HTML

Modified: complete.html
===================================================================
--- complete.html	2014-08-05 22:33:37 UTC (rev 8711)
+++ complete.html	2014-08-06 00:09:53 UTC (rev 8712)
@@ -27159,7 +27159,7 @@
 
    <li><p>If the <code id=processing-model-2:attr-area-shape-3><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-rect id=processing-model-2:attr-area-shape-rect-3>rectangle state</a>, and the first number in the list is
    numerically less than the third number in the list, then swap those two numbers around.<li><p>If the <code id=processing-model-2:attr-area-shape-4><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-rect id=processing-model-2:attr-area-shape-rect-4>rectangle state</a>, and the second number in the list is
-   numerically less than the fourth number in the list, then swap those two numbers around.<li><p>If the <code id=processing-model-2:attr-area-shape-5><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-circle id=processing-model-2:attr-area-shape-circle-3>circle state</a>, and the third number in the list is less than
+   numerically greater than the fourth number in the list, then swap those two numbers around.<li><p>If the <code id=processing-model-2:attr-area-shape-5><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-circle id=processing-model-2:attr-area-shape-circle-3>circle state</a>, and the third number in the list is less than
    or equal to zero, then the shape is empty; abort these steps.<li><p>Now, the shape represented by the element is the one described for the entry in the list
    below corresponding to the state of the <code id=processing-model-2:attr-area-shape-6><a href=#attr-area-shape>shape</a></code> attribute:</p>
 

Modified: index
===================================================================
--- index	2014-08-05 22:33:37 UTC (rev 8711)
+++ index	2014-08-06 00:09:53 UTC (rev 8712)
@@ -27159,7 +27159,7 @@
 
    <li><p>If the <code id=processing-model-2:attr-area-shape-3><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-rect id=processing-model-2:attr-area-shape-rect-3>rectangle state</a>, and the first number in the list is
    numerically less than the third number in the list, then swap those two numbers around.<li><p>If the <code id=processing-model-2:attr-area-shape-4><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-rect id=processing-model-2:attr-area-shape-rect-4>rectangle state</a>, and the second number in the list is
-   numerically less than the fourth number in the list, then swap those two numbers around.<li><p>If the <code id=processing-model-2:attr-area-shape-5><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-circle id=processing-model-2:attr-area-shape-circle-3>circle state</a>, and the third number in the list is less than
+   numerically greater than the fourth number in the list, then swap those two numbers around.<li><p>If the <code id=processing-model-2:attr-area-shape-5><a href=#attr-area-shape>shape</a></code> attribute represents the <a href=#attr-area-shape-circle id=processing-model-2:attr-area-shape-circle-3>circle state</a>, and the third number in the list is less than
    or equal to zero, then the shape is empty; abort these steps.<li><p>Now, the shape represented by the element is the one described for the entry in the list
    below corresponding to the state of the <code id=processing-model-2:attr-area-shape-6><a href=#attr-area-shape>shape</a></code> attribute:</p>
 

Modified: source
===================================================================
--- source	2014-08-05 22:33:37 UTC (rev 8711)
+++ source	2014-08-06 00:09:53 UTC (rev 8712)
@@ -35231,7 +35231,7 @@
 
    <li><p>If the <code data-x="attr-area-shape">shape</code> attribute represents the <span
    data-x="attr-area-shape-rect">rectangle state</span>, and the second number in the list is
-   numerically less than the fourth number in the list, then swap those two numbers around.</p></li>
+   numerically greater than the fourth number in the list, then swap those two numbers around.</p></li>
 
    <li><p>If the <code data-x="attr-area-shape">shape</code> attribute represents the <span
    data-x="attr-area-shape-circle">circle state</span>, and the third number in the list is less than



More information about the Commit-Watchers mailing list