summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/origins/resources/redirect.html
blob: 603cb76f0610c08f5efacfc15139ccdd60fb7fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
    <head>
        <title>redirect</title>
        <script>
            function addStylesheetLink(src) {
                let link = document.createElement('link');
                link.rel = 'stylesheet';
                link.href = src;
                document.getElementsByTagName("head")[0].appendChild(link);
             }
        </script>
    </head>
    <body>
        Text
    </body>
</html>