mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
11 lines
222 B
HTML
11 lines
222 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
location.hash = "#1";
|
||
|
|
println(location.hash);
|
||
|
|
location.hash = "#2";
|
||
|
|
println(location.hash);
|
||
|
|
});
|
||
|
|
</script>
|