diff options
Diffstat (limited to 'components/script/dom/bindings/codegen/parser/tests/test_any_null.py')
-rw-r--r-- | components/script/dom/bindings/codegen/parser/tests/test_any_null.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/components/script/dom/bindings/codegen/parser/tests/test_any_null.py b/components/script/dom/bindings/codegen/parser/tests/test_any_null.py deleted file mode 100644 index f9afdacb02f..00000000000 --- a/components/script/dom/bindings/codegen/parser/tests/test_any_null.py +++ /dev/null @@ -1,16 +0,0 @@ -def WebIDLTest(parser, harness): - threw = False - try: - parser.parse( - """ - interface DoubleNull { - attribute any? foo; - }; - """ - ) - - results = parser.finish() - except: - threw = True - - harness.ok(threw, "Should have thrown.") |