mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
A few are skipped for now: - A few ref tests fail - Crash tests are not supported by our runner and time out - top-level-is-scope.html crashes and needs further investigation
13 lines
298 B
HTML
13 lines
298 B
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<title>Nesting pseudo element selectors should not crash</title>
|
|
<link rel="help" href="https://crbug.com/1376227">
|
|
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/7912">
|
|
<style>
|
|
div::part(x) {
|
|
& {
|
|
color: red;
|
|
}
|
|
}
|
|
</style>
|