Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/tests/mochitest.toml
<!doctype html>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script>
SimpleTest.waitForExplicitFinish();
function reportResult(passed, msg) {
ok(passed, msg);
SimpleTest.finish();
}
function runTest() {
window.open(
"file_synthmousemove_after_navigation.html",
"_blank",
"width=400,height=400"
);
}
SimpleTest.waitForFocus(runTest);
</script>