CSS Test (Selectors): Mouse focus does not match :focus-visible
+CSS Test (Selectors): Mouse focus does not show a focus ring by default
@@ -24,7 +24,7 @@
}
-
This test checks that using the mouse to focus an element does not trigger :focus-visible matching, and the element doesn't show any focus ring.
+
This test checks that by default, using the mouse to focus a generic element does not show a focus ring (because it does not trigger :focus-visible matching).
If the user-agent does not claim to support the :focus-visible pseudo-class then SKIP this test.
Click on the element below that says "Click me."
@@ -42,5 +42,5 @@
t.done();
}));
test_driver.click(target).then(() => done());
- }, "Mouse focus should not match :focus-visible and should not show a focus ring");
+ }, "Mouse focus does not show a focus ring by default");
diff --git a/css/selectors/focus-visible-017.html b/css/selectors/focus-visible-017.html
new file mode 100644
index 000000000000000..b8642860ec60c89
--- /dev/null
+++ b/css/selectors/focus-visible-017.html
@@ -0,0 +1,36 @@
+
+
+CSS Test (Selectors): By default a programatic focus that matches :focus-visible shows an auto focus ring
+
+
+
+
+
+
+
+
+