diff options
Diffstat (limited to 'layout/reftests/bugs/1375674.html')
-rw-r--r-- | layout/reftests/bugs/1375674.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1375674.html b/layout/reftests/bugs/1375674.html new file mode 100644 index 0000000000..2d5d7fa77b --- /dev/null +++ b/layout/reftests/bugs/1375674.html @@ -0,0 +1,18 @@ +<!doctype html> +<title> + Reftest for bug 1375674: display: contents changes were assumed handled + 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> |