mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 02:21:53 +00:00
11 lines
284 B
HTML
11 lines
284 B
HTML
<!DOCTYPE html>
|
|
<a id="a" href="http://serenityos.org"></a>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const aElement = document.getElementById("a");
|
|
println(a.protocol);
|
|
a.protocol = "https";
|
|
println(a.protocol);
|
|
})
|
|
</script>
|