| 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 f2d1fe810d1baed17456c7b1401a978671bd3fc3..74845a7ede30e41b23bb7f0c2ba4510587568ac8 100644
|
| --- a/third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| +++ b/third_party/WebCore/bindings/scripts/test/TestObj.idl
|
| @@ -51,7 +51,6 @@ module test {
|
| attribute DOMString stringAttr;
|
| attribute [V8MeasureAs=TestFeature] TestObj testObjAttr;
|
|
|
| - JS, V8
|
| // WK_ucfirst, WK_lcfirst exceptional cases.
|
| attribute TestObj XMLObjAttr;
|
| attribute boolean create;
|
| @@ -226,10 +225,10 @@ module test {
|
| [CheckSecurityForNode] SVGDocument getSVGDocument()
|
| raises(DOMException);
|
|
|
| - void convert1(in [TreatReturnedNullStringAs=Null] a);
|
| - void convert2(in [TreatReturnedNullStringAs=Undefined] b);
|
| - void convert4(in [TreatNullAs=NullString] d);
|
| - void convert5(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] e);
|
| + void convert1(in [TreatReturnedNullStringAs=Null] a value);
|
| + void convert2(in [TreatReturnedNullStringAs=Undefined] b value);
|
| + void convert4(in [TreatNullAs=NullString] d value);
|
| + void convert5(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] e value);
|
|
|
| attribute SVGPoint mutablePoint;
|
| attribute [Immutable] SVGPoint immutablePoint;
|
| @@ -263,5 +262,9 @@ module test {
|
| [Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15;
|
|
|
| attribute [Replaceable] long replaceableAttribute;
|
| +
|
| + void variadicStringMethod(in DOMString head, in DOMString... tail);
|
| + void variadicDoubleMethod(in double head, in double... tail);
|
| + void variadicNodeMethod(in Node head, in Node... tail);
|
| };
|
| }
|
|
|