summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/uievents/legacy-domevents-tests/submissions/Microsoft/focusin.html
blob: a6eb1b663801bab4f522994a44fb60a399dfb2a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML>
<html>
    <head>
        <title> W3C DOM Level 3 Event: focusin </title>
        <script type="text/javascript">
            var PassTest = function()
            {
                document.getElementById("testresult").firstChild.data = "PASS";
            }

            var FailTest = function()
            {
                document.getElementById("testresult").firstChild.data = "FAIL";
            }

            var EVENT = "focusin";
            var TARGET, PARENT;

            window.onload = function()
            {
                try
                {
                    TARGET = document.getElementById("target");
                    PARENT = document.getElementById("parent");

                    PARENT.addEventListener(EVENT, TestBubble, false);
                }
                catch(ex)
                {
                    FailTest();
                }
            }

            function TestBubble(evt)
            {
                if ((evt.type == EVENT) && (evt.currentTarget == PARENT) && (evt.target == TARGET))
                {
                    PassTest();
                }
                else
                {
                    FailTest();
                }
            }
        </script>
    </head>
    <body>
        <h4>
            Test Description:
            focusin event fires when an event target is about to receive focus.
        </h4>

        <div id="parent">
            Click here: <input id="target" />
        </div>

        <p>Test passes if the word "PASS" appears below after clicking the above textbox using mouse.</p>
           <div>Test result: </div>
        <div id='testresult'>FAIL</div>
    </body>
</html>