1
0
Fork 0
firefox/dom/cache/test/mochitest/frame.html
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

17 lines
452 B
HTML

<!DOCTYPE html>
<script>
var context = "Window";
function ok(a, msg) {
parent.postMessage({type: "status", status: !!a,
msg: a + ": " + msg, context}, "*");
}
function is(a, b, msg) {
parent.postMessage({type: "status", status: a === b,
msg: a + " === " + b + ": " + msg, context}, "*");
}
function testDone() {
parent.postMessage({type: "finish", context}, "*");
}
</script>