| Index: Source/bindings/tests/idls/TestObject.idl
|
| diff --git a/Source/bindings/tests/idls/TestObject.idl b/Source/bindings/tests/idls/TestObject.idl
|
| index 661a10fdbc3caf66280d65d5d10ecd21e1f13ce8..bdc9e8e148d55e7a458af80f6289c356b3761841 100644
|
| --- a/Source/bindings/tests/idls/TestObject.idl
|
| +++ b/Source/bindings/tests/idls/TestObject.idl
|
| @@ -265,11 +265,12 @@ callback TestCallbackFunction = void (TestEnumType formal1, TestObject formal2);
|
| readonly attribute long? nullableLongAttribute;
|
| readonly attribute boolean? nullableBooleanAttribute;
|
| readonly attribute DOMString? nullableStringAttribute;
|
| -
|
| attribute long? nullableLongSettableAttribute;
|
| -
|
| [GetterRaisesException] attribute long? nullableStringValue;
|
|
|
| + // Nullable arguments.
|
| + void methodWithNullableArguments(DOMString? str, long? l, TestObject? obj, optional double? d);
|
| +
|
| [PerWorldBindings] readonly attribute TestObject perWorldReadOnlyAttribute;
|
| [PerWorldBindings] attribute TestObject perWorldAttribute;
|
| [PerWorldBindings] void perWorldMethod();
|
|
|