blob: 7e0705e9dbe03d448774ee15d890bb4166365cf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<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>
|