mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
20 lines
457 B
HTML
20 lines
457 B
HTML
<!doctype html><link rel="match" href="../expected/abspos-z-index-painting-order-ref.html" /><style>
|
|
* {
|
|
font-size: 60px;
|
|
}
|
|
body {
|
|
/* NOTE: This is flex in order to force div.text to create a stacking context. */
|
|
display: flex;
|
|
}
|
|
.abspos {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: gray;
|
|
z-index: 0;
|
|
}
|
|
.text {
|
|
z-index: 1;
|
|
}
|
|
</style><body><div class="abspos"></div><div class="text">hello friends</div>
|