This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 16169 - Define the CSSElementMap
Summary: Define the CSSElementMap
Status: RESOLVED WONTFIX
Alias: None
Product: HTML WG
Classification: Unclassified
Component: HTML5 spec (show other bugs)
Version: unspecified
Hardware: PC Linux
: P2 normal
Target Milestone: ---
Assignee: Ian 'Hixie' Hickson
QA Contact: HTML WG Bugzilla archive list
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-02-29 20:57 UTC by Tab Atkins Jr.
Modified: 2012-05-14 21:46 UTC (History)
6 users (show)

See Also:


Attachments

Description Tab Atkins Jr. 2012-02-29 20:57:13 UTC
The CSS3 Image Values spec defines an element() function <http://dev.w3.org/csswg/css3-images/#element-reference> which allows an author use an element as an image.  This was inspired by Mozilla's proprietary -moz-element() experiment. <https://developer.mozilla.org/en/CSS/-moz-element>

One interesting feature of -moz-element() is the ability to use <img>, <video>, and <canvas> in it without inserting them into the document; you instead use mozSetImageElement(<name>, <element>) to give it an additional "pseudo-id" which will then match the id selector used in -moz-element().

When I put this feature into the specification, I wanted a similar feature, but didn't like the design.  Discussion with Hixie led to the creation of the CSSElementMap <http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#dom-document-csselementmap>, which is simply a map from strings to elements, and otherwise works the same way.  This didn't make it into the W3C's version of HTML5 because it happened to be in a feature-freeze at the time, and got missed when we unfroze.

I would like the W3C HTML5 to define CSSElementMap as well, matching the WHATWG HTML5 definition.  There are some caveats, however.

If this feature is purely for CSS, it is more appropriately placed in the CSSOM.  However, this is potentially useful for similar purposes in other DOM operations.  For example, querySelector() with an id selector could return elements from the map, or even getElementByID() (in which case we should rename it to ElementMap or something).

Do we think that this is better suited as a pure-CSS feature, or are we interested in integrating it elsewhere in the DOM?
Comment 1 Anne 2012-03-02 11:21:48 UTC
What is the use case outside of CSS? You already have access to those elements from script.
Comment 2 Tab Atkins Jr. 2012-03-15 17:54:04 UTC
The main use-case I can see is allowing JS-based selector queries (qS/A, find/All) select those elements in an identical fashion to how CSS does.  If you were, say, writing a polyfill for some new CSS feature that used element() (or another function that takes an id selector), you'd have to first run the selector normally and then (if it didn't return anything) check the map yourself.

This isn't exactly difficult, though.  You just strip off the first # and then see if the string maps to anything.
Comment 3 Anne 2012-03-15 18:00:40 UTC
Letting Selectors select elements outside of the tree breaks an invariant of Selectors. Doing that just seems unwise as all kinds of code depending on that invariant will need to be adjusted.
Comment 4 Anne 2012-03-15 19:27:46 UTC
See also: http://krijnhoetmer.nl/irc-logs/whatwg/20120315#l-754 (and onwards)
Comment 5 Tab Atkins Jr. 2012-03-15 19:30:50 UTC
I'm not interested in changing the currently specced behavior of the element() function - it's useful, and it matches Mozilla's current experimental implementation of the feature.

I'm solely interested in seeing if there is any interest to use CSSElementMap more widely in DOM (in which case we should probably rename it), or if it should be defined in CSSOM just for CSS's use (in which case we should move it).
Comment 6 Ms2ger 2012-05-14 16:55:17 UTC
Tab, what is the current status here?
Comment 7 Tab Atkins Jr. 2012-05-14 21:46:26 UTC
Based on conversations, it looks like the general opinion is that this should be a CSSOM feature, not a DOM one.  So I've gone ahead and closed this RESOLVED WONTFIX for now.  We can reopen if someone feels strongly that it would be cool idea to allow stuff besides element() to use this functionality.