1
0
Fork 0
firefox/testing/web-platform/tests/scroll-to-text-fragment/stash.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
753 B
JavaScript

// Put test results into Stash
function stashResultsThenClose(key, results) {
fetch(`/scroll-to-text-fragment/stash.py?key=${key}`, {
method: 'POST',
body: JSON.stringify(results)
}).then(() => {
window.close();
});
}
// Fetch test results from the Stash
function fetchResults(key, resolve, reject) {
fetch(`/scroll-to-text-fragment/stash.py?key=${key}`).then(response => {
return response.text();
}).then(text => {
if (text) {
try {
const results = JSON.parse(text);
resolve(results);
} catch(e) {
reject();
}
} else {
// We keep trying to fetch results as the target page may not have stashed
// them yet.
fetchResults(key, resolve, reject);
}
});
}