blob: 252a91bcd2a15ebc5ee91dc2566bac4968e3a5e7 [file] [log] [blame]
/* SHORT SELECTOR, EMPTY CONTENT */
a{}
/* COMPLEX SELECTOR */
div div>div#id.foo.bar:hover .something>.child~.sibling+.sibling:after{color:red;}
div div > div#id.foo.bar:hover .something > .child ~ .sibling + .sibling:after { color : red ; }
div div>div#id.foo.bar:hover .something>.child~.sibling+.sibling::after{color:red;}
div div > div#id.foo.bar:hover .something > .child ~ .sibling + .sibling::after { color : red ; }
div div>div#id.foo.bar:hover .something>.child~.sibling+:matches(.sibling):after{color:red;}
div div > div#id.foo.bar:hover .something > .child ~ .sibling + :matches(.sibling):after { color : red ; }
div div>div#id.foo.bar:hover .something>.child~.sibling+:matches(.sibling)::after{color:red;}
div div > div#id.foo.bar:hover .something > .child ~ .sibling + :matches(.sibling)::after { color : red ; }