☠☠ backed out by dec0a179f851 ☠ ☠ | |
author | Ian Kilpatrick <ikilpatrick@chromium.org> |
Sat, 17 Jul 2021 09:55:27 +0000 | |
changeset 585881 | 836c9f7cb430f112cedbdbebb83750ec182a3f7a |
parent 585880 | a163466c7f99e6211f4c192a5cc97a02b6a70a60 |
child 585882 | b6444ae3b8239365999053781a62af0e9fad0538 |
push id | 38620 |
push user | csabou@mozilla.com |
push date | Sun, 18 Jul 2021 09:08:29 +0000 |
treeherder | mozilla-central@cc4e5ea0c986 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1720813, 29685, 1225548, 3033195, 902402 |
milestone | 92.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
testing/web-platform/tests/css/css-position/position-absolute-dynamic-auto-overflow.html | file | annotate | diff | comparison | revisions |
new file mode 100644 --- /dev/null +++ b/testing/web-platform/tests/css/css-position/position-absolute-dynamic-auto-overflow.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<link rel="match" href="../reference/ref-filled-green-100px-square.xht"> +<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1225548"> +<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> +<div style="position: fixed; background: red; max-height: 150px; overflow-y: auto;"> + <div id="target" style="width: 100px; background: green;"></div> +</div> +<script> +document.body.offsetTop; +const target = document.getElementById('target'); +target.style.height = '200px'; +document.body.offsetTop; +target.style.height = '100px'; +</script>