Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(565)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html

Issue 2864493003: Deprecate CredentialRequestOptions.unmediated in favor mediation enum (Closed)
Patch Set: Test Comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html b/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
index 5ccc0c987a2c29a4c0e3e3f7967b44d202277e2b..f3b9059ca31c9f13abf96bb9682547dd5a8a0cde 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
@@ -36,11 +36,17 @@
DOMString protocol;
};
+ enum CredentialMediationRequirement {
+ "silent",
+ "optional",
+ "required"
+ };
+
dictionary CredentialRequestOptions {
boolean password = false;
FederatedCredentialRequestOptions federated;
- boolean unmediated = false;
+ CredentialMediationRequirement mediation = "optional";
};
dictionary FederatedCredentialRequestOptions {

Powered by Google App Engine
This is Rietveld 408576698