wpt / css / css-values / inline-cache-base-uri-cssom.html

Status: FAIL | Duration: 44ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-values/inline-cache-base-uri-cssom.html

<!doctype html>
<title>Relative URI in potentially-cached stylesheet</title>
<link rel="help" href="https://drafts.csswg.org/css-values-4/#relative-urls">
<link rel="match" href="inline-cache-base-uri-cssom-ref.html">
<style>
  :root { background-color: red; }
</style>
<base href="/images/">
<style>
  :root { background-color: red; }
</style>
<script>
document.styleSheets[1].insertRule(`:root { background-image: url(green.png) }`);
</script>

/css/css-values/inline-cache-base-uri-cssom-ref.html

<!doctype html>
<style>
  :root { background-color: lime }
</style>