mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 843272. Uncomment tests that should not be commented out. r=mccr8
This commit is contained in:
parent
7ca420dcc4
commit
18604b2bde
@ -136,9 +136,8 @@ interface TestJSImplInterface {
|
||||
TestJSImplInterface receiveSelf();
|
||||
TestJSImplInterface? receiveNullableSelf();
|
||||
|
||||
// Callback interface ignores 'resultNotAddRefed'. See bug 843272.
|
||||
//TestJSImplInterface receiveWeakSelf();
|
||||
//TestJSImplInterface? receiveWeakNullableSelf();
|
||||
TestJSImplInterface receiveWeakSelf();
|
||||
TestJSImplInterface? receiveWeakNullableSelf();
|
||||
|
||||
// A version to test for casting to TestJSImplInterface&
|
||||
void passSelf(TestJSImplInterface arg);
|
||||
@ -170,9 +169,8 @@ interface TestJSImplInterface {
|
||||
// Non-castable interface types
|
||||
IndirectlyImplementedInterface receiveOther();
|
||||
IndirectlyImplementedInterface? receiveNullableOther();
|
||||
// Callback interface ignores 'resultNotAddRefed'. See bug 843272.
|
||||
//IndirectlyImplementedInterface receiveWeakOther();
|
||||
//IndirectlyImplementedInterface? receiveWeakNullableOther();
|
||||
IndirectlyImplementedInterface receiveWeakOther();
|
||||
IndirectlyImplementedInterface? receiveWeakNullableOther();
|
||||
|
||||
void passOther(IndirectlyImplementedInterface arg);
|
||||
void passNullableOther(IndirectlyImplementedInterface? arg);
|
||||
@ -186,9 +184,8 @@ interface TestJSImplInterface {
|
||||
// External interface types
|
||||
TestExternalInterface receiveExternal();
|
||||
TestExternalInterface? receiveNullableExternal();
|
||||
// Callback interface ignores 'resultNotAddRefed'. See bug 843272.
|
||||
//TestExternalInterface receiveWeakExternal();
|
||||
//TestExternalInterface? receiveWeakNullableExternal();
|
||||
TestExternalInterface receiveWeakExternal();
|
||||
TestExternalInterface? receiveWeakNullableExternal();
|
||||
void passExternal(TestExternalInterface arg);
|
||||
void passNullableExternal(TestExternalInterface? arg);
|
||||
attribute TestExternalInterface nonNullExternal;
|
||||
@ -201,9 +198,8 @@ interface TestJSImplInterface {
|
||||
// Callback interface types
|
||||
TestCallbackInterface receiveCallbackInterface();
|
||||
TestCallbackInterface? receiveNullableCallbackInterface();
|
||||
// Callback interface ignores 'resultNotAddRefed'. See bug 843272.
|
||||
//TestCallbackInterface receiveWeakCallbackInterface();
|
||||
//TestCallbackInterface? receiveWeakNullableCallbackInterface();
|
||||
TestCallbackInterface receiveWeakCallbackInterface();
|
||||
TestCallbackInterface? receiveWeakNullableCallbackInterface();
|
||||
void passCallbackInterface(TestCallbackInterface arg);
|
||||
void passNullableCallbackInterface(TestCallbackInterface? arg);
|
||||
attribute TestCallbackInterface nonNullCallbackInterface;
|
||||
|
Loading…
Reference in New Issue
Block a user