blob: 221bc7773451363cb860f51d0529996115d7ea0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<body>
<script>
enablePixelTesting = true;
</script>
<script src="../../js/resources/js-test-pre.js"></script>
<script src="../resources/common.js"></script>
<button type="reset">Reset</button>
<div id="console"></div>
<script>
description('Clicking on a form control should focus on it.');
testPassed('Focus event was dispatched.');
hoverOverElement(document.querySelector('button'));
</script>
<script src="../../js/resources/js-test-post.js"></script>
</body>
|