mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-04 16:11:54 +00:00
Fixes at least one WPT test that was previously timing out: - html/semantics/document-metadata/the-base-element/base_target_does_not_affect_iframe_src_navigation.html
11 lines
302 B
HTML
11 lines
302 B
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>
|