summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/origins/resources/link.html
blob: 297b9b273883406e0b4bf9abd1c348b1f6a64984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
    <head>
        <title>Link</title>
    </head>
    <body>
        <a id="link" href="">Link</a>
        <script>
            const urlParams = new URLSearchParams(window.location.search);
            document.getElementById("link").href = urlParams.get('linkLocation');
        </script>
    </body>
</html>