summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/presentation-api/controlling-ua/PresentationConnectionCloseEvent.https.html
blob: 34c935a6039b5690c6aa368a2e1ed9c4f450494a (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Constructing a PresentationConnectionCloseEvent</title>
<link rel="author" title="mark a. foltz" href="https://github.com/mfoltzgoogle">
<link rel="help" href="http://w3c.github.io/presentation-api/#controlling-user-agent">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script>
  test(() => {
    let eventWithMessage, eventWithoutMessage;
    for (let reason of ["error", "closed", "wentaway"]) {
      eventWithMessage = new PresentationConnectionCloseEvent("close", {reason: reason, message: "A message" });
      assert_equals(eventWithMessage.type, "close");
      assert_equals(eventWithMessage.reason, reason);
      assert_equals(eventWithMessage.message, "A message");

      eventWithoutMessage = new PresentationConnectionCloseEvent("close", {reason: reason});
      assert_equals(eventWithoutMessage.type, "close");
      assert_equals(eventWithoutMessage.reason, reason);
      assert_equals(eventWithoutMessage.message, "");
    }
  });
</script>