Closed
Bug 802548
Opened 11 years ago
Closed 6 years ago
HTML5 microdata gives special meaning to itemId breaking some web content
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: clemensdev, Unassigned)
References
Details
(Keywords: regression, site-compat, testcase)
Attachments
(1 file)
315 bytes,
text/html
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Firefox/17.0 Build ID: 20121010150351 Steps to reproduce: As of Firefox 16, when setting itemId-attribute on a <li>-element, and then reading it the URI of the current page is prepended to the given value Actual results: given the following html: <html><body><ul><li id="li1"></li></ul><script> var element = document.getElementById("li1"); // assign to bla element.bla = "hello"; // after alert( element.bla ); // ok -> hello // assign element.itemId = "hello"; // after alert( element.itemId ); // nok -> <file uri>hello </script> </body> </html> Expected results: we should be getting two alerts with "hello"! All other browsers and FF < 16 behave alike ...
Reporter | ||
Comment 1•11 years ago
|
||
also: "alert( typeof( element.itemId ) );" is "string" (instead of "undefined") even before setting the value. This indicates that itemId is kind of "in use" ...
Reporter | ||
Updated•11 years ago
|
Severity: normal → major
This doesn't only affect <li> it also affects checkboxes, and i imagine other form elements. See this JS Fiddle: http://jsfiddle.net/K8jRf/1/ when attempting to access my attribute itemId it puts the url in front. needless to say this broken some of my code pretty badly.
I've updated my jsFiddle. that one in my comment was not the right version: http://jsfiddle.net/K8jRf/8/
Attachment #672247 -
Attachment mime type: text/plain → text/html
m-c good=2012-06-05 bad=2012-06-06 http://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=a7a905fd70d5&tochange=6338a8988917 m-i good=2012-06-04 bad=2012-06-05 http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=778ba119ded6&tochange=f56e2197d9cd
Keywords: regression,
testcase
Version: 17 Branch → 16 Branch
Keywords: regressionwindow-wanted
![]() |
||
Comment 5•11 years ago
|
||
"itemId" is part of the HTML5 microdata API, which shipped in Firefox 16. See http://www.whatwg.org/specs/web-apps/current-work/multipage/microdata.html#dom-itemid In particular, the spec there says: The itemId IDL attribute on HTML elements must reflect the itemid content attribute. and http://www.whatwg.org/specs/web-apps/current-work/multipage/microdata.html#attr-itemid says: The itemid attribute, if specified, must have a value that is a valid URL potentially surrounded by spaces. and http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#reflect says: If a reflecting IDL attribute is a DOMString attribute whose content attribute is defined to contain a URL, then on getting, the IDL attribute must resolve the value of the content attribute relative to the element and return the resulting absolute URL if that was successful, or the empty string otherwise; and on setting, must set the content attribute to the specified literal value. So looking at the testcase from comment 0: element.itemId = "hello"; // equivalent to element.setAttribute("itemid", "hello"); alert( element.itemId ); // Should return what happens when the relative URI "hello" // is resolved relative to the document base URI Jonas, Mounir, Olli, at what point do we decide that microdata is breaking too many web pages and push back on the spec? ;)
Blocks: 591467
It sounds like this page is trying to use the microdata API, so backing it out wouldn't fix anything. I don't know the microdata API well enough to have an opinion on if it should be changed to cause fewer conflicts with existing pages, or be easier to use, or otherwise improved. I thibk Henri knows the spec better and might have suggestions.
![]() |
||
Comment 7•11 years ago
|
||
> It sounds like this page is trying to use the microdata API
No, it's not. There is not an itemprop in sight. It's just trying to use "itemId" attrs to keep track of info of its own choosing. Basically, it should be using "data-itemid" so it'll be guaranteed to not collide with future properties, but it's not.
ccing Henri for his comments...
Keywords: regressionwindow-wanted
boris is correct. i am just using itemId as a holder for some info. This page was built before the popularity of html 5's data-whatever. if i reference it by itemid instead of itemId (even though my casing in the html is, infact, itemId) it works fine.
![]() |
||
Comment 9•11 years ago
|
||
Attribute names are case-insensitive, so as long as you end up in getAttribute it won't matter whether you use "itemid" or "itemId". That said, comment 0 has nothing in the HTML. The fiddle dose have stuff in the HTML, and is using jQuery attr(), which is broken in old jQuery versions (which is what jsfiddle uses) and tries DOM properties in preference to getAttribute. So in cases where your real problem is jQuery attr(), just updating to a recent jQuery should help.
Comment 11•11 years ago
|
||
Getting this off the Firefox:Untriaged list.
Component: Untriaged → DOM
Product: Firefox → Core
Summary: Is <li>'s itemId-attribute "reserved"? → HTML5 microdata gives special meaning to itemId breaking some web content
Version: 16 Branch → Trunk
User Agent: Mozilla/5.0 (Windows NT 6.1; rv:46.0) Gecko/20100101 Firefox/46.0 Build ID: 20160502172042 I have tested your issue on latest FF release (46.0.1), latest Nightly build (20160511030221) and managed to reproduce it. I have opened the provided link in comment 0 and Firefox fires only one alert with "hello". IE and Chrome work as expected.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 13•7 years ago
|
||
FYI: This has been documented at https://www.fxsitecompat.com/en-CA/docs/2012/microdata-api-has-added-new-properties-to-elements/
Keywords: site-compat
Comment 14•6 years ago
|
||
Given that we removed the API there should no longer be a problem here.
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → WORKSFORME
Assignee | ||
Updated•4 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•