summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-sticky-crash.html
blob: 71debf7e44266ca01ee22156d882359d0ba1532b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<link rel="help" href="http://crbug.com/1197946">
<style>
legend {
  position: sticky;
  left: -1em;
}
fieldset {
  position: sticky;
  left: -1em;
  overflow-y: auto;
}
</style>
<fieldset>
<legend>Legend</legend>
</fieldset>