1
0
Fork 0
firefox/testing/web-platform/tests/navigation-timing/content-encoding.https.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

36 lines
1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="variant" , content="?pipe=gzip">
<title>contentEncoding in navigation timing</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/navigation-timing/#sec-navigation-timing-interface" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(function (t) {
var observer = new PerformanceObserver(
t.step_func(function (entryList) {
assert_equals(entryList.getEntries()[0].contentEncoding, "gzip",
"Expected contentEncoding to be gzip.");
observer.disconnect();
t.done();
})
);
observer.observe({ entryTypes: ["navigation"] });
}, "contentEncoding should be gzip.");
</script>
</head>
<body>
<h1>
Description</h1>
<p>
This test validates that when a html is compressed with gzip, navigation timing reports contentEncoding as gzip</p>
</body>
</html>