Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/declaration-block-all-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<div></div>
<script>
let div = document.querySelector("div");
let cs = getComputedStyle(div);
for (let i = 0; i < cs.length; ++i)
div.style.setProperty(cs[i], cs.getPropertyValue(cs[i]));
div.style.cssText
</script>