[Bug 22443] [Shadow]: Form elements crossing shadow boundary

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

--- Comment #2 from Yuta Kitamura <yutak@google.com> ---
Oops, didn't notice that section. However, the current wording is somewhat
vague:

* "each shadow tree must scope its form elements and form-associated elements"
  - What does "scope" mean?

* "the form submission must continue to work as specified"
  - What input elements are considered to be sent when the submit button is
    pressed? For example,

      <form> - - - {shadow-root}
         |               |
         |               +-- <input type="hidden" name="x" value="1">
         |               |
         |               +-- <content select="#sub"></content>
         |
         +-- <input type="hidden" name="y" value="2">
         |
         +-- <input id="sub" type="submit">

    What should be sent if one presses the submit button? "x=1&y=2",
    "x=1", or "y=2"? What's the form owner of <input name="x">?
    What about <input name="y">?

 - In the example (1) above, <input> element's form owner is null,
   thus pressing the button does nothing; am I correct?

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

Received on Wednesday, 26 June 2013 01:19:02 UTC