Commit 92e350db authored by arthursonzogni's avatar arthursonzogni Committed by Commit Bot

Rework WPT: /fetch/stale-while-revalidate/stale-css.html

Previous patch:
https://chromium-review.googlesource.com/c/chromium/src/+/2152797/1
improves ./stale-image.html

For consistency and because the test looks slightly nicer, this patch
applies the same kind of refactoring to ./stale-css.html

Bug: 1070117
Change-Id: I5a30c105aca4c2bde0962004f9a97e4fbde2ab4c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2152798
Commit-Queue: Arthur Sonzogni <arthursonzogni@chromium.org>
Reviewed-by: default avatarDave Tapuska <dtapuska@chromium.org>
Cr-Commit-Position: refs/heads/master@{#760552}
parent 4165f032
......@@ -8,38 +8,44 @@
<script>
var request_token = token();
async_test(t => {
window.onload = t.step_func(() => {
t.step_timeout(() => {
assert_equals(window.getComputedStyle(document.body).getPropertyValue('background-color'), "rgb(0, 128, 0)");
var link2 = document.createElement("link");
link2.onload = t.step_func(() => {
assert_equals(window.getComputedStyle(document.body).getPropertyValue('background-color'), "rgb(0, 128, 0)");
var checkResult = () => {
// We poll because we don't know when the revalidation will occur.
fetch("resources/stale-css.py?query&token=" + request_token).then(t.step_func((response) => {
var count = response.headers.get("Count");
if (count == '2') {
t.done();
} else {
t.step_timeout(checkResult, 25);
}
}));
};
t.step_timeout(checkResult, 25);
});
link2.rel = "stylesheet";
link2.type = "text/css";
link2.href = "resources/stale-css.py?token=" + request_token;
document.body.appendChild(link2);
}, 0);
});
let link_src = "./resources/stale-css.py?token=" + request_token;
let loadLink = async() => {
let link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = "resources/stale-css.py?token=" + request_token;
let loaded = new Promise(r => link.onload = r);
document.body.appendChild(link);
await loaded;
return window
.getComputedStyle(document.body)
.getPropertyValue('background-color');
};
promise_test(async t => {
await new Promise(r => window.onload = r);
let bgColor1 = await loadLink();
assert_equals(bgColor1, "rgb(0, 128, 0)", "(initial version loaded)");
let bgColor2 = await loadLink();
assert_equals(bgColor2, "rgb(0, 128, 0)", "(stale version loaded)");
// Query the server again and again. At some point it must have received the
// revalidation request. We poll, because we don't know when the revalidation
// will occur.
while(true) {
await new Promise(r => step_timeout(r, 25));
let response = await fetch(link_src + "&query");
let count = response.headers.get("Count");
if (count == '2')
break;
}
let bgColor3 = await loadLink();
assert_equals(bgColor3, "rgb(255, 0, 0)", "(revalidated version loaded)");
}, 'Cache returns stale resource');
var link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = "resources/stale-css.py?token=" + request_token;
document.body.appendChild(link);
</script>
</body>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment