[Bug 23052] New: [Shadow]: HTMLShadowElement should also have getDistributedNodes()

https://www.w3.org/Bugs/Public/show_bug.cgi?id=23052

            Bug ID: 23052
           Summary: [Shadow]: HTMLShadowElement should also have
                    getDistributedNodes()
    Classification: Unclassified
           Product: WebAppsWG
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Component Model
          Assignee: dglazkov@chromium.org
          Reporter: esprehn@gmail.com
        QA Contact: public-webapps-bugzilla@w3.org
            Blocks: 14978

This is necessary since if you have:

<div> --> ShadowRoot
  <div>Hello</div>
  <span>World</span>
<div>

and inside ShadowRoot

<content select="div"></content>
<shadow></shadow>

you cannot tell which nodes ended up in <shadow> without getDistributedNodes()
or filling the pool yourself and then walking all insertion points and looking
for the non-distributed nodes to notice the UA shadow with the <content
select="*"> is being used and should select the remaining nodes (div).

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 23 August 2013 20:11:28 UTC