mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
312 B
HTML
15 lines
312 B
HTML
|
<html>
|
||
|
<body style="background-color:green;">
|
||
|
|
||
|
<!-- Tests rely on the fact that there's an element in here called 'url' and
|
||
|
that there's visible text on the page. -->
|
||
|
|
||
|
Aloha! My URL is <span id='url'></span>.
|
||
|
|
||
|
<script>
|
||
|
document.getElementById('url').innerHTML = window.location;
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|