summaryrefslogtreecommitdiffstats
path: root/dom/bindings/parser/tests/test_nullable_void.py
diff options
context:
space:
mode:
Diffstat (limited to 'dom/bindings/parser/tests/test_nullable_void.py')
-rw-r--r--dom/bindings/parser/tests/test_nullable_void.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/dom/bindings/parser/tests/test_nullable_void.py b/dom/bindings/parser/tests/test_nullable_void.py
new file mode 100644
index 0000000000..5acba727e5
--- /dev/null
+++ b/dom/bindings/parser/tests/test_nullable_void.py
@@ -0,0 +1,16 @@
+def WebIDLTest(parser, harness):
+ threw = False
+ try:
+ parser.parse(
+ """
+ interface NullableVoid {
+ void? foo();
+ };
+ """
+ )
+
+ parser.finish()
+ except Exception:
+ threw = True
+
+ harness.ok(threw, "Should have thrown.")