2012-03-28 22:36:03 +04:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
|
2012-08-18 01:07:54 +04:00
|
|
|
<!-- Tests rely on the fact that there's an element in here called 'url' and
|
|
|
|
that there's visible text on the page. -->
|
|
|
|
|
2012-03-28 22:36:03 +04:00
|
|
|
Aloha! My URL is <span id='url'></span>.
|
2012-06-13 02:01:25 +04:00
|
|
|
|
2012-03-28 22:36:03 +04:00
|
|
|
<script>
|
2019-03-19 23:56:24 +03:00
|
|
|
// eslint-disable-next-line no-unsanitized/property
|
2019-03-19 23:56:10 +03:00
|
|
|
document.getElementById("url").innerHTML = window.location;
|
2012-03-28 22:36:03 +04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|