Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!doctype html>
<title>
element has no parent element.
</title>
<style>
:root { font-size: 5px; }
[restyled] { color: green; font-size: 2rem; }
</style>
<div>
Should be green, and have a 10px font-size.
</div>
<script>
getComputedStyle(document.createElement('div')).color;
document.querySelector('div').setAttribute("restyled", "");
</script>