summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/presentation-api/controlling-ua/startNewPresentation_displaynotallowed-manual.https.html
blob: 877c17a35dd83e6742423cad5d27eb77f5897d6d (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Calling "start" when the user denied permission to use the display returns a Promise rejected with a NotAllowedError exception.</title>
<link rel="author" title="Tomoyuki Shimizu" href="https://github.com/tomoyukilabs/">
<link rel="help" href="http://w3c.github.io/presentation-api/#dfn-controlling-user-agent">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="common.js"></script>

<p>Before starting this test, confirm that there are one or more available presentation display on your local network.</p>
<p>Click the button below to start the manual test. If prompted to select a device, please dismiss the dialog box. The test passes if a "PASS" result appears.
</p>
<button id="presentBtn">Start Presentation Test</button>

<script>
    // disable the timeout function for the tests
    setup({explicit_timeout: true});

    // ----------
    // DOM Object
    // ----------
    var presentBtn = document.getElementById("presentBtn");

    // -------------------------------------------
    // Start New Presentation Test (error) - begin
    // -------------------------------------------
    presentBtn.onclick = function () {
        presentBtn.disabled = true;
        promise_test(function (t) {
            var request = new PresentationRequest(presentationUrls);

            // terminate the presentation connection when the presentation is started by accident
            var connection;
            t.add_cleanup(function() {
                if(connection)
                    connection.terminate();
            });

            return promise_rejects_dom(t, 'NotAllowedError', request.start().then(function(c) { connection = c; }));
        });
    };
    // -----------------------------------------
    // Start New Presentation Test (error) - end
    // -----------------------------------------
</script>