Bug 1923168 - [part 2] standardize skip-if conditions for devtools. r=devtools-reviewers,ochameau

Differential Revision: https://phabricator.services.mozilla.com/D225167
This commit is contained in:
Joel Maher
2024-10-10 14:40:36 +00:00
parent 86d8bb29b5
commit 787c41dac6
14 changed files with 77 additions and 80 deletions

View File

@@ -3,4 +3,4 @@ subsuite = "screenshots"
support-files = ["../head.js"]
["browser_devtools.js"]
skip-if = ["os == 'mac'"] # times out on macosx1014, see 1570100
skip-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] # times out on macosx1014, see 1570100

View File

@@ -76,9 +76,9 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_dbg-breakpoints-popup.js"]
skip-if = [
"os == 'linux' && debug", # Bug 1750199
"tsan", # Bug 1750199
"apple_catalina && !debug", # Bug 1767705
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && debug", # Bug 1750199
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && tsan", # Bug 1750199
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt", # Bug 1767705
]
["browser_dbg-breakpoints-reloading-with-source-changes.js"]
@@ -98,7 +98,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_dbg-browser-toolbox-unselected-pause.js"]
skip-if = [
"asan", # Bug 1591064
"os == 'win' && fission && debug", # intermittent on fission, Bug 1720165 - test timed out
"os == 'win' && debug", # intermittent on fission, Bug 1720165 - test timed out
]
["browser_dbg-browser-toolbox-workers.js"]
@@ -187,7 +187,6 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_dbg-expressions-thread.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
skip-if = ["!fission"] # threads panel only shows remote frame when fission is enabled.
["browser_dbg-expressions-watch.js"]
@@ -200,8 +199,8 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_dbg-features-breakable-lines.js"]
skip-if = [
"os == 'linux' && os_version == '18.04' && !debug", # Bug 1767701
"apple_catalina && !debug", # Bug 1767701
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt", # Bug 1767701
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt", # Bug 1767701
]
["browser_dbg-features-breakable-positions.js"]

View File

@@ -32,7 +32,7 @@ prefs = [
["browser_dbg-link-reload.js"]
skip-if = [
"os == 'linux' && asan", # Bug 1715866
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && asan", # Bug 1715866
"os == 'win' && bits == 64", # Bug 1715866
]
@@ -59,17 +59,17 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_dbg-navigation.js"]
skip-if = [
"verify && debug && os == 'mac'", # Bug 1307249
"os == 'linux' && debug && bits == 64", # Bug 1307249
"os == 'mac' && debug", # Bug 1307249
"os == 'mac' && debug && verify", # Bug 1307249
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1307249
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", # Bug 1307249
]
["browser_dbg-no-duplicate-breakpoints-on-frame-reload.js"]
["browser_dbg-old-breakpoint.js"]
skip-if = [
"os == 'linux'", #Bug 1644044
"os == 'mac'", #Bug 1644044
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", #Bug 1644044
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'", #Bug 1644044
]
["browser_dbg-outline-filter.js"]
@@ -144,8 +144,8 @@ fail-if = ["a11y_checks"] # Bug 1860733 splitter element is not focusable
["browser_dbg-preview.js"]
skip-if = [
"os == 'win'",
"os == 'linux'",
"os == 'mac' && !debug",
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt",
]
["browser_dbg-project-root.js"]
@@ -156,19 +156,22 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_dbg-quick-open.js"]
skip-if = [
"os == 'win'",
"os == 'linux' && bits == 64 && debug", # Bug 1721999
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && debug", # Bug 1721999
]
["browser_dbg-react-app.js"]
skip-if = [
"os == 'win'",
"os == 'linux' && tsan", # Bug 1813196
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && tsan", # Bug 1813196
]
["browser_dbg-react-jsx.js"]
["browser_dbg-reducer-cleanup-on-target-removal.js"]
skip-if = ["os == 'linux' && (debug || tsan)"] # Bug 1835255
skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && debug", # Bug 1835255
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && tsan", # Bug 1835255
]
["browser_dbg-reloading.js"]
skip-if = ["true"]
@@ -224,7 +227,7 @@ skip-if = [
"ccov",
"debug",
"tsan",
"verify && debug && os == 'linux'",
"os == 'linux' && debug && verify",
"a11y_checks", # Bugs 1858041 and 1849028 intermittent results (fails on Try, passes on Autoland)
]
@@ -234,7 +237,7 @@ skip-if = ["true"] # original stepping is currently disabled
["browser_dbg-sourcemapped-toggle.js"]
["browser_dbg-sourcemaps-bogus.js"]
skip-if = ["os == 'linux' && !asan"] # bug 1447118
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64' && !asan"] # bug 1447118
["browser_dbg-sourcemaps-breakpoints.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
@@ -277,7 +280,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_dbg-stepping.js"]
skip-if = [
"debug",
"verify && os == 'win'",
"os == 'win' && verify",
]
["browser_dbg-tabs-keyboard.js"]
@@ -303,14 +306,14 @@ skip-if = ["true"] # Bug 1814093
["browser_dbg-windowless-service-workers-reload.js"]
skip-if = [
"os == 'linux'", # Bug 1767716
"win11_2009 && !debug", # Bug 1767716
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1767716
"win11_2009 && opt", # Bug 1767716
]
["browser_dbg-windowless-service-workers.js"]
skip-if = [
"os == 'linux'", # Bug 1732486, # Bug 1767717
"win11_2009 && !debug", # Bug 1767717
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1732486, # Bug 1767717
"win11_2009 && opt", # Bug 1767717
]
["browser_dbg-windowless-workers-early-breakpoint.js"]

View File

@@ -35,8 +35,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_computed_getNodeInfo.js"]
skip-if = [
"apple_catalina && !debug", #Bug 1559033
"apple_silicon && !debug", #Bug 1559033
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt", #Bug 1559033
"a11y_checks", # Bugs 1849028 and 1858041 to investigate intermittent a11y_checks results
]

View File

@@ -32,7 +32,10 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_grids_grid-list-no-grids.js"]
["browser_grids_grid-list-on-iframe-reloaded.js"]
skip-if = ["verify && (os == 'win' || os == 'linux')"]
skip-if = [
"os == 'win' && verify",
"os == 'linux' && verify",
]
["browser_grids_grid-list-on-mutation-element-added.js"]
skip-if = ["true"] #Bug 1557326
@@ -65,13 +68,14 @@ skip-if = ["true"] #Bug 1557326
["browser_grids_grid-outline-updates-on-grid-change.js"]
skip-if = [
"os == 'linux'",
"os == 'mac'",
"os == 'win' && (debug || asan)", #Bug 1557181
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'win' && debug", #Bug 1557181
"os == 'win' && asan", #Bug 1557181
]
["browser_grids_grid-outline-writing-mode.js"]
skip-if = ["verify && os == 'win'"]
skip-if = ["os == 'win' && verify"]
["browser_grids_highlighter-setting-rules-grid-toggle.js"]

View File

@@ -86,13 +86,13 @@ support-files = [
]
["browser_markup_accessibility_focus_blur.js"]
skip-if = ["os == 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
run-if = ["os != 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
["browser_markup_accessibility_navigation.js"]
skip-if = ["os == 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
run-if = ["os != 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
["browser_markup_accessibility_navigation_after_edit.js"]
skip-if = ["os == 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
run-if = ["os != 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
["browser_markup_accessibility_new_selection.js"]

View File

@@ -38,7 +38,7 @@ skip-if = [
["browser_rules_add-property-cancel_03.js"]
["browser_rules_add-property-commented.js"]
skip-if = ["verify && debug && os == 'win'"]
skip-if = ["os == 'win' && debug && verify"]
["browser_rules_add-property-invalid-identifier.js"]
@@ -78,8 +78,8 @@ skip-if = ["verify && debug && os == 'win'"]
["browser_rules_authored_color.js"]
skip-if = [
"os == 'linux' && os_version == '18.04' && !debug", # Bug 1559315
"apple_catalina", # Bug 1713158
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt", # Bug 1559315
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'", # Bug 1713158
"win11_2009", # Bug 1797751
]
@@ -106,7 +106,7 @@ skip-if = [
["browser_rules_colorUnit.js"]
["browser_rules_color_scheme_simulation.js"]
skip-if = ["os == 'win' && !debug"] # Bug 1703465
skip-if = ["os == 'win' && opt"] # Bug 1703465
["browser_rules_color_scheme_simulation_bfcache.js"]
@@ -153,7 +153,7 @@ skip-if = ["os == 'win' && !debug"] # Bug 1703465
["browser_rules_completion-new-property_01.js"]
["browser_rules_completion-new-property_02.js"]
skip-if = ["verify && !debug && os == 'win'"]
skip-if = ["os == 'win' && opt && verify"]
["browser_rules_completion-new-property_03.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
@@ -221,7 +221,7 @@ skip-if = ["a11y_checks"] # Bugs 1849028 and 1858041 clicked span.ruleview-expan
["browser_rules_edit-property-order.js"]
["browser_rules_edit-property-remove_01.js"]
skip-if = ["verify && debug && os == 'win'"]
skip-if = ["os == 'win' && debug && verify"]
["browser_rules_edit-property-remove_02.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
@@ -252,7 +252,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_rules_edit-property_10.js"]
["browser_rules_edit-selector-click-on-scrollbar.js"]
skip-if = ["os == 'mac'"] # Bug 1245996 : click on scrollbar not working on OSX
skip-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] # Bug 1245996 : click on scrollbar not working on OSX
["browser_rules_edit-selector-click.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
@@ -322,6 +322,5 @@ skip-if = ["debug"] # Bug 1250058 - Docshell leak on debug
["browser_rules_variables_04-valid-chars.js"]
["browser_rules_variables_autocomplete.js"]
skip-if = ["!fission"]
["browser_rules_variables_host.js"]

View File

@@ -73,7 +73,7 @@ support-files = [
["browser_inspector_breadcrumbs_keybinding.js"]
["browser_inspector_breadcrumbs_keyboard_trap.js"]
skip-if = ["os == 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
run-if = ["os != 'mac'"] # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
["browser_inspector_breadcrumbs_mutations.js"]
@@ -149,8 +149,8 @@ skip-if = ["os == 'mac'"] # Full keyboard navigation on OSX only works if Full K
skip-if = [
"os == 'win' && asan", # Bug 1453214
"os == 'win' && debug", # Bug 1453214
"os == 'linux'", # Bug 1453214
"os == 'mac' && debug", # high frequency intermittent, bug 1453214
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1453214
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", # high frequency intermittent, bug 1453214
]
["browser_inspector_highlighter-cssshape_05.js"]
@@ -260,7 +260,7 @@ skip-if = ["os == 'win'"] # bug 1413442
["browser_inspector_highlighter-rulers_02.js"]
["browser_inspector_highlighter-rulers_03.js"]
skip-if = ["os == 'win' && !debug"] # Bug 1449754
skip-if = ["os == 'win' && opt"] # Bug 1449754
["browser_inspector_highlighter-selector_01.js"]
@@ -433,7 +433,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_inspector_startup.js"]
["browser_inspector_switch-to-inspector-on-pick.js"]
skip-if = ["apple_catalina && !debug"] # Bug 1713158
skip-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt"] # Bug 1713158
["browser_inspector_textbox-menu.js"]

View File

@@ -21,9 +21,8 @@ support-files = [
["browser_net_har_copy_all_as_har.js"]
skip-if = [
"apple_catalina && !debug", #Bug 1622925
"apple_silicon && !debug", #Bug 1622925
"os == 'linux' && os_version == '18.04' && !debug", #Bug 1622925
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt", #Bug 1622925
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt", #Bug 1622925
"win11_2009", # Bug 1797751
]

View File

@@ -133,11 +133,10 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_net_block-pattern.js"]
skip-if = [
"os == 'linux' && os_version == '18.04'",
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'",
"win11_2009 && debug", # Bug 1603355
"win10_2009 && debug", # Bug 1603355
"apple_catalina && debug", # Bug 1603355
"apple_silicon && debug", # Bug 1603355
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", # Bug 1603355
]
["browser_net_block-serviceworker.js"]
@@ -205,8 +204,7 @@ skip-if = [
["browser_net_content-type.js"]
skip-if = [
"apple_catalina && !debug",
"apple_silicon && !debug",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt",
]
["browser_net_cookies_sorted.js"]
@@ -225,8 +223,7 @@ skip-if = ["win11_2009 && debug && verify"]
["browser_net_copy_params.js"]
skip-if = [
"win11_2009", # Bug 1797751
"apple_catalina && !debug && verify", # bug 1328915
"apple_silicon && !debug && verify", # bug 1328915
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt && verify", # bug 1328915
]
["browser_net_copy_response.js"]
@@ -425,7 +422,7 @@ skip-if = [
["browser_net_resend_xhr.js"]
["browser_net_response_CORS_blocked.js"]
skip-if = ["os == 'linux' && os_version == '18.04' && !debug && a11y_checks"] # bug 1732635
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt && a11y_checks"] # bug 1732635
["browser_net_response_node-expanded.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
@@ -435,7 +432,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_net_script_cache.js"]
["browser_net_search-results.js"]
skip-if = ["os == 'linux' && os_version == '18.04' && a11y_checks"] # Bug 1721160
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64' && a11y_checks"] # Bug 1721160
["browser_net_security-details.js"]
@@ -462,7 +459,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
["browser_net_service-worker-status.js"]
skip-if = ["os == 'linux' && os_version == '18.04' && !debug && verify"]
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt && verify"]
["browser_net_service-worker-timings.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled

View File

@@ -98,8 +98,8 @@ skip-if = ["verify"]
["browser_console_webconsole_private_browsing.js"]
skip-if = [
"os == 'mac'", # Bug 1689000
"os == 'linux' && debug", # Bug 1689000
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'", # Bug 1689000
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && debug", # Bug 1689000
]
["browser_console_webextension.js"]
@@ -111,5 +111,5 @@ skip-if = [
"asan", # Bug 1591590
"debug", # Bug 1591590
"ccov", # Bug 1591590
"os == 'win' && bits == 64 && !debug", # Bug 1591590
"os == 'win' && bits == 64 && opt", # Bug 1591590
]

View File

@@ -34,14 +34,12 @@ support-files = [
["browser_jsterm_add_edited_input_to_history.js"]
["browser_jsterm_autocomplete-properties-with-non-alphanumeric-names.js"]
skip-if = ["win11_2009 && debug && bits == 32"] # Bug 1620856
["browser_jsterm_autocomplete_accept_no_scroll.js"]
["browser_jsterm_autocomplete_array_no_index.js"]
["browser_jsterm_autocomplete_arrow_keys.js"]
skip-if = ["win11_2009 && debug && bits == 32"] # Bug 1620856
["browser_jsterm_autocomplete_await.js"]
@@ -276,7 +274,7 @@ fail-if = ["a11y_checks"] # Bug 1849028
["browser_jsterm_screenshot_command_user.js"]
["browser_jsterm_screenshot_command_warnings.js"]
skip-if = ["os == 'linux' && bits == 64 && !debug"] # Bug 1701439
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt"] # Bug 1701439
["browser_jsterm_selfxss.js"]

View File

@@ -291,7 +291,7 @@ skip-if = [
"tsan", # Bug 1767724
"release_or_beta", # requires dom.postMessage.sharedArrayBuffer.bypassCOOP_COEP.insecure.enabled
"os == 'linux'", # Bug 1767724
"apple_catalina && debug", # Bug 1767724
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", # Bug 1767724
]
["browser_webconsole_console_profile_unavailable.js"]
@@ -324,7 +324,7 @@ skip-if = [
["browser_webconsole_context_menu_copy_link_location.js"]
https_first_disabled = true
skip-if = [
"os == 'linux'", # bug 1473120
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # bug 1473120
"http3", # Bug 1829298
"http2",
]
@@ -335,7 +335,7 @@ skip-if = [
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
["browser_webconsole_context_menu_copy_object.js"]
skip-if = ["apple_catalina"] # Bug 1713158
skip-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] # Bug 1713158
["browser_webconsole_context_menu_export_console_output.js"]
@@ -351,7 +351,7 @@ skip-if = [
["browser_webconsole_context_menu_reveal_in_inspector.js"]
["browser_webconsole_context_menu_store_as_global.js"]
skip-if = ["apple_catalina"] # Bug 1713158
skip-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] # Bug 1713158
["browser_webconsole_cors_errors.js"]
https_first_disabled = true
@@ -414,8 +414,8 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_webconsole_eval_in_debugger_stackframe2.js"]
skip-if = [
"!debug && os == 'linux'", #Bug 1598205
"!debug && os == 'win'", #Bug 1598205
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt", #Bug 1598205
"os == 'win' && os_version == '11.2009' && processor == 'x86_64' && opt", #Bug 1598205
]
["browser_webconsole_eval_sources.js"]
@@ -538,7 +538,7 @@ skip-if = ["a11y_checks"] # Bug 1849028 and 1849179 for causing crashes
["browser_webconsole_network_messages_expand_before_updates.js"]
skip-if = [
"os == 'win'", # Bug 1689101
"os == 'linux'", # Bug 1689101
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1689101
]
["browser_webconsole_network_messages_html_preview.js"]
@@ -577,7 +577,7 @@ fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and
["browser_webconsole_object_ctrl_click.js"]
fail-if = ["a11y_checks"] # Bug 1849028 clicked element may not be focusable and/or labeled
skip-if = ["apple_catalina"] # Bug 1713158
skip-if = ["os == 'mac' && os_version == '10.15' && processor == 'x86_64'"] # Bug 1713158
["browser_webconsole_object_in_sidebar_keyboard_nav.js"]

View File

@@ -55,11 +55,10 @@ support-files = [
["browser_resources_css_messages.js"]
["browser_resources_css_registered_properties.js"]
skip-if = ["!fission"]
["browser_resources_document_events.js"]
skip-if = [
"os == 'linux' && bits == 64", # Bug 1715878
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1715878
]
["browser_resources_error_messages.js"]
@@ -94,9 +93,9 @@ skip-if = [
["browser_resources_sources.js"]
skip-if = [
"os == 'linux' && bits == 64", # Bug 1744565
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1744565
"win11_2009", # Bug 1767772
"apple_catalina", # Bug 1767772
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'", # Bug 1767772
]
["browser_resources_stylesheets.js"]