From 050d155d27f4a39b29ed8ec1b2a19ed775e7d91f Mon Sep 17 00:00:00 2001 From: MasterKia Date: Sat, 4 Feb 2023 21:38:53 +0330 Subject: [PATCH] Add mention of Syntax quirks --- Filter-performance.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Filter-performance.md b/Filter-performance.md index 586ec38..6c2c347 100644 --- a/Filter-performance.md +++ b/Filter-performance.md @@ -1,3 +1,5 @@ +See also: [Syntax quirks](./Syntax-quirks) + 1- Using `:upward()` instead of `:has()` can be more performant. `:upward()` is fast, it just lookup ancestors -- there is only one parent per element, `:has()` has to lookup descendants, there can be many children per elements. ```html