-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathnot-default-ns-001.html
More file actions
27 lines (25 loc) · 865 Bytes
/
not-default-ns-001.html
File metadata and controls
27 lines (25 loc) · 865 Bytes
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
<!doctype html>
<title>Default namespace gets ignored inside non-type selectors for :is() / :not() / :where().</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://un5pc8f538pd6zm5.julianrbryant.com">
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/selectors-4/#negation">
<!--
Default namespace declarations do not affect the compound selector
representing the subject of any selector within a :not() pseudo-class, unless
that compound selector contains an explicit universal selector or type
selector.
-->
<link rel="match" href="/css/reference/blank.html">
<style>
@namespace url("https://umn0mtkzgkj46tygt32g.julianrbryant.com/2000/svg");
*|div {
width: 100px;
height: 100px;
background: red;
}
/* Type selector, so ns should apply and this should match */
*|*:not(div) {
display: none;
}
</style>
<div></div>