mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-18 17:12:54 +00:00
17 lines
322 B
HTML
17 lines
322 B
HTML
<!DOCTYPE html>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const link = document.createElement("link");
|
|
link.as = "style"
|
|
|
|
println("Link.as: " + link.as)
|
|
|
|
link.as = "uwu"
|
|
|
|
if(link.as === "") {
|
|
println("Link.as: empty")
|
|
}
|
|
|
|
});
|
|
</script>
|