[Bug 17608] New: [Shadow]: contenteditable for distributed nodes

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

           Summary: [Shadow]: contenteditable for distributed nodes
           Product: WebAppsWG
           Version: unspecified
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Component Model
        AssignedTo: dglazkov@chromium.org
        ReportedBy: hayato@chromium.org
         QAContact: public-webapps-bugzilla@w3.org
            Blocks: 14978


Suppose the following tree:

<div id='host' contenteditable>
  -- <shadow-root>
          <div id='node-in-shadow-root'>
              <content />
          </div>
  <div id='child-of-host'>hello</div>
</div>

"8.4 Editing" says 'The value of the contenteditable attribute must not
propagate from shadow host to its shadow DOM subtrees.'

My question is 'Does the contenteditable attribute propagate from shadow host
to its child node which is distributed into an insertion point?'.

My understanding is it should propagate. So the result should be:

#host: contenteditable
#node-in-shadowroot:  Is not contenteditable
#child-of-host: contentediable

Is my interpretation correct?

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Tuesday, 26 June 2012 19:18:55 UTC