Skip to content

Commit 2928e78

Browse files
author
Maura Winstanley
committed
fix typos
1 parent 05627f8 commit 2928e78

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

specs/Autofill.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
# Background
2-
The WebView2 team has been asked for an API to allow end developers to set the autofill preferences. We are exposing two of the autofill preferences that will allow enabling and disabling general and password autosave. General autofill includes things like email addresses, shipping addresses, phone numbers, and names. Password autosave includes things like usernames and passwords for login. Password information is not included in the general autofill.
2+
The WebView2 team has been asked for an API to allow end developers to set the autofill preferences. We are exposing two of the autofill preferences that will allow enabling and disabling general autofill and password autosave. General autofill includes things like email addresses, shipping addresses, phone numbers, and names. Password autosave includes things like usernames and passwords for login. Password information is not included in general autofill.
33

44
In this document we describe the updated API. We'd appreciate your feedback.
55

66

77
# Description
88

9-
Autofill has three components
9+
The components of autofill/autosave are as follows:
1010
* Auto-populate - Populate the corresponding form fields automatically on page load.
1111
* Suggest - When the user clicks on the form field, drop down suggestions of previously saved forms will be displayed.
1212
* Populate - When clicking on one of the suggestions, the form data will populate the respective fields.
13+
* Save/Update prompt - After submitting password information, if IsPasswordAutosaveEnabled is true, a prompt will popup that allows the user to give permission to save or update their password information.
1314

1415
The general autofill setting and password autosave setting behave independently. Their behavior differs as well.
16+
1517
The default behavior for the general autofill setting is enabled.
1618
The default behavior for the password autosave setting is disabled.
1719

1820
| Behavior | IsPasswordAutosaveEnabled = false | IsGeneralAutofillEnabled = false | IsPasswordAutoSaveEnabled = true | IsGeneralAutofillEnabled = true |
1921
|-|-|-|-|-|
2022
| Populate on accepted suggestion | Yes | No | Yes | Yes |
21-
| Suggestions | Yes | No | Yes | Yes |
22-
| Auto-populate | Yes | No | Yes | Yes |
23+
| Suggest | Yes | No | Yes | Yes |
24+
| Auto-populate | Yes | No | Yes | No |
2325
| Save/Update prompt | No | N/A | Yes | N/A |
2426
| Input saved | No | No | Yes | Yes |
2527

0 commit comments

Comments
 (0)