Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
tor-browser-bundle-testsuite
Commits
f88d60d9
Commit
f88d60d9
authored
Dec 03, 2020
by
Alex Catarineu
Browse files
Fix dom_objects enumeration tests
window.content is disabled in early betas since 77.
parent
b1d93a3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
marionette/tor_browser_tests/test_dom-objects-enumeration.py
View file @
f88d60d9
...
...
@@ -753,9 +753,11 @@ class Test(testsuite.TorBrowserTest):
def
test_dom_objects_enumeration
(
self
):
expectedObjects
=
self
.
expectedObjects
if
self
.
get_version
()
>=
77
and
self
.
is_early_beta_or_earlier
():
# https://bugzilla.mozilla.org/show_bug.cgi?id=1632143
expectedObjects
.
remove
(
"content"
)
if
self
.
get_version
()
>=
80
:
expectedObjects
=
expectedObjects
.
union
({
"AggregateError"
,
"FinalizationRegistry"
,
"WeakRef"
})
expectedObjects
.
remove
(
"content"
)
if
self
.
get_version
()
>=
82
:
expectedObjects
=
expectedObjects
.
union
({
"MediaMetadata"
,
"MediaSession"
,
"Sanitizer"
})
if
self
.
get_version
()
>=
83
and
self
.
is_early_beta_or_earlier
():
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment