mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-13 04:42:04 +00:00
19 lines
557 B
HTML
19 lines
557 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title>HTMLElement#click</title>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<div id=log></div>
|
|
<script>
|
|
test(function() {
|
|
var element = document.createElement("div");
|
|
var received = false;
|
|
element.addEventListener("click", this.step_func(function(e) {
|
|
received = true;
|
|
assert_false(e.isTrusted, "Event should not be trusted")
|
|
}));
|
|
element.click();
|
|
assert_true(received, "click event should have been dispatched synchronously");
|
|
})
|
|
</script>
|