mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
18 lines
415 B
HTML
18 lines
415 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
<details id="details"><summary><span>here be bugs</span></summary><span>you can't see me</span></details>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest(done => {
|
|
details.ontoggle = (event) => {
|
|
println(`toggle ${event.newState}`);
|
|
done();
|
|
};
|
|
internals.click(5, 5);
|
|
});
|
|
</script>
|