mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
23 lines
454 B
HTML
23 lines
454 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/resize-stacking-order-ref.html" />
|
|
<style>
|
|
.resizable {
|
|
margin: 10px;
|
|
width: 50px;
|
|
height: 50px;
|
|
background: blue;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 80px;
|
|
height: 80px;
|
|
background: red;
|
|
z-index: 1;
|
|
}
|
|
</style>
|
|
<textarea class="resizable"></textarea>
|
|
<div class="overlay"></div>
|