| Index: Source/bindings/tests/idls/TestObject.idl
|
| diff --git a/Source/bindings/tests/idls/TestObject.idl b/Source/bindings/tests/idls/TestObject.idl
|
| index 7e7579ae1020c53bbc81327dcbc87092ce52c52a..c08d0a279a7e7dff6fc36ae2aef6780ce74f59a2 100644
|
| --- a/Source/bindings/tests/idls/TestObject.idl
|
| +++ b/Source/bindings/tests/idls/TestObject.idl
|
| @@ -390,6 +390,9 @@ interface TestObject {
|
| void voidMethodDefaultNullableStringArg(optional DOMString? defaultStringArg = null);
|
| void voidMethodDefaultNullableTestInterfaceArg(optional TestInterface? defaultTestInterfaceArg = null);
|
|
|
| + // Optional argument without default followed by optional argument with default
|
| + void voidMethodOptionalArgWithoutDefault(optional DOMString optionalStringArg, optional boolean defaultBooleanArg = false);
|
| +
|
| // Variadic operations
|
| void voidMethodVariadicStringArg(DOMString... variadicStringArgs);
|
| void voidMethodStringArgVariadicStringArg(DOMString stringArg, DOMString... variadicStringArgs);
|
|
|