blob: 0dfc084f2e3442038bc4eaf62a88f514053a6b97 (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<!DOCTYPE html>
<!--
[%provenance%]
-->
<html lang="en">
<meta charset="utf-8">
<title>HTTP headers on request for Appcache manifest</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/fetch/metadata/resources/helper.sub.js"></script>
<body>
<script>
'use strict';
function induceRequest(url) {
const iframe = document.createElement('iframe');
iframe.src =
'/fetch/metadata/resources/appcache-iframe.sub.html?manifest=' + encodeURIComponent(url);
return new Promise((resolve) => {
addEventListener('message', function onMessage(event) {
if (event.source !== iframe.contentWindow) {
return;
}
removeEventListener('message', onMessage);
resolve(event.data);
});
document.body.appendChild(iframe);
})
.then((message) => {
if (message !== 'okay') {
throw message;
}
})
.then(() => iframe.remove());
}
{%- for subtest in subtests %}
async_test((t) => {
const key = '{{uuid()}}';
assert_implements_optional(
!!window.applicationCache, 'Application Cache supported.'
);
induceRequest(makeRequestURL(key, [% subtest.origins %]))
.then(() => retrieve(key))
.then((headers) => {
{%- if subtest.expected == none %}
assert_not_own_property(headers, '[%subtest.headerName%]');
{%- else %}
assert_own_property(headers, '[%subtest.headerName%]');
assert_array_equals(headers['[%subtest.headerName%]'], ['[%subtest.expected%]']);
{%- endif %}
})
.then(() => t.done(), t.step_func((error) => { throw error; }));
}, '[%subtest.headerName%][%subtest.description | pad("start", " - ")%]');
{%- endfor %}
</script>
</body>
</html>
|