| Index: third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| diff --git a/third_party/WebCore/bindings/scripts/test/TestObj.idl b/third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| index 513df107400a9329338cbf8c786ce4b376b15421..77758750dd51b0fff059b25a63cfd3a41c5839b7 100644
|
| --- a/third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| +++ b/third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| @@ -38,6 +38,10 @@ module test {
|
| readonly attribute long readOnlyIntAttr;
|
| readonly attribute DOMString readOnlyStringAttr;
|
| readonly attribute TestObj readOnlyTestObjAttr;
|
| +#if defined(TESTING_JS)
|
| + static readonly attribute long staticReadOnlyIntAttr;
|
| + static attribute DOMString staticStringAttr;
|
| +#endif
|
| attribute short shortAttr;
|
| attribute unsigned short unsignedShortAttr;
|
| attribute long intAttr;
|
| @@ -247,5 +251,7 @@ module test {
|
| const unsigned short CONST_VALUE_13 = 0X20;
|
| const unsigned short CONST_VALUE_14 = 0x1abc;
|
| [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15;
|
| +
|
| + attribute [Replaceable] long replaceableAttribute;
|
| };
|
| }
|
|
|