mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
20 lines
595 B
HTML
20 lines
595 B
HTML
<!doctype html>
|
|
<title>CSS Container Queries Test: ::backdrop depending on @container</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#container-queries">
|
|
<link rel="match" href="top-layer-dialog-backdrop-ref.html">
|
|
<style>
|
|
html { background: green; }
|
|
#container { container-type: inline-size; }
|
|
@container (max-width: 200px) {
|
|
::backdrop { display: none; }
|
|
#dialog { visibility: hidden; }
|
|
}
|
|
</style>
|
|
<div id="container">
|
|
<dialog id="dialog"></dialog>
|
|
</div>
|
|
<script>
|
|
dialog.showModal();
|
|
dialog.offsetTop;
|
|
container.style.width = "100px";
|
|
</script>
|