Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!doctype html>
<title>
incorrectly
</title>
<style>
.contents { color: red; display: contents; }
.contents.restyled { will-change: opacity; color: green; }
</style>
<div class="contents">
Should be green.
</div>
<script>
onload = () => {
document.body.offsetTop;
document.querySelector('.contents').classList.add('restyled');
}
</script>