Title: [106622] trunk/Source/WebCore
Revision
106622
Author
[email protected]
Date
2012-02-02 20:37:07 -0800 (Thu, 02 Feb 2012)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106621 => 106622)


--- trunk/Source/WebCore/ChangeLog	2012-02-03 04:08:50 UTC (rev 106621)
+++ trunk/Source/WebCore/ChangeLog	2012-02-03 04:37:07 UTC (rev 106622)
@@ -1,3 +1,17 @@
+2012-02-02  Hayato Ito  <[email protected]>
+
+        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:
+
 2012-02-02  Raymond Toy  <[email protected]>
 
         Check parameters to biquad filters

Modified: trunk/Source/WebCore/dom/ShadowRoot.idl (106621 => 106622)


--- trunk/Source/WebCore/dom/ShadowRoot.idl	2012-02-03 04:08:50 UTC (rev 106621)
+++ trunk/Source/WebCore/dom/ShadowRoot.idl	2012-02-03 04:37:07 UTC (rev 106622)
@@ -31,7 +31,7 @@
         EnabledAtRuntime=shadowDOM,
         Constructor(in Element host),
         ConstructorRaisesException
-    ] ShadowRoot : Node {
+    ] ShadowRoot : DocumentFragment {
         readonly attribute Element host;
         Element getElementById(in [Optional=CallWithDefaultValue] DOMString elementId);
         NodeList getElementsByClassName(in [Optional=CallWithDefaultValue] DOMString className);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to