mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-14 23:26:39 +03:00
Keep valid empty pseudo-class matches authoritative and omit selector-less linked at-rules that cannot be tied to rendered nodes. AI assistance disclosure: Codex helped implement and test this fix under maintainer direction.
24 lines
861 B
HTML
24 lines
861 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Linked URL pattern detection</title>
|
|
<link rel="stylesheet" href="/fixtures/antipatterns/linked-url-patterns.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Linked stylesheet pattern</h1>
|
|
<div class="flag-linked-grid">Rendered decorative grid</div>
|
|
<div class="inactive-media-stripes">Inactive media stripes</div>
|
|
<div class="inactive-supports-stripes">Inactive supports stripes</div>
|
|
<div class="inactive-pseudo-stripes active">Inactive pseudo-class stripes</div>
|
|
<div class="container-query-host">
|
|
<div class="inactive-container-stripes">Inactive container-query stripes</div>
|
|
</div>
|
|
<div class="container-query-host container-query-host-active">
|
|
<div class="active-container-halo">Active container-query halo</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|