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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
<!DOCTYPE html>
<!--
This test was procedurally generated. Please do not modify it directly.
Sources:
- fetch/metadata/tools/fetch-metadata.conf.yml
- fetch/metadata/tools/templates/window-history.sub.html
-->
<html lang="en">
<meta charset="utf-8">
<title>HTTP headers on request for navigation via the HTML History API</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';
const whenDone = (win) => {
return new Promise((resolve) => {
addEventListener('message', function handle(event) {
if (event.source === win) {
resolve();
removeEventListener('message', handle);
}
});
})
};
/**
* Prime the UA's session history such that the location of the request is
* immediately behind the current entry. Because the location may not be
* same-origin with the current browsing context, this must be done via a
* true navigation and not, e.g. the `history.pushState` API. The initial
* navigation will alter the WPT server's internal state; in order to avoid
* false positives, clear that state prior to initiating the second
* navigation via `history.back`.
*/
function induceBackRequest(url, test, clear) {
const win = window.open(url);
test.add_cleanup(() => win.close());
return whenDone(win)
.then(clear)
.then(() => win.history.back())
.then(() => whenDone(win));
}
/**
* Prime the UA's session history such that the location of the request is
* immediately ahead of the current entry. Because the location may not be
* same-origin with the current browsing context, this must be done via a
* true navigation and not, e.g. the `history.pushState` API. The initial
* navigation will alter the WPT server's internal state; in order to avoid
* false positives, clear that state prior to initiating the second
* navigation via `history.forward`.
*/
function induceForwardRequest(url, test, clear) {
const win = window.open(messageOpenerUrl);
test.add_cleanup(() => win.close());
return whenDone(win)
.then(() => win.location = url)
.then(() => whenDone(win))
.then(clear)
.then(() => win.history.go(-2))
.then(() => whenDone(win))
.then(() => win.history.forward())
.then(() => whenDone(win));
}
const messageOpenerUrl = new URL(
'/fetch/metadata/resources/message-opener.html', location
);
// For these tests to function, replacement must *not* be enabled during
// navigation. Assignment must therefore take place after the document has
// completely loaded [1]. This event is not directly observable, but it is
// scheduled as a task immediately following the global object's `load`
// event [2]. By queuing a task during the dispatch of the `load` event,
// navigation can be consistently triggered without replacement.
//
// [1] https://html.spec.whatwg.org/multipage/history.html#location-object-setter-navigate
// [2] https://html.spec.whatwg.org/multipage/parsing.html#the-end
const responseParams = {
mime: 'text/html',
body: `<script>
window.addEventListener('load', () => {
set`+`Timeout(() => location.assign('${messageOpenerUrl}'));
});
<`+`/script>`
};
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, ['httpsOrigin'], responseParams);
return induceBackRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['same-origin']);
});
}, 'sec-fetch-site - Same origin - history.back');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, ['httpsOrigin'], responseParams);
return induceForwardRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['same-origin']);
});
}, 'sec-fetch-site - Same origin - history.forward');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, ['httpsCrossSite'], responseParams);
return induceBackRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
});
}, 'sec-fetch-site - Cross-site - history.back');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, ['httpsCrossSite'], responseParams);
return induceForwardRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['cross-site']);
});
}, 'sec-fetch-site - Cross-site - history.forward');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, ['httpsSameSite'], responseParams);
return induceBackRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['same-site']);
});
}, 'sec-fetch-site - Same site - history.back');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, ['httpsSameSite'], responseParams);
return induceForwardRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-site');
assert_array_equals(headers['sec-fetch-site'], ['same-site']);
});
}, 'sec-fetch-site - Same site - history.forward');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, [], responseParams);
return induceBackRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-mode');
assert_array_equals(headers['sec-fetch-mode'], ['navigate']);
});
}, 'sec-fetch-mode - history.back');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, [], responseParams);
return induceForwardRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-mode');
assert_array_equals(headers['sec-fetch-mode'], ['navigate']);
});
}, 'sec-fetch-mode - history.forward');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, [], responseParams);
return induceBackRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-dest');
assert_array_equals(headers['sec-fetch-dest'], ['document']);
});
}, 'sec-fetch-dest - history.back');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, [], responseParams);
return induceForwardRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_own_property(headers, 'sec-fetch-dest');
assert_array_equals(headers['sec-fetch-dest'], ['document']);
});
}, 'sec-fetch-dest - history.forward');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, [], responseParams);
return induceBackRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-user');
});
}, 'sec-fetch-user - history.back');
promise_test((t) => {
const key = '{{uuid()}}';
const url = makeRequestURL(key, [], responseParams);
return induceForwardRequest(url, t, () => retrieve(key))
.then(() => retrieve(key))
.then((headers) => {
assert_not_own_property(headers, 'sec-fetch-user');
});
}, 'sec-fetch-user - history.forward');
</script>
</body>
</html>
|