Skip to content

Commit 24004ef

Browse files
committed
CREDENTIAL: Remove some future-describing ISSUEs.
1 parent 8963874 commit 24004ef

File tree

2 files changed

+2
-34
lines changed

2 files changed

+2
-34
lines changed

specs/credentialmanagement/index.html

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -921,12 +921,6 @@ <h4 class="heading settled" data-level="3.1.3" id="interfaces-credential-types-p
921921

922922

923923

924-
<p class="issue" id="issue-317aa5d1"><a class="self-link" href="#issue-317aa5d1"></a> Probably not something for v1, but an
925-
interesting option would be to provide a hash function here that the user
926-
agent would apply to the password before sending it over the wire. <a href="https://github.com/w3c/webappsec/issues/288">&lt;https://github.com/w3c/webappsec/issues/288></a></p>
927-
928-
929-
930924

931925
<table class="argumentdef data definition-table">
932926

@@ -1291,11 +1285,6 @@ <h3 class="heading settled" data-level="3.2" id="interfaces-credential-manager">
12911285

12921286
</dl>
12931287

1294-
1295-
<p class="issue" id="issue-74489b21"><a class="self-link" href="#issue-74489b21"></a> We should support explicit sign-up via
1296-
<code class="idl"><a data-link-type="idl" href="#passwordcredential">PasswordCredential</a></code>s with generated passwords. Perhaps something similar to
1297-
iOS8’s <code>SecCreateSharedWebCredentialPassword</code>. <a href="https://github.com/w3c/webappsec/issues/250">&lt;https://github.com/w3c/webappsec/issues/250></a></p>
1298-
12991288

13001289
<h4 class="heading settled" data-level="3.2.1" id="interfaces-request-options"><span class="secno">3.2.1. </span><span class="content">
13011290
<code>get()</code> Parameters
@@ -1816,13 +1805,9 @@ <h4 class="heading settled" data-level="4.1.1" id="request-credential"><span cla
18161805

18171806

18181807
<li>
1819-
If <var>request</var>’s <code class="idl"><a data-link-type="idl" href="#dom-credentialrequestoptions-suppressui">suppressUI</a></code>
1808+
If <var>options</var>’s <code class="idl"><a data-link-type="idl" href="#dom-credentialrequestoptions-suppressui">suppressUI</a></code>
18201809
is <code>true</code>, resolve <var>promise</var> with
18211810
<var>undefined</var>, and terminate this algorithm.
1822-
1823-
1824-
<p class="issue" id="issue-f7326a75"><a class="self-link" href="#issue-f7326a75"></a> Do something here. Maybe this should be part of options?</p>
1825-
18261811

18271812

18281813

@@ -3585,19 +3570,12 @@ <h2 class="no-num heading settled" id="issues-index"><span class="content">Issue
35853570
<div class="issue"> Anne suggests that this might be better modeled
35863571
as an <code>ImageBitmap</code> or <code>blob:</code>. We also need to
35873572
figure out responsiveness. Perhaps <a data-link-type="biblio" href="#biblio-manifest">[MANIFEST]</a>'s format? <a href="https://github.com/w3c/webappsec/issues/247">&lt;https://github.com/w3c/webappsec/issues/247></a><a href="#issue-c874d302"></a></div>
3588-
<div class="issue"> Probably not something for v1, but an
3589-
interesting option would be to provide a hash function here that the user
3590-
agent would apply to the password before sending it over the wire. <a href="https://github.com/w3c/webappsec/issues/288">&lt;https://github.com/w3c/webappsec/issues/288></a><a href="#issue-317aa5d1"></a></div>
3591-
<div class="issue"> We should support explicit sign-up via
3592-
<code class="idl"><a data-link-type="idl" href="#passwordcredential">PasswordCredential</a></code>s with generated passwords. Perhaps something similar to
3593-
iOS8’s <code>SecCreateSharedWebCredentialPassword</code>. <a href="https://github.com/w3c/webappsec/issues/250">&lt;https://github.com/w3c/webappsec/issues/250></a><a href="#issue-74489b21"></a></div>
35943573
<div class="issue"> Monkey-patching! Hooray! Talk with Anne, et al.<a href="#issue-020f94b2"></a></div>
35953574
<div class="issue"> Currently, we’re not protecting requests with opaque bodies from
35963575
Service Worker interception. Should we?<a href="#issue-be0db764"></a></div>
35973576
<div class="issue"> This is terribly hand-wavey. The intent is
35983577
clear, but I need to do the work to walk through the list of DOMStrings
35993578
and convert them to interfaces and etc. Busywork for later. <a href="https://github.com/w3c/webappsec/issues/289">&lt;https://github.com/w3c/webappsec/issues/289></a><a href="#issue-6005a2a4"></a></div>
3600-
<div class="issue"> Do something here. Maybe this should be part of options?<a href="#issue-f7326a75"></a></div>
36013579
<div class="issue"> How do we deal with a future in which
36023580
<code class="idl"><a data-link-type="idl" href="#locallystoredcredential">LocallyStoredCredential</a></code> isn’t the only type? For example, how could an
36033581
author pull some "RemoteCredential" that required interaction with a

specs/credentialmanagement/index.src.html

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -595,10 +595,6 @@ <h4 id="interfaces-credential-types-passwordcredential"><code>PasswordCredential
595595
The user agent MUST execute the algorithm described in
596596
[[#generate-formdata]] when this method is executed.
597597

598-
ISSUE(w3c/webappsec#288): Probably not something for v1, but an
599-
interesting option would be to provide a hash function here that the user
600-
agent would apply to the password before sending it over the wire.
601-
602598
<pre class="argumentdef" for="PasswordCredential/toFormData(formDataOptions)">
603599
formDataOptions: A set of options governing the {{FormData}} object's construction.
604600
</pre>
@@ -780,10 +776,6 @@ <h3 id="interfaces-credential-manager">Credential Manager</h3>
780776
</dd>
781777
</dl>
782778

783-
ISSUE(w3c/webappsec#250): We should support explicit sign-up via
784-
{{PasswordCredential}}s with generated passwords. Perhaps something similar to
785-
iOS8's <code>SecCreateSharedWebCredentialPassword</code>.
786-
787779
<h4 id="interfaces-request-options">
788780
<code>get()</code> Parameters
789781
</h4>
@@ -1145,11 +1137,9 @@ <h4 id="request-credential">
11451137
algorithm.
11461138
</li>
11471139
<li>
1148-
If <var>request</var>'s {{CredentialRequestOptions/suppressUI}}
1140+
If <var>options</var>'s {{CredentialRequestOptions/suppressUI}}
11491141
is <code>true</code>, resolve <var>promise</var> with
11501142
<var>undefined</var>, and terminate this algorithm.
1151-
1152-
ISSUE: Do something here. Maybe this should be part of options?
11531143
</li>
11541144
<li>
11551145
If this algorithm would not be <a>allowed to show a popup</a>,

0 commit comments

Comments
 (0)