diff options
author | Ngo Iok Ui (Wu Yu Wei) <yuweiwu@pm.me> | 2024-06-15 13:22:42 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-15 04:22:42 +0000 |
commit | 8eed3b442b214f678b80dbcc7dca07eeaa1e26ff (patch) | |
tree | f8a232e86616e8e5fd234e7bbb32bed4ff7077f2 /third_party/WebIDL/tests/test_promise.py | |
parent | 19067366df28c9131dcbc436bc96a27e64e0a194 (diff) | |
download | servo-8eed3b442b214f678b80dbcc7dca07eeaa1e26ff.tar.gz servo-8eed3b442b214f678b80dbcc7dca07eeaa1e26ff.zip |
Update WebIDL.py (#32495)
* Update WebIDL.py
* Update WebIDL.py
* Add builtin-array.patch
* Fix CodegenRust.py and Configuration.py
* Fix missing downcasts
* mach fmt
* Update check and comment to explain why we need this check
* Update Global of DissimilarOriginWindow.webidl
Diffstat (limited to 'third_party/WebIDL/tests/test_promise.py')
-rw-r--r-- | third_party/WebIDL/tests/test_promise.py | 45 |
1 files changed, 24 insertions, 21 deletions
diff --git a/third_party/WebIDL/tests/test_promise.py b/third_party/WebIDL/tests/test_promise.py index 9b418d51afe..1dfb6d4643c 100644 --- a/third_party/WebIDL/tests/test_promise.py +++ b/third_party/WebIDL/tests/test_promise.py @@ -1,3 +1,6 @@ +import WebIDL + + def WebIDLTest(parser, harness): threw = False try: @@ -8,9 +11,9 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() + parser.finish() - except: + except WebIDL.WebIDLError: threw = True harness.ok(threw, "Should not allow Promise return values for legacycaller.") @@ -25,8 +28,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok( threw, @@ -45,8 +48,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok( threw, @@ -64,8 +67,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok(threw, "Should not allow nullable Promise return values.") @@ -79,8 +82,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok(threw, "Should not allow nullable Promise arguments.") @@ -93,7 +96,7 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() + parser.finish() harness.ok( True, "Should allow overloads which only have Promise and return " "types." @@ -109,8 +112,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok(threw, "Should not allow writable Promise-typed attributes.") @@ -124,8 +127,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok( threw, "Should not allow [LegacyLenientSetter] Promise-typed attributes." @@ -141,8 +144,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok(threw, "Should not allow [PutForwards] Promise-typed attributes.") @@ -156,8 +159,8 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok(threw, "Should not allow [Replaceable] Promise-typed attributes.") @@ -171,7 +174,7 @@ def WebIDLTest(parser, harness): }; """ ) - results = parser.finish() - except: + parser.finish() + except WebIDL.WebIDLError: threw = True harness.ok(threw, "Should not allow [SameObject] Promise-typed attributes.") |