diff options
author | bptato <nincsnevem662@gmail.com> | 2024-12-18 02:19:47 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-12-18 02:23:45 +0100 |
commit | f4daa425483e902e2bd43b82427fe10a27eaca66 (patch) | |
tree | b55c8d567cd8f36771c0b01b84d2e03d8303c395 /test/layout/nested-hover-selector.html | |
parent | 13f395f20bd786d6c055b59ad19e9018d85bc139 (diff) | |
download | chawan-f4daa425483e902e2bd43b82427fe10a27eaca66.tar.gz |
match: fix nested hover selector
I didn't get it right :( true is the default return value, and true + continue should resolve to false.
Diffstat (limited to 'test/layout/nested-hover-selector.html')
-rw-r--r-- | test/layout/nested-hover-selector.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/layout/nested-hover-selector.html b/test/layout/nested-hover-selector.html new file mode 100644 index 00000000..4f61edeb --- /dev/null +++ b/test/layout/nested-hover-selector.html @@ -0,0 +1,8 @@ +<style> +ul ul { display: none } +ul li:hover ul { display: block } +</style> +<ul> +<li>li +<ul id=x> +test |