[html5] r2789 - [] (0) Make coords='' processing (specifically error handling) more like IE for [...]

whatwg at whatwg.org whatwg at whatwg.org
Wed Feb 11 02:27:56 PST 2009


Author: ianh
Date: 2009-02-11 02:27:55 -0800 (Wed, 11 Feb 2009)
New Revision: 2789

Modified:
   index
   source
Log:
[] (0) Make coords='' processing (specifically error handling) more like IE for the ASCII range. (what IE does is nuts outside the ASCII range -- or rather, I can't work out what the pattern is -- so for now, we ignore that)

Modified: index
===================================================================
--- index	2009-02-11 09:45:21 UTC (rev 2788)
+++ index	2009-02-11 10:27:55 UTC (rev 2789)
@@ -2806,7 +2806,10 @@
       </ol></dd>
 
 
-     <dt>A U+002E FULL STOP character</dt>
+     <!-- <dt>A U+002E FULL STOP character</dt> -->
+     <dt>A character in the range U+0001 .. U+001F, <!-- space --> U+0021 .. U+002B, <!-- comma --> U+002D .. U+002F, <!-- digits --> U+003A, <!-- semicolon --> U+003C .. U+0040, <!-- a-z --> U+005B .. U+0060, <!-- A-Z --> U+007b .. U+007F
+        (i.e. any other non-alphabetic ASCII character)</dt>
+
  <!--
  Test: http://www.hixie.ch/tests/adhoc/html/flow/image-maps/004-demo.html
  IE6 on Wine treats the following characters like this also: U+1-U+1f,
@@ -2915,6 +2918,7 @@
 
 
      <dt>Any other character</dt>
+     <!-- alphabetic a-z A-Z, and non-ASCII -->
 
      <dd>
 

Modified: source
===================================================================
--- source	2009-02-11 09:45:21 UTC (rev 2788)
+++ source	2009-02-11 10:27:55 UTC (rev 2789)
@@ -1963,7 +1963,10 @@
      </dd>
 
 
-     <dt>A U+002E FULL STOP character</dt>
+     <!-- <dt>A U+002E FULL STOP character</dt> -->
+     <dt>A character in the range U+0001 .. U+001F, <!-- space --> U+0021 .. U+002B, <!-- comma --> U+002D .. U+002F, <!-- digits --> U+003A, <!-- semicolon --> U+003C .. U+0040, <!-- a-z --> U+005B .. U+0060, <!-- A-Z --> U+007b .. U+007F
+        (i.e. any other non-alphabetic ASCII character)</dt>
+
  <!--
  Test: http://www.hixie.ch/tests/adhoc/html/flow/image-maps/004-demo.html
  IE6 on Wine treats the following characters like this also: U+1-U+1f,
@@ -2077,6 +2080,7 @@
 
 
      <dt>Any other character</dt>
+     <!-- alphabetic a-z A-Z, and non-ASCII -->
 
      <dd>
 




More information about the Commit-Watchers mailing list