summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/presentation-api/controlling-ua/idlharness.html
blob: 8c3268af2287ecf086d1ef17b5a21eabaec04185 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<meta charset="utf-8">
<title>Presentation API IDL tests for Controlling User Agent</title>
<link rel="author" title="Louay Bassbouss" href="http://www.fokus.fraunhofer.de">
<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="/resources/WebIDLParser.js"></script>
<script src="/resources/idlharness.js"></script>

<script id="untested_idl" type="text/plain">
interface Navigator {
};
interface EventTarget {
};
interface EventHandler {
};
interface Event {
};
dictionary EventInit {
};
</script>

<script id='idl' type="text/plain">
partial interface Navigator {
    [SameObject]
    readonly attribute Presentation? presentation;
};

interface Presentation {
};

partial interface Presentation {
    attribute PresentationRequest? defaultRequest;
};

[Constructor(DOMString url),
 Constructor(sequence<DOMString> urls)]
interface PresentationRequest : EventTarget {
    Promise<PresentationConnection>   start();
    Promise<PresentationConnection>   reconnect(DOMString presentationId);
    Promise<PresentationAvailability> getAvailability();

    attribute EventHandler onconnectionavailable;
};

interface PresentationAvailability : EventTarget {
    readonly attribute boolean      value;
             attribute EventHandler onchange;
};

[Constructor(DOMString type, PresentationConnectionAvailableEventInit eventInitDict)]
interface PresentationConnectionAvailableEvent : Event {
    [SameObject]
    readonly attribute PresentationConnection connection;
};

dictionary PresentationConnectionAvailableEventInit : EventInit {
    required PresentationConnection connection;
};

enum PresentationConnectionState {
    "connecting",
    "connected",
    "closed",
    "terminated"
};

enum BinaryType {
    "blob",
    "arraybuffer"
};

interface PresentationConnection : EventTarget {
    readonly attribute DOMString                   id;
    readonly attribute DOMString                   url;
    readonly attribute PresentationConnectionState state;
    void close();
    void terminate();
    attribute EventHandler                onconnect;
    attribute EventHandler                onclose;
    attribute EventHandler                onterminate;

    // Communication
    attribute BinaryType                  binaryType;
    attribute EventHandler                onmessage;
    void send(DOMString message);
    void send(Blob data);
    void send(ArrayBuffer data);
    void send(ArrayBufferView data);
};

enum PresentationConnectionClosedReason {
    "error",
    "closed",
    "wentaway"
};

[Constructor(DOMString type, PresentationConnectionCloseEventInit eventInitDict)]
interface PresentationConnectionCloseEvent : Event {
    readonly attribute PresentationConnectionClosedReason reason;
    readonly attribute DOMString                          message;
};

dictionary PresentationConnectionCloseEventInit : EventInit {
    required PresentationConnectionClosedReason reason;
    		 DOMString                          message = "";
};
</script>

<script>
    (function() {
        "use strict";
        var idl_array = new IdlArray();
        var idls = document.getElementById('idl').textContent;
        idl_array.add_untested_idls(document.getElementById('untested_idl').textContent);
        idl_array.add_idls(idls);
        window.presentation_request = new PresentationRequest("/presentation-api/receiving-ua/idlharness.html");
        window.presentation_request_urls = new PresentationRequest(["/presentation-api/receiving-ua/idlharness.html",
            "http://www.example.com/presentation.html"]);
        navigator.presentation.defaultRequest = presentation_request;
        idl_array.add_objects({
            Presentation: ['navigator.presentation'],
            PresentationRequest: ['navigator.presentation.defaultRequest', 'presentation_request', 'presentation_request_urls']
        });
        idl_array.test();
    })();
</script>