From ef254eba2c7f1ba1667f3e59c9719702e837c71f Mon Sep 17 00:00:00 2001 From: Jeremiah Lee <106775223+jeremiahlee@users.noreply.github.com> Date: Tue, 3 Mar 2026 13:58:28 +0100 Subject: [PATCH] docs: minor language improvements to why-my-autofill-doesnt-work.mdx - HTML is a living standard managed by WHATWG, not W3C - minor grammar corrections - simplified sentences --- docs/user/faq/why-my-autofill-doesnt-work.mdx | 25 ++++++++----------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/docs/user/faq/why-my-autofill-doesnt-work.mdx b/docs/user/faq/why-my-autofill-doesnt-work.mdx index 9a30d7e7..9566be21 100644 --- a/docs/user/faq/why-my-autofill-doesnt-work.mdx +++ b/docs/user/faq/why-my-autofill-doesnt-work.mdx @@ -1,16 +1,14 @@ --- -title: Why can't I use autofill ? +title: Why can't I use autofill? description: Why Passbolt autofill doesn't work on some website. hide_table_of_contents: false --- import Figure from '@site/src/components/Figure/Figure'; -Autofill is a useful feature that helps you save time by giving quick access to the appropriate password when you're on a website, and by automatically filling in the login information for you. -However, for this to work, Passbolt needs to detect a login form on the webpage you're visiting. It does this by analyzing the HTML code and looking for specific selectors that indicate “this is the username field” and “this is the password field”. -The selectors passbolt search for are defined bye the [W3C web-standards.](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill) +Autofill is a useful feature that saves you time by giving quick access to the appropriate password when you're on a website and automatically filling in the login information for you. Passbolt does this by analyzing the webpages you visit for [specific HTML attributes](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill) that indicate “this is the username field” and “this is the password field”. -## How to verify ? +## How to verify? You can check which selectors are used on a webpage by right-clicking on the username or password input field and selecting **Inspect**. @@ -21,7 +19,7 @@ You can check which selectors are used on a webpage by right-clicking on the use size={{ width: '400px', height: '550px' }} /> -You will then see the HTML source code of the webpage. What matters here is the section related to the input field. In this example, Passbolt is able to detect the input field because the `name` and `id` attributes follow W3C web standards for form autofill. +You will then see the HTML source code of the webpage. What matters here is the section related to the input field. In this example, Passbolt is able to detect the input field because the `name` and `id` attributes follow the HTML standard for form autofill.
-## What about Shadow DOM or iFrames? +## What about shadow DOM and inline frames? -Some websites embed login forms inside [Shadow DOM](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM) or `