| 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 c53ccfd7cc406b406120ca7f049ef1b4fc085697..f2d1fe810d1baed17456c7b1401a978671bd3fc3 100644
|
| --- a/third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| +++ b/third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| @@ -49,7 +49,7 @@ module test {
|
| attribute long long longLongAttr;
|
| attribute unsigned long long unsignedLongLongAttr;
|
| attribute DOMString stringAttr;
|
| - attribute TestObj testObjAttr;
|
| + attribute [V8MeasureAs=TestFeature] TestObj testObjAttr;
|
|
|
| JS, V8
|
| // WK_ucfirst, WK_lcfirst exceptional cases.
|
| @@ -75,7 +75,7 @@ module test {
|
| void voidMethodWithArgs(in long longArg, in DOMString strArg, in TestObj objArg);
|
| long longMethod();
|
| long longMethodWithArgs(in long longArg, in DOMString strArg, in TestObj objArg);
|
| - TestObj objMethod();
|
| + [V8MeasureAs=TestFeature] TestObj objMethod();
|
| TestObj objMethodWithArgs(in long longArg, in DOMString strArg, in TestObj objArg);
|
|
|
| void methodWithSequenceArg(in sequence<ScriptProfile> sequenceArg);
|
| @@ -97,7 +97,7 @@ module test {
|
|
|
| // 'Custom' extended attribute
|
| attribute [Custom] long customAttr;
|
| - [Custom] void customMethod();
|
| + [Custom, V8MeasureAs=CustomTestFeature] void customMethod();
|
| [Custom] void customMethodWithArgs(in long longArg, in DOMString strArg, in TestObj objArg);
|
|
|
| void addEventListener(in DOMString type,
|
| @@ -168,6 +168,8 @@ module test {
|
| readonly attribute [CachedAttribute] any cachedAttribute1;
|
| readonly attribute [CachedAttribute] any cachedAttribute2;
|
| #endif
|
| +
|
| + attribute any anyAttribute;
|
|
|
| #if defined(TESTING_V8) || defined(TESTING_JS)
|
| // Overloads
|
|
|