From f34966e81264bfbeb0d31cf512d6e896a7b31b05 Mon Sep 17 00:00:00 2001 From: Francis Storr Date: Wed, 9 Oct 2024 09:13:26 -0700 Subject: [PATCH] Update C43 to add test case for Focus Not Obscured Enhanced (#3534) Closes #3532 --------- Co-authored-by: Patrick H. Lauke --- techniques/css/C43.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/techniques/css/C43.html b/techniques/css/C43.html index 0295e33221..ee3d14329f 100644 --- a/techniques/css/C43.html +++ b/techniques/css/C43.html @@ -167,12 +167,14 @@

Procedure

For each user interface component that can receive keyboard focus:

  1. Check that the user interface component is not entirely hidden when it receives keyboard focus.
  2. +
  3. Check that no part of the user interface component is hidden when it receives keyboard focus.

Expected Results

  • Check #1 is true.
  • +
  • For Focus Not Obscured (Enhanced) (Level AAA), #2 is also true.