Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/inline-cache-base-uri-cssom.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Relative URI in potentially-cached stylesheet</title>
<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>