summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/presentation-api/receiving-ua/PresentationConnection_onclose-manual.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/presentation-api/receiving-ua/PresentationConnection_onclose-manual.https.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/presentation-api/receiving-ua/PresentationConnection_onclose-manual.https.html')
-rw-r--r--testing/web-platform/tests/presentation-api/receiving-ua/PresentationConnection_onclose-manual.https.html84
1 files changed, 84 insertions, 0 deletions
diff --git a/testing/web-platform/tests/presentation-api/receiving-ua/PresentationConnection_onclose-manual.https.html b/testing/web-platform/tests/presentation-api/receiving-ua/PresentationConnection_onclose-manual.https.html
new file mode 100644
index 0000000000..50585f7813
--- /dev/null
+++ b/testing/web-platform/tests/presentation-api/receiving-ua/PresentationConnection_onclose-manual.https.html
@@ -0,0 +1,84 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Closing a PresentationConnection</title>
+<link rel="author" title="Tomoyuki Shimizu" href="https://github.com/tomoyukilabs">
+<link rel="help" href="https://w3c.github.io/presentation-api/#closing-a-presentationconnection">
+<script src="common.js"></script>
+<script src="support/stash.js"></script>
+<style>
+iframe { display: none; }
+</style>
+
+<p>Click the button below and select the available presentation display, to start the manual test.</p>
+<button id="presentBtn" disabled>Start Presentation Test</button>
+<iframe id="childFrame" sandbox="allow-scripts allow-presentation" src="support/iframe.html"></iframe>
+
+<script>
+ let connection;
+ const presentBtn = document.getElementById('presentBtn');
+ const child = document.getElementById('childFrame');
+
+ child.onload = () => { presentBtn.disabled = false; };
+
+ presentBtn.onclick = () => {
+ presentBtn.disabled = true;
+ const stash = new Stash(stashIds.toController, stashIds.toReceiver);
+ const request = new PresentationRequest('support/PresentationConnection_onclose_receiving-ua.html');
+
+ return request.start().then(c => {
+ connection = c;
+ return stash.init();
+ }).then(() => {
+ return stash.receive();
+ }).then(data => {
+ const result = JSON.parse(data);
+ if (result.type === 'ok') {
+ return request.reconnect(connection.id).then(() => data);
+ }
+ else
+ return data;
+ }).then(data => {
+ const result = JSON.parse(data);
+ if (result.type === 'ok') {
+ connection.onclose = null;
+ connection.close();
+ return stash.receive();
+ }
+ else
+ return data;
+ }).then(data => {
+ const result = JSON.parse(data);
+ if (result.type === 'ok') {
+ child.contentWindow.postMessage({ type: 'connect', id: connection.id, url: connection.url }, '*');
+ return stash.receive();
+ }
+ else
+ return data;
+ }).then(data => {
+ const result = JSON.parse(data);
+ if (result.type === 'ok') {
+ child.parentNode.removeChild(child);
+ return stash.receive();
+ }
+ else
+ return data;
+ }).then(result => {
+ const json = JSON.parse(result);
+ // notify receiver's results of a parent window (e.g. test runner)
+ if (window.opener && 'completion_callback' in window.opener) {
+ window.opener.completion_callback(json.tests, json.status);
+ }
+ // display receiver's results as HTML
+ const log = document.createElement('div');
+ log.id = 'log';
+ log.innerHTML = json.log;
+ document.body.appendChild(log);
+
+ connection.onconnect = () => { connection.terminate(); };
+ if (connection.state === 'closed')
+ request.reconnect(connection.id);
+ else
+ connection.terminate();
+ });
+ };
+</script>