Fix IDL for CollectedClientData
Categories
(Core :: DOM: Web Authentication, task, P2)
Tracking
()
Tracking | Status | |
---|---|---|
firefox104 | --- | fixed |
People
(Reporter: dveditz, Assigned: rmf)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
In our Implementation CollectedClientData
has an optional DOMString member tokenBindingId
. This is the wrong name and type. Instead it should look like
dictionary CollectedClientData {
...
TokenBinding tokenBinding;
};
dictionary TokenBinding {
required DOMString status;
DOMString id;
};
enum TokenBindingStatus { "present", "supported" };
So far it hasn't caused a problem since we don't support it, and as an optional member no one has noticed that it would have been named wrong and have the wrong type.
We also have to get rid of three members that don't exist anymore:
required DOMString hashAlgorithm;
AuthenticationExtensionsClientInputs clientExtensions = {};
AuthenticationExtensionsAuthenticatorInputs authenticatorExtensions;
Reporter | ||
Updated•3 years ago
|
Assignee | ||
Updated•3 years ago
|
Assignee | ||
Comment 1•3 years ago
|
||
Comment 3•3 years ago
|
||
Backed out for causing failures at test_webauthn_loopback.html.
Backout link: https://hg.mozilla.org/integration/autoland/rev/70709554ec67746ac4adffb3155169b162aaa479
Failure log:
https://treeherder.mozilla.org/logviewer?job_id=375992988&repo=autoland&lineNumber=4030
https://treeherder.mozilla.org/logviewer?job_id=375992912&repo=autoland&lineNumber=3246
Comment 5•3 years ago
|
||
Backed out for causing mochitest failure in test_webauthn_loopback.html
- Backout link
- Push with failures
- Failure Log
- Failure line: TEST-UNEXPECTED-FAIL | dom/webauthn/tests/test_webauthn_loopback.html | Hash algorithm is correct - got undefined, expected "SHA-256"
Comment 6•3 years ago
•
|
||
Comment 8•3 years ago
|
||
Backed out for causing browser-chrome failures on browser_fido_appid_extension.js
Comment 9•3 years ago
|
||
There's a r+ patch which didn't land and no activity in this bug for 2 weeks.
:rmf, could you have a look please?
If you still have some work to do, you can add an action "Plan Changes" in Phabricator.
For more information, please visit auto_nag documentation.
Assignee | ||
Updated•3 years ago
|
Comment 10•3 years ago
|
||
Assignee | ||
Updated•3 years ago
|
Comment 11•3 years ago
|
||
bugherder |
Description
•