mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-13 04:21:54 +00:00
12 lines
318 B
HTML
12 lines
318 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<iframe id="i"></iframe>
|
|
<script>
|
|
asyncTest((done) => {
|
|
window.onmessage = function() {
|
|
println("PASS");
|
|
done();
|
|
};
|
|
i.src = "data:text/html,<script>top.postMessage('done', '*');</sc" + "ript>";
|
|
});
|
|
</script>
|