File: index.html

package info (click to toggle)
swift 2.35.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 22,760 kB
  • sloc: python: 281,901; javascript: 1,059; sh: 619; pascal: 295; makefile: 81; xml: 32
file content (44 lines) | stat: -rw-r--r-- 1,522 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<html>
    <head>
        <meta charset="utf-8" />
        <title>CORS Tests</title>
        <style type="text/css">
tr:nth-child(2n) { background: lightgrey; }
.pass { background: green; }
.fail { background: red; }
.skip { background: orange; }
td:nth-child(1) {
    padding: .1em;
    width: 8em;
    text-align: center;
}
td:nth-child(2) {
    width: 50%;
}
        </style>
        <script type="text/javascript">
            const PARAMS = !window.location.hash ? {} : window.location.hash.substr(1)
                .split('&')
                .map(v => v.split('='))
                .reduce( (acc, [key, val]) => ({ ...acc, [unescape(key)]: unescape(val) }), {})
            console.log(PARAMS)
            var _xamzrequire // Needed to be able to import the sdk later
        </script>
        <script type="module" src="test-info.js"></script>
        <script type="module" src="test-account.js"></script>
        <script type="module" src="test-container.js"></script>
        <script type="module" src="test-object.js"></script>
        <script type="module" src="test-large-objects.js"></script>
        <script type="module" src="test-symlink.js"></script>
        <script type="module" src="test-s3-obj.js"></script>
    </head>
    <body>
        <h2>CORS Tests</h2>
        <div id="status">Loading...</div>
        <table>
            <thead><th>Result</th><th>Name</th><th>Details</th></thead>
            <tbody id="results"></tbody>
        </table>
        <pre id="dumper"></pre>
    </body>
</html>