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

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

Issue 2832813002: Drop SiteBoundCredential in favor of CredentialUserData (Closed)
Patch Set: HTTPS Rename Created 3 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/credentialmanager/idl.html b/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
similarity index 86%
rename from third_party/WebKit/LayoutTests/http/tests/credentialmanager/idl.html
rename to third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
index 8d110b27a854b392db408d9eeb758651f8bf12e0..fa544258eabb536415c2d8a811c1574b4b2912e7 100644
--- a/third_party/WebKit/LayoutTests/http/tests/credentialmanager/idl.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https.html
@@ -1,8 +1,8 @@
<!DOCTYPE html>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
-<script src=/w3c/resources/WebIDLParser.js></script>
-<script src=/w3c/resources/idlharness.js></script>
+<script src=/resources/WebIDLParser.js></script>
+<script src=/resources/idlharness.js></script>
<script type="text/plain" id="untested">
dictionary CredentialData {
USVString id;
@@ -18,7 +18,10 @@
USVString iconURL;
};
- interface SiteBoundCredential : Credential {
+ [
+ NoInterfaceObject,
+ SecureContext
+ ] interface CredentialUserData {
readonly attribute USVString name;
readonly attribute USVString iconURL;
};
@@ -58,18 +61,20 @@
[Constructor(PasswordCredentialData data),
Constructor(HTMLFormElement form),
Exposed=Window]
- interface PasswordCredential : SiteBoundCredential {
+ interface PasswordCredential : Credential {
attribute USVString idName;
attribute USVString passwordName;
attribute CredentialBodyType? additionalData;
};
+ PasswordCredential implements CredentialUserData;
[Constructor(FederatedCredentialData data), Exposed=Window]
- interface FederatedCredential : SiteBoundCredential {
+ interface FederatedCredential : Credential {
readonly attribute USVString provider;
readonly attribute DOMString? protocol;
};
+ FederatedCredential implements CredentialUserData;
</script>
<script>
"use strict";
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/wpt/credential-management/idl.https-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698