mirror of
https://github.com/servo/servo.git
synced 2025-07-01 04:23:39 +01:00
10 lines
184 B
HTML
10 lines
184 B
HTML
<body>
|
|
coucou
|
|
<a href="{{GET[url]}}">Click me</a>
|
|
</body>
|
|
|
|
<script>
|
|
window.addEventListener("load", function() {
|
|
document.getElementsByTagName("a")[0].click();
|
|
})
|
|
</script>
|