summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/backdrop-descendant-selector.html
blob: 73706548eafa1a49df59d19932ab728353b0860b (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<link rel="match" href="backdrop-descendant-selector-ref.html">
<link rel="help" href="https://fullscreen.spec.whatwg.org/#new-stacking-layer">
<style>
dialog {
    visibility: hidden;
}

::backdrop {
    visibility: visible;
    position: absolute;
    height: 100px;
    width: 100px;
    background: red;
}

/* This shouldn't be matched, dialog is not the parent of ::backdrop.
 * It is given high specificity so we actually test something.
 */
#dialog-parent > #dialog > ::backdrop,
#dialog-parent > #dialog ::backdrop {
    background: red;
}

#dialog-parent > ::backdrop {
    top: 100px;
    left: 100px;
    background: green;
}

#backdrop-ancestor ::backdrop {
    top: 100px;
    left: 300px;
    background: green;
}
</style>
</head>
<body>
Test ::backdrop used in descendant selectors. The test passes if there are two green boxes and no red.

<div id="dialog-parent">
    <dialog id="dialog"></dialog>
</div>
<div id="backdrop-ancestor">
    <p><span><dialog></dialog></span></p>
</div>
<script>
var dialogs = document.querySelectorAll('dialog');
for (var i = 0; i < dialogs.length; ++i)
    dialogs[i].showModal();
</script>
</body>
</html>