summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html
blob: cd23c32a069f2bbeba65de018f3beda32a012374 (plain)
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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<link rel="stylesheet" href="resources/dialog.css">
<style>
body { background: red; }

.backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.backdrop,
.pseudodialog {
    background: green;
}
</style>
<body>
<div class="backdrop"></div>
<div class="pseudodialog">PASS if no red shows</div>
</body>
</html>