mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 09:27:00 +02:00
Cover image-set() candidate selection by resolution for background images. The tests cover both source-order-independent selection and calculated resolution descriptors that require layout context.
15 lines
191 B
HTML
15 lines
191 B
HTML
<!doctype html>
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.box {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: red;
|
|
}
|
|
</style>
|
|
<div class="box"></div>
|