Changeset 106622 in webkit


Ignore:
Timestamp:
Feb 2, 2012 8:37:07 PM (12 years ago)
Author:
hayato@chromium.org
Message:

Make ShadowRoot interface inherit DocumentFragment interface in IDL.
https://bugs.webkit.org/show_bug.cgi?id=77511

Reviewed by Kentaro Hara.

This patch contains only the change of IDL to isolate issues.
Other changes, such as tests for querySelector of ShadowRoot, will be added in follow-up patches.

No tests. No change in behavior.

  • dom/ShadowRoot.idl:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r106621 r106622  
     12012-02-02  Hayato Ito  <hayato@chromium.org>
     2
     3        Make ShadowRoot interface inherit DocumentFragment interface in IDL.
     4        https://bugs.webkit.org/show_bug.cgi?id=77511
     5
     6        Reviewed by Kentaro Hara.
     7
     8        This patch contains only the change of IDL to isolate issues.
     9        Other changes, such as tests for querySelector of ShadowRoot, will be added in follow-up patches.
     10
     11        No tests. No change in behavior.
     12
     13        * dom/ShadowRoot.idl:
     14
    1152012-02-02  Raymond Toy  <rtoy@google.com>
    216
  • trunk/Source/WebCore/dom/ShadowRoot.idl

    r106534 r106622  
    3232        Constructor(in Element host),
    3333        ConstructorRaisesException
    34     ] ShadowRoot : Node {
     34    ] ShadowRoot : DocumentFragment {
    3535        readonly attribute Element host;
    3636        Element getElementById(in [Optional=CallWithDefaultValue] DOMString elementId);
Note: See TracChangeset for help on using the changeset viewer.