mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c2e642fbcc
--HG-- rename : js/xpconnect/tests/mochitest/test_bug462428.html => dom/bindings/test/test_lookupGetter.html
40 lines
834 B
Python
40 lines
834 B
Python
def WebIDLTest(parser, harness):
|
|
threw = False
|
|
try:
|
|
results = parser.parse("""
|
|
interface VariadicConstraints1 {
|
|
void foo(byte... arg1, byte arg2);
|
|
};
|
|
""")
|
|
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should have thrown.")
|
|
|
|
threw = False
|
|
try:
|
|
results = parser.parse("""
|
|
interface VariadicConstraints2 {
|
|
void foo(byte... arg1, optional byte arg2);
|
|
};
|
|
""")
|
|
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should have thrown.")
|
|
|
|
threw = False
|
|
try:
|
|
results = parser.parse("""
|
|
interface VariadicConstraints3 {
|
|
void foo(optional byte... arg1);
|
|
};
|
|
""")
|
|
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should have thrown.")
|