Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /fetch/content-encoding/gzip/gzip-navigation.https.window.html - WPT Dashboard Interop Dashboard
// META: script=../../../service-workers/service-worker/resources/test-helpers.sub.js
promise_test(async t => {
const frame = await with_iframe('./resources/hello.html.gz');
assert_equals(frame.contentDocument.body.textContent, 'Hello world');
}, `Naigation to gzip encoded page`);