webidl: Add test for interface sequences

Sequence interfaces return values worked before, but had no test.

Sequence interface arguments didn't work until the previous commit.
This commit is contained in:
Emilio Cobos Álvarez 2016-01-15 13:40:43 +01:00
parent 3327f00bce
commit a76efa5eca
2 changed files with 6 additions and 0 deletions

View file

@ -152,6 +152,7 @@ interface TestBinding {
(DOMString or sequence<long>) receiveUnion3();
(DOMString or sequence<DOMString>) receiveUnion4();
sequence<long> receiveSequence();
sequence<Blob> receiveInterfaceSequence();
byte? receiveNullableByte();
boolean? receiveNullableBoolean();
@ -205,6 +206,7 @@ interface TestBinding {
void passCallbackInterface(EventListener listener);
void passSequence(sequence<long> seq);
void passStringSequence(sequence<DOMString> seq);
void passInterfaceSequence(sequence<Blob> seq);
void passNullableBoolean(boolean? arg);
void passNullableByte(byte? arg);