summaryrefslogtreecommitdiff
path: root/Tools/WebKitLauncher/start.html
blob: bdb593e743a9cbb32420e46743c513f2320e6563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
    <head>
        <title>Loading WebKit...</title>
        <meta http-equiv="refresh" content="1;URL=http://nightly.webkit.org/start/">
        <script type="text/javascript">
            var script = document.createElement('script');
            script.src = "x-webkit-launcher:webkit-version-information.js";
            script.onload = function() {
                if (webKitBranch && webKitRevision)
                    document.location = "http://nightly.webkit.org/start/" + webKitBranch + "/" + webKitRevision;
            }
            document.documentElement.appendChild(script);
        </script>
    </head>
    <body>
    </body>
</html>