mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 03:39:17 +00:00
15 lines
No EOL
342 B
HTML
15 lines
No EOL
342 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<iframe id="i"></iframe>
|
|
<script>
|
|
asyncTest((done) => {
|
|
window.addEventListener("pageshow", (e) => {
|
|
if (e.isTrusted) {
|
|
println("PASS");
|
|
} else {
|
|
println("FAIL");
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
</script> |