Files
ladybird/Tests/LibWeb/Layout/input/quirks/button-height-in-quirks-mode.html
Andreas Kling 70ca7f20c3 Tests/LibWeb: Add layout tests for quirks mode percentage heights
Add tests to verify:
- Buttons have reasonable height in quirks mode (not collapsed)
- Flex containers with percentage height use quirks walk-up to viewport
- Flex items with percentage height do NOT use quirks walk-up
2026-01-26 16:48:21 +01:00

10 lines
114 B
HTML

<!DOCTYPE quirks>
<html>
<style>
body { margin: 0; }
</style>
<body>
<button>Test Button</button>
</body>
</html>