summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/sticky/position-sticky-scroll-offset-clamp-crash.html
blob: ec6fb90cca48f57d993ff94c62b2df2244e61128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1498297">
<style>
* {
  margin-top: 100px;
  padding-left: 100px;
  position: sticky;
  bottom: 0px;
}
</style>
<select id="select1" multiple="multiple" style="writing-mode: vertical-rl">
  <optgroup id="optgroup">text</optgroup>
</select>
<select id="select2" >text</select>
<script>
document.body.offsetTop;
select2.add(optgroup);
document.body.offsetTop;
select1.length = 1;
</script>