Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-sticky-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
legend {
position: sticky;
left: -1em;
}
fieldset {
position: sticky;
left: -1em;
overflow-y: auto;
}
</style>
<fieldset>
<legend>Legend</legend>
</fieldset>