[html5] r5495 - [giow] (2) select.size should never return 0 (also affects other attributes) Fix [...]
whatwg at whatwg.org
whatwg at whatwg.org
Sat Sep 25 11:56:12 PDT 2010
Author: ianh
Date: 2010-09-25 11:56:11 -0700 (Sat, 25 Sep 2010)
New Revision: 5495
Modified:
complete.html
index
source
Log:
[giow] (2) select.size should never return 0 (also affects other attributes)
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=10354
Modified: complete.html
===================================================================
--- complete.html 2010-09-25 18:52:56 UTC (rev 5494)
+++ complete.html 2010-09-25 18:56:11 UTC (rev 5495)
@@ -6631,7 +6631,7 @@
similar to the previous case, but zero is not allowed. On getting,
the content attribute must first be parsed according to the
<a href=#rules-for-parsing-non-negative-integers>rules for parsing non-negative integers</a>, and if that is
- successful, and the value is in the range 0 to 2147483647 inclusive,
+ successful, and the value is in the range 1 to 2147483647 inclusive,
the resulting value must be returned. If, on the other hand, it
fails or returns an out of range value, or if the attribute is
absent, the default value must be returned instead, or 1 if there is
Modified: index
===================================================================
--- index 2010-09-25 18:52:56 UTC (rev 5494)
+++ index 2010-09-25 18:56:11 UTC (rev 5495)
@@ -6608,7 +6608,7 @@
similar to the previous case, but zero is not allowed. On getting,
the content attribute must first be parsed according to the
<a href=#rules-for-parsing-non-negative-integers>rules for parsing non-negative integers</a>, and if that is
- successful, and the value is in the range 0 to 2147483647 inclusive,
+ successful, and the value is in the range 1 to 2147483647 inclusive,
the resulting value must be returned. If, on the other hand, it
fails or returns an out of range value, or if the attribute is
absent, the default value must be returned instead, or 1 if there is
Modified: source
===================================================================
--- source 2010-09-25 18:52:56 UTC (rev 5494)
+++ source 2010-09-25 18:56:11 UTC (rev 5495)
@@ -6286,7 +6286,7 @@
similar to the previous case, but zero is not allowed. On getting,
the content attribute must first be parsed according to the
<span>rules for parsing non-negative integers</span>, and if that is
- successful, and the value is in the range 0 to 2147483647 inclusive,
+ successful, and the value is in the range 1 to 2147483647 inclusive,
the resulting value must be returned. If, on the other hand, it
fails or returns an out of range value, or if the attribute is
absent, the default value must be returned instead, or 1 if there is
More information about the Commit-Watchers
mailing list