mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
47 lines
997 B
Python
47 lines
997 B
Python
import WebIDL
|
|
|
|
def WebIDLTest(parser, harness):
|
|
parser.parse("""
|
|
interface TestStringifier {
|
|
stringifier;
|
|
};
|
|
""")
|
|
|
|
results = parser.finish()
|
|
|
|
harness.ok(isinstance(results[0].members[0], WebIDL.IDLMethod),
|
|
"Stringifer should be method")
|
|
|
|
parser = parser.reset()
|
|
|
|
threw = False
|
|
try:
|
|
parser.parse("""
|
|
interface TestStringifier {
|
|
stringifier;
|
|
stringifier;
|
|
};
|
|
""")
|
|
results = parser.finish()
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should not allow two 'stringifier;'")
|
|
|
|
parser = parser.reset()
|
|
|
|
threw = False
|
|
try:
|
|
parser.parse("""
|
|
interface TestStringifier {
|
|
stringifier;
|
|
stringifier DOMString foo();
|
|
};
|
|
""")
|
|
results = parser.finish()
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should not allow a 'stringifier;' and a 'stringifier()'")
|
|
|