diff options
author | bptato <nincsnevem662@gmail.com> | 2025-02-11 22:43:58 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2025-02-11 22:43:58 +0100 |
commit | 7dccd37dc8f431486fbab0048cd8cc13f9523c61 (patch) | |
tree | ce9a8addef119470e427d7607d62f01a9c84d9ef /test | |
parent | 6ad9176b251bdc869cb371b527ee65c9e0c8f62e (diff) | |
download | chawan-7dccd37dc8f431486fbab0048cd8cc13f9523c61.tar.gz |
render: fix a visibility bug
Diffstat (limited to 'test')
-rw-r--r-- | test/layout/visibility-switch-in-inline-box.expected | 1 | ||||
-rw-r--r-- | test/layout/visibility-switch-in-inline-box.html | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/layout/visibility-switch-in-inline-box.expected b/test/layout/visibility-switch-in-inline-box.expected new file mode 100644 index 00000000..9daeafb9 --- /dev/null +++ b/test/layout/visibility-switch-in-inline-box.expected @@ -0,0 +1 @@ +test diff --git a/test/layout/visibility-switch-in-inline-box.html b/test/layout/visibility-switch-in-inline-box.html new file mode 100644 index 00000000..a382ccae --- /dev/null +++ b/test/layout/visibility-switch-in-inline-box.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<div style="visibility: hidden"> +<span> +<div style="visibility: visible"> +test +</div> +</span> +</div> |