From ea184f72778e0c04e408a3746693fcfad8f20f3f Mon Sep 17 00:00:00 2001 From: Thorleif Jacobsen Date: Fri, 15 Mar 2024 09:58:57 +0100 Subject: [PATCH] #29931 - Modified the docs to ble clearer on what is visible or not visible. --- docs/src/actionability.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/actionability.md b/docs/src/actionability.md index 337e5fd344..076fb135f0 100644 --- a/docs/src/actionability.md +++ b/docs/src/actionability.md @@ -83,9 +83,9 @@ Learn more in the [assertions guide](./test-assertions.md). Element is considered visible when it has non-empty bounding box and does not have `visibility:hidden` computed style. Note that according to this definition: -* Elements of zero size **are not** considered visible. -* Elements with `display:none` **are not** considered visible. -* Elements with `opacity:0` **are** considered visible. +* **Not visible:** Elements of zero size. +* **Not visible:** Elements with `display:none`. +* **Visible:** Elements with `opacity:0`. ## Stable