| Index: bindings/tests/idls/modules/TestPartialInterface3.idl
|
| diff --git a/bindings/tests/idls/TestPartialInterface2.idl b/bindings/tests/idls/modules/TestPartialInterface3.idl
|
| similarity index 77%
|
| rename from bindings/tests/idls/TestPartialInterface2.idl
|
| rename to bindings/tests/idls/modules/TestPartialInterface3.idl
|
| index 43abced13b972d6cb37c3a1cea17601aca0850c4..d09f7bdec30b6b323312e886df5c1e094af2a277 100644
|
| --- a/bindings/tests/idls/TestPartialInterface2.idl
|
| +++ b/bindings/tests/idls/modules/TestPartialInterface3.idl
|
| @@ -29,14 +29,17 @@
|
| */
|
|
|
| [
|
| - ImplementedAs=TestPartialInterfaceImplementation, // Conflicts with default partial interface class name
|
| - PerContextEnabled=PartialContextName, // Conflicts with [RuntimeEnabled]
|
| + ImplementedAs=TestPartialInterfaceImplementation3,
|
| + PerContextEnabled=PartialContextName3,
|
| ] partial interface TestInterface {
|
| - const unsigned short PARTIAL2_UNSIGNED_SHORT = 0;
|
| + const unsigned short PARTIAL3_UNSIGNED_SHORT = 0;
|
|
|
| - attribute long partial2LongAttribute;
|
| - static attribute long partial2StaticLongAttribute;
|
| + attribute long partial3LongAttribute;
|
| + static attribute long partial3StaticLongAttribute;
|
|
|
| - void partial2VoidMethod();
|
| - static void partial2StaticVoidMethod();
|
| + void voidMethodPartialOverload(DOMString value);
|
| + static void voidMethodPartialOverload(DOMString value);
|
| +
|
| + void partial2VoidMethod(DOMString value);
|
| + static void partial2StaticVoidMethod(DOMString value);
|
| };
|
|
|