Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test for double focus events (covers #11665) #11865

Merged
merged 1 commit into from Jun 25, 2016
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Test for double focus events (covers #11665)

  • Loading branch information
paulrouget committed Jun 25, 2016
commit 2c35233638c02a0f0d432fae98e50a8c31bb5e72
@@ -6310,6 +6310,12 @@
"url": "/_mozilla/mozilla/document_url.html"
}
],
"mozilla/double_focus.html": [
{
"path": "mozilla/double_focus.html",
"url": "/_mozilla/mozilla/double_focus.html"
}
],
"mozilla/element_attribute.html": [
{
"path": "mozilla/element_attribute.html",
@@ -0,0 +1,76 @@
<!DOCTYPE html>

<html>

<head>
<meta charset="UTF-8">
<title>Double focus/blur events</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>

<body>

<input>

<script>

async_test(function(t) {

var input = document.querySelector("input");

var actions = [
input.focus,
input.focus,
input.blur,
input.blur,
input.focus,
input.focus,
input.blur,
input.blur,
input.focus,
];

var expected_events = [
"focus",
"blur",
"focus",
"blur",
"focus",
];

var received_events = [];

var action_idx = 0;

var onEvent = t.step_func(function(e) {
received_events.push(e.type);
if (action_idx == actions.length - 1) {
// All actions executed
assert_array_equals(expected_events, received_events);
t.done();
}
});

function next() {
actions[action_idx].apply(input);
action_idx++;
if (action_idx < actions.length) {
// This can't be done on focus or blur events
// as we don't expect focus() to trigger a focus
// event if the input was already focused.
setTimeout(next, 0);
}
}

input.addEventListener("focus", onEvent, false);
input.addEventListener("blur", onEvent, false);

next();

});

</script>

</body>
</html>
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.