- From: <bugzilla@jessica.w3.org>
- Date: Thu, 12 Aug 2010 14:26:26 +0000
- To: public-html-bugzilla@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=10352
Summary: The range of unsigned long should be defined to be [0,
2147483647], since no browser allows setting to values
outside that range. See
<https://bugzilla.mozilla.org/show_bug.cgi?id=586118>.
In the following test case, Mozilla, Chrome, and
Safari output 0
Product: HTML WG
Version: unspecified
Platform: Other
URL: http://www.whatwg.org/specs/web-apps/current-work/#ref
lecting-content-attributes-in-idl-attributes
OS/Version: other
Status: NEW
Severity: normal
Priority: P3
Component: HTML5 spec (editor: Ian Hickson)
AssignedTo: ian@hixie.ch
ReportedBy: contributor@whatwg.org
QAContact: public-html-bugzilla@w3.org
CC: mike@w3.org, public-html@w3.org
Section:
http://www.whatwg.org/specs/web-apps/current-work/#reflecting-content-attributes-in-idl-attributes
Comment:
The range of unsigned long should be defined to be [0, 2147483647], since no
browser allows setting to values outside that range. See
<https://bugzilla.mozilla.org/show_bug.cgi?id=586118>. In the following test
case, Mozilla, Chrome, and Safari output 0, and Opera and IE output
2147483647: data:text/html,<!doctype html> <input size=3000000000> <script>
alert(document.getElementsByTagName("input")[0].size); </script>
Posted from: 68.175.61.233
--
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Thursday, 12 August 2010 14:26:28 UTC