Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Unified Diff: third_party/WebCore/dom/WebKitNamedFlow.idl

Issue 10825350: Roll IDL to multivm@762 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebCore/dom/Element.idl ('k') | third_party/WebCore/html/DOMURL.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/dom/WebKitNamedFlow.idl
diff --git a/third_party/WebCore/dom/WebKitNamedFlow.idl b/third_party/WebCore/dom/WebKitNamedFlow.idl
index 4d4e99b7e70714e4b67b303f058badd287f235c4..45b43e787b44b26440a71659d5425ef98ffb7d7e 100644
--- a/third_party/WebCore/dom/WebKitNamedFlow.idl
+++ b/third_party/WebCore/dom/WebKitNamedFlow.idl
@@ -29,13 +29,26 @@
module core {
interface [
- JSGenerateToJSObject
+ EventTarget,
+ JSGenerateToJSObject,
+ GenerateIsReachable=ImplBaseRoot
] WebKitNamedFlow {
readonly attribute DOMString name;
readonly attribute boolean overset;
readonly attribute long firstEmptyRegionIndex;
NodeList getRegionsByContent(in Node contentNode);
+ NodeList getRegions();
NodeList getContent();
+
+ // EventTarget interface
+ void addEventListener(in DOMString type,
+ in EventListener listener,
+ in [Optional] boolean useCapture);
+ void removeEventListener(in DOMString type,
+ in EventListener listener,
+ in [Optional] boolean useCapture);
+ boolean dispatchEvent(in Event event)
+ raises(EventException);
};
}
« no previous file with comments | « third_party/WebCore/dom/Element.idl ('k') | third_party/WebCore/html/DOMURL.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698