| 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);
|
| };
|
| }
|
|
|
|
|