Skip to content

Commit 064f74a

Browse files
authored
Merge pull request #372 from w3c/issue-361-usvstring
Replace DOMString with USVString for PresentationRequest URLs.
2 parents 8012c06 + c0f681c commit 064f74a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -1004,11 +1004,11 @@ <h3>
10041004
Interface <a><code>PresentationRequest</code></a>
10051005
</h3>
10061006
<pre class="idl">
1007-
[Constructor(DOMString url),
1008-
Constructor(sequence&lt;DOMString&gt; urls)]
1007+
[Constructor(USVString url),
1008+
Constructor(sequence&lt;USVString&gt; urls)]
10091009
interface PresentationRequest : EventTarget {
10101010
Promise&lt;PresentationConnection&gt; start();
1011-
Promise&lt;PresentationConnection&gt; reconnect(DOMString presentationId);
1011+
Promise&lt;PresentationConnection&gt; reconnect(USVString presentationId);
10121012
Promise&lt;PresentationAvailability&gt; getAvailability();
10131013

10141014
attribute EventHandler onconnectionavailable;
@@ -1818,8 +1818,8 @@ <h3>
18181818
enum BinaryType { "blob", "arraybuffer" };
18191819

18201820
interface PresentationConnection : EventTarget {
1821-
readonly attribute DOMString id;
1822-
readonly attribute DOMString url;
1821+
readonly attribute USVString id;
1822+
readonly attribute USVString url;
18231823
readonly attribute PresentationConnectionState state;
18241824
void close();
18251825
void terminate();

0 commit comments

Comments
 (0)