Closed Bug 802548 Opened 12 years ago Closed 7 years ago

HTML5 microdata gives special meaning to itemId breaking some web content

Categories

(Core :: DOM: Core & HTML, defect)

x86_64
Windows 7
defect
Not set
major

Tracking

()

RESOLVED WORKSFORME

People

(Reporter: clemensdev, Unassigned)

References

Details

(Keywords: regression, site-compat, testcase)

Attachments

(1 file)

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 ...
also:
"alert( typeof( element.itemId ) );" is "string" (instead of "undefined") even before setting the value. This indicates that itemId is kind of "in use" ...
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
"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.
> 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...
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.
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.
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
Depends on: 909633
Given that we removed the API there should no longer be a problem here.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → WORKSFORME
Component: DOM → DOM: Core & HTML
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: