Bug 56973
Summary: | Implement DOM children forwarding down the shadow subtree | ||
---|---|---|---|
Product: | WebKit | Reporter: | Dimitri Glazkov (Google) <dglazkov> |
Component: | DOM | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | annacc, cmarcelo, dominicc, eric.carlson, luiz, morrita, rolandsteiner |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | PC | ||
OS: | OS X 10.5 | ||
Bug Depends on: | 58914, 59055, 59117, 59157, 61111, 76261 | ||
Bug Blocks: | 59802 |
Dimitri Glazkov (Google)
http://dev.w3.org/2006/xbl2/#the-content-element
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Dominic Cooney
Assigning this to dglazkov because we need an answer about the select attribute—is it a simple selector?
Dominic Cooney
First cut: The selector language is:
tag-name? ("." class-name)? ("#" id)?
- Same whitespace rules as CSS
- Same matching rules as the CSS selector with the same text
- Except empty string, which matches *
Roland Steiner
My suggestion would be a comma-separated list of compound selectors (http://www.w3.org/TR/2011/WD-selectors4-20110929/#structure), with certain exceptions (see http://dglazkov.github.com/component-model/Draft/content.html).
A space-separated list might be more HTMLy than a comma-separated list, but may be easily confused with spaces as CSS descendant combinators.
Hajime Morrita
Closing: We finally have <content> behind the flag.