mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
We forgot to implement a couple of "otherwise," statements from the "populating a session history entry" spec. While we're here, let's update the spec copy where relevant.
14 lines
398 B
HTML
14 lines
398 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<a href="mailto:contact@ladybird.org">please don't crash</a>
|
|
<script>
|
|
asyncTest(done => {
|
|
document.querySelector('a').click();
|
|
|
|
// The crash happened asynchronously, so we wait for a small amount of time before passing the test.
|
|
setTimeout(() => {
|
|
println('PASS (did not crash)');
|
|
done();
|
|
}, 100);
|
|
});
|
|
</script>
|