[Bug 21066] [Shadow]: Provide an event path api

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

--- Comment #16 from Steve Orvell <sorvell@chromium.org> ---
InsertionParent cannot be used to generate the event path. Here's an example:

<a>
    <span id=”one” />
    <span id=”two” />
SR-a
    <b>
        <content id=”contentA”></content>
    SR-b
        <content id=”contentB” select=”#one”></content>
        <content id=”contentB2” select=”#two”></content>


click -> #one:
#one
[contentA]
[contentB]
SR-b
b
SR-a
a

click -> #two:
#two
[contentA]
[contentB2]
SR-b
b
SR-a
a

#contentA's insertionParent cannot be both #contentB and #contentB2.

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

Received on Wednesday, 24 April 2013 02:37:44 UTC