Revision 3bd47e539858c95b77bc526a645cc32881b91140 authored by jgraham on 08 April 2016, 11:06:36 UTC, committed by jgraham on 08 April 2016, 11:06:36 UTC
Merge pull request #2791 from sync_2db7681733edb09176f2a0871ff07252da0fb204
2 parent s 775618a + 2db7681
Raw File
pointerevent_button_attribute_mouse-manual.html
<!doctype html>
<html>
    <head>
        <title>Button and buttons attribute test for mouse</title>
        <meta name="viewport" content="width=device-width">
        <link rel="stylesheet" type="text/css" href="pointerevent_styles.css">
        <script src="/resources/testharness.js"></script>
        <script src="/resources/testharnessreport.js"></script>
        <script type="text/javascript" src="pointerevent_support.js"></script>
    </head>
    <body onload="run()">
        <h1>Button attribute test for mouse</h1>
        <h2>This test is for mouse only</h2>
        <h4>
            Test Description: This test checks if button attribute for mouse handled properly.
            <p>Put your mouse over the black rectangle</p>
        </h4>
        <p>
        <div id="target0" style="background:black"></div>
        <script>
            var eventTested = false;
            var detected_pointertypes = {};

            setup({ explicit_done: true });
            add_completion_callback(showPointerTypes);

            function run() {
                var target0 = document.getElementById("target0");

                // If pointerType is "mouse" and no mouse button is depressed, then the button attribute of the pointermove event must be -1 and the buttons attribute must be 0.
                // TA: 5.8
                on_event(target0, "pointerover", function (event) {
                    detected_pointertypes[event.pointerType] = true;
                    if(event.pointerType != "mouse") {
                        alert("Use mouse for this test please!");
                        return;
                    }
                    if (eventTested == false) {
                        test(function() {
                            assert_true(event.button == -1, "If mouse buttons are released button attribute is -1")
                        }, "If mouse buttons are released button attribute is -1");
                        test(function() {
                            assert_true(event.buttons == 0, "If mouse buttons are released buttons attribute is 0")
                        }, "If mouse buttons are released buttons attribute is 0");
                        eventTested = true;
                        done();
                    }
                });
            }
        </script>
        <h1>Pointer Events button attribute test for mouse test</h1>
        <div id="complete-notice">
            <p>The following pointer types were detected: <span id="pointertype-log"></span>.</p>
        </div>
        <div id="log"></div>
    </body>
</html>
back to top