Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/style-attr-clone.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Style mutations on cloned element don't affect the original element</title>
<link rel="match" href="style-attr-clone-ref.html">
<div id=wrapper style="display: none">
<div id="target" style="color: red">What color am I</div>
</div>
<script>
target.style.color = "green";
let clone = target.cloneNode(true);
clone.style.color = "blue";
wrapper.appendChild(clone);
wrapper.style.display = "";
</script>