mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-16 14:02:00 +00:00
13 lines
240 B
HTML
13 lines
240 B
HTML
<!doctype html>
|
|
<style>
|
|
ul#mylist a:link { }
|
|
ul#mylist a:any-link { }
|
|
ul#mylist a:local-link { }
|
|
</style>
|
|
<script>
|
|
let o = document.createElement("div");
|
|
o.offsetWidth;
|
|
</script>
|
|
<body>
|
|
<ul id="mylist"></ul>
|
|
</body>
|