Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: a11y_checks OR os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan OR os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && debug OR os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && tsan OR os == 'mac' && os_version == '14.70' && arch == 'x86_64' && debug OR os == 'mac' && os_version == '14.70' && arch == 'x86_64' && verify OR os == 'win'
- This test failed 42 times in the preceding 30 days. quicksearch this test
- Manifest: devtools/client/responsive/test/browser/browser.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
"use strict";
/* import-globals-from helper_touch_all_events.js */
Services.scriptloader.loadSubScript(
CHROME_URL_ROOT + "helper_touch_all_events.js",
this
);
const TEST_URL = `${URL_ROOT_COM_SSL}touch_iframe_parent.html`;
// The long_tap test frequently fails on CI, isolating it to reduce the risk of
addRDMTask(TEST_URL, async function ({ ui }) {
reloadOnTouchChange(true);
await toggleTouchSimulation(ui);
await runTouchAllEventsTests(
ui,
["topFrame", "localIFrame", "remoteIFrame"],
"long_tap"
);
await toggleTouchSimulation(ui);
});