-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathnot-default-ns-002.html
More file actions
25 lines (23 loc) · 869 Bytes
/
not-default-ns-002.html
File metadata and controls
25 lines (23 loc) · 869 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
<!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");
*|input {
display: none;
}
/* No type selector, so selector should _not_ match and keep the input hidden */
*|input:not(:disabled) {
display: initial;
}
</style>
<input disabled>