[Bug 26033] Make distribution algorithm forward compatible with <shadow> as function call.

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

--- Comment #6 from Hayato Ito <hayato@chromium.org> ---
Sorry for the late reply.

It looks your proposal will get rid of the functionality that is currently
used, I guess.

For example, suppose the following use case:

<div id="host">
  <span id="one">
  <span id="two">

Youngest Shadow DOM on #host:

<Youngest SR>
  <div id="decoration">
    <shadow>

Older Shadow DOM on #host:

<Older SR>
  <content>


The intent of this is that a developer wants to surround the entire tree in the
older shadow tree with <div id="decoration"> by adding a shadow tree.

The developer wants to get the following composed tree:

<div id="host">
  <div id="decoration">
    <span id="one">
    <span id="two">

Your proposal can't achieve that, can that?

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

Received on Thursday, 21 August 2014 09:03:26 UTC