Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /presentation-api/controlling-ua/PresentationConnectionCloseEvent.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Constructing a PresentationConnectionCloseEvent</title>
<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>