Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // https://w3c.github.io/webappsec-credential-management/#siteboundcredential | |
| 6 | |
| 7 [ | |
| 8 RuntimeEnabled=CredentialManager, | |
| 9 Exposed=Window | |
| 10 ] interface SiteBoundCredential : Credential { | |
| 11 readonly attribute DOMString name; | |
|
philipj_slow
2016/04/19 09:20:37
Spec says USVString for both of these. I shouldn't
Mike West
2016/04/25 10:20:13
Hrm. No. `name` should be a DOMString. iconURL is
philipj_slow
2016/04/25 11:54:21
OK, so USVString "for things that get utf-8 encode
| |
| 12 readonly attribute DOMString iconURL; | |
| 13 }; | |
| OLD | NEW |