| Index: third_party/WebCore/dom/DOMNamedFlowCollection.idl
|
| diff --git a/third_party/WebCore/css/WebKitCSSRegionRule.idl b/third_party/WebCore/dom/DOMNamedFlowCollection.idl
|
| similarity index 77%
|
| copy from third_party/WebCore/css/WebKitCSSRegionRule.idl
|
| copy to third_party/WebCore/dom/DOMNamedFlowCollection.idl
|
| index ec3e6d51576fb7c8cea548f65f9f314824c56c70..3e9f3a18ccb5070f118e8d6a46b841a03edf7f6d 100644
|
| --- a/third_party/WebCore/css/WebKitCSSRegionRule.idl
|
| +++ b/third_party/WebCore/dom/DOMNamedFlowCollection.idl
|
| @@ -1,5 +1,5 @@
|
| /*
|
| - * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
|
| + * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without
|
| * modification, are permitted provided that the following conditions
|
| @@ -27,12 +27,17 @@
|
| * SUCH DAMAGE.
|
| */
|
|
|
| -module css {
|
| -
|
| +module core {
|
| interface [
|
| Conditional=CSS_REGIONS,
|
| - ] WebKitCSSRegionRule : CSSRule {
|
| - readonly attribute CSSRuleList cssRules;
|
| + InterfaceName=WebKitNamedFlowCollection,
|
| + JSGenerateToJSObject,
|
| + IndexedGetter,
|
| + NamedGetter
|
| + ] DOMNamedFlowCollection {
|
| + readonly attribute unsigned long length;
|
| + WebKitNamedFlow item(in unsigned long index);
|
| + WebKitNamedFlow namedItem(in DOMString name);
|
| };
|
| -
|
| }
|
| +
|
|
|