https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2a4f272981f07911c52195e7358c84dea434d264 authored by Chris Nardi on 07 April 2018, 01:36:26 UTC
Update expected cssText for custom property serialization
Tip revision: 2a4f272
subresource.any.js
promise_test(() => {
  return fetch("resources/refresh.py").then(response => {
    assert_equals(response.headers.get("refresh"), "0;./refreshed.txt?\u0080\u00FF"); // Make sure bytes got mapped to code points of the same value
    assert_equals(response.url, (new URL("resources/refresh.py", self.location)).href);
  });
}, "Refresh does not affect subresources.");
back to top