Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/styling/css-linked-parameters/link-parameters-per-container.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>link-parameters: containers referencing one SVG each get their own parameters</title>
<link rel="match" href="link-parameters-per-container-ref.html">
<style>
body { margin: 0; }
img { display: block; width: 100px; height: 100px; }
#a { link-parameters: param(--bg, #0a5c2e); }
#b { link-parameters: param(--bg, #1d4f8c); }
#c { link-parameters: param(--bg, #7a2f6b); }
</style>
<img id="a" src="resources/solid.svg">
<img id="b" src="resources/solid.svg">
<img id="c" src="resources/solid.svg">