https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7c96c90ed8f1b469c37f06c37f248c42535060b8 authored by Hiroki Nakagawa on 26 March 2018, 09:29:42 UTC
Worker: Allow dynamic import() on DedicatedWorkerGlobalScope
Tip revision: 7c96c90
root-siblings.htm
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: Parsing check for * ~ :root error handling</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="https://drafts.csswg.org/selectors-3/#selector-syntax">
<link rel="match" href="../CSS2/reference/ref-this-text-should-be-green.xht">
<meta name="assert" content="* ~ :root should not match anything">
<style>
* ~ :root p {
  color: red;
}
p {
  color: green;
}
</style>
<p>This text should be green.</p>
back to top