Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-cascade/inline-style-revert-layer-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<head>
<title>Crash with inline style being changed to revert-rule</title>
</head>
<body>
<div id="d">Test passes if there is no crash.</div>
<script>
const d = document.getElementById('d');
d.style.color = 'green';
d.offsetTop;
d.style.color = 'revert-rule';
</script>
</body>