mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
14 lines
489 B
HTML
14 lines
489 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div class="container">
|
|
<div style="width: 2500px; height: 500px; background-color: green;"></div>
|
|
<button id="fullscreen-button" style="margin-top: 2px; border: 1px solid black; border-radius: 0; background-color: white;"> Request fullscreen!</button>
|
|
PASS if visually equal after exiting fullscreen (no scrolling has happened).
|
|
</div>
|
|
<style>
|
|
.container { overflow: hidden scroll; position: relative; scrollbar-width: none; }
|
|
</style>
|
|
</body>
|
|
</html>
|