#5091 closed bug (wontfix)
Attribute type of "multiple" in chrome/safari/firefox
Reported by: | assertfail | Owned by: | |
---|---|---|---|
Priority: | blocker | Milestone: | 1.5 |
Component: | attributes | Version: | 1.5 |
Keywords: | Cc: | miketaylr | |
Blocked by: | Blocking: |
Description (last modified by )
For instance if you have an input with id "someid" with a custom attribute "multiple" that has the value "True", then the following evaluates to true: (typeof $("#someid").attr("istrue"))==="boolean" in chrome.
Attachments (1)
Change History (7)
Changed 13 years ago by
Attachment: | chrome.htm added |
---|
comment:1 Changed 13 years ago by
Component: | unfiled → attributes |
---|---|
Description: | modified (diff) |
Summary: | Attribute type inconsistency in chrome → Attribute type of "multiple" in chrome/safari/firefox |
Repro in Firefox 3.6, Chrome 5 and Safari 5, but not IE 8. jQuery is not causing this, it's present in the native DOM. I think what is happening is that since multiple
is a boolean property of the select
element, there is some common DOM code in the browser that is processing this attribute for input
elements as well.
It's always a very good idea to avoid any names that are used by DOM elements, see http://yura.thinkweb2.com/domlint/ for some examples.
I'll leave this open for the moment but I'm not sure there's anything jQuery can/should do about it.
comment:2 Changed 12 years ago by
Milestone: | 1.4 → 1.4.5 |
---|---|
Priority: | minor → blocker |
Status: | new → open |
Confirmed;
Expect: ["True", "string"], ["False", "string"] IE: ["True", "string"], ["False", "string"] Opera: ["True", "string"], ["False", "string"] Chrome: [ true, "boolean"], ["False", "string"] FF: [ true, "boolean"], ["False", "string"] Safari: [ true, "boolean"], ["False", "string"]
comment:3 Changed 12 years ago by
Resolution: | → wontfix |
---|---|
Status: | open → closed |
multiple="True" is not a valid attribute on input type="text", nor is
true
a valid value for this attribute.
comment:4 Changed 12 years ago by
Cc: | miketaylr added |
---|
comment:5 Changed 12 years ago by
Version: | 1.3.2 → 1.5 |
---|
There wasn't a 1.4.5 release, was actually 1.5.
comment:6 Changed 12 years ago by
Milestone: | 1.4.5 → 1.5 |
---|
There was no 1.4.5 release, was actually 1.5.
A file that helps demonstrating the inconsistancy