29 lines
613 B
TOML
29 lines
613 B
TOML
[DEFAULT]
|
|
skip-if = ["os == 'android'"] # We don't use XUL alerts on Android
|
|
support-files = [
|
|
"empty.html",
|
|
"image.gif",
|
|
"image.png",
|
|
"image_server.sjs",
|
|
]
|
|
|
|
# Synchronous tests like test_alerts.html must come before
|
|
# asynchronous tests like test_alerts_noobserve.html!
|
|
|
|
["test_alerts.html"]
|
|
|
|
["test_alerts_noobserve.html"]
|
|
|
|
["test_alerts_requireinteraction.html"]
|
|
skip-if = ["verify && os == 'linux'"]
|
|
|
|
["test_image.html"]
|
|
skip-if = ["verify"]
|
|
|
|
["test_invalid_utf16.html"]
|
|
run-if = ["os == 'win'"] # Bug 1836526
|
|
|
|
["test_multiple_alerts.html"]
|
|
|
|
["test_principal.html"]
|
|
skip-if = ["verify"] # Bug 1810860
|