-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathtop-layer-crash.html
29 lines (29 loc) · 1.15 KB
/
top-layer-crash.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<iframe width="800" srcdoc='<!DOCTYPE html>
<style>
.wrapper {
container: example / inline-size;
position: fixed;
width: 100%;
}
.inner {
display: none;
}
@container (min-width: 600px) {
.inner {
display: block;
}
}
</style>
<div class="wrapper">
<div class="inner">
<dialog></dialog>
</div>
</div>
<script>
document.querySelector("dialog").showModal()
</script>'>
</iframe>
<script>
window.onload = () => document.querySelector("iframe").width = 400;
</script>