@@ -5662,8 +5662,11 @@ <h3>Algorithm</h3>
5662
5662
as long as they generally use the same methods, arguments, and options
5663
5663
and return the same results.</ span > </ p >
5664
5664
5665
- < p class ="note "> Interfaces are marked `[Exposed=(Window,Worker)]`,
5666
- but the API is also intended for use outside of a browser context.</ p >
5665
+ < p class ="note "> Interfaces are not marked with the `[Exposed]`
5666
+ < a data-cite ="WEBIDL#dfn-extended-attribute "> extended attribute</ a > ,
5667
+ as this is currently quite browser specific.
5668
+ The use of WebIDL in JSON-LD, while appropriate for use within browsers,
5669
+ is not limited to such use.</ p >
5667
5670
5668
5671
< section > < h3 > The < dfn > JsonLdProcessor</ dfn > Interface</ h3 >
5669
5672
@@ -5685,7 +5688,6 @@ <h3>Algorithm</h3>
5685
5688
in this document mention this directly.</ p >
5686
5689
5687
5690
< pre class ="idl ">
5688
- [Exposed=(Window,Worker)]
5689
5691
interface JsonLdProcessor {
5690
5692
constructor();
5691
5693
static Promise<JsonLdRecord> compact(
@@ -6084,7 +6086,6 @@ <h3>Algorithm</h3>
6084
6086
which has a < a > default graph</ a > accessible via the < a data-link-for ="RdfDataset "> defaultGraph</ a > attribute.</ p >
6085
6087
6086
6088
< pre class ="idl changed ">
6087
- [Exposed=(Window,Worker)]
6088
6089
interface RdfDataset {
6089
6090
constructor();
6090
6091
readonly attribute RdfGraph defaultGraph;
@@ -6128,7 +6129,6 @@ <h3>Algorithm</h3>
6128
6129
which is composed of zero or more < a > RdfTriple</ a > instances.</ p >
6129
6130
6130
6131
< pre class ="idl changed ">
6131
- [Exposed=(Window,Worker)]
6132
6132
interface RdfGraph {
6133
6133
constructor();
6134
6134
void add(RdfTriple triple);
@@ -6157,7 +6157,6 @@ <h3>Algorithm</h3>
6157
6157
< p > The < dfn > RdfTriple</ dfn > interface describes an < a > triple</ a > .</ p >
6158
6158
6159
6159
< pre class ="idl changed ">
6160
- [Exposed=(Window,Worker)]
6161
6160
interface RdfTriple {
6162
6161
constructor();
6163
6162
readonly attribute USVString subject;
@@ -6185,7 +6184,6 @@ <h3>Algorithm</h3>
6185
6184
< p > The < dfn > RdfLiteral</ dfn > interface describes an < a > RDF Literal</ a > .</ p >
6186
6185
6187
6186
< pre class ="idl changed ">
6188
- [Exposed=(Window,Worker)]
6189
6187
interface RdfLiteral {
6190
6188
constructor();
6191
6189
readonly attribute USVString value;
@@ -6439,7 +6437,6 @@ <h3>RemoteDocument</h3>
6439
6437
to return information about a remote document or context.</ p >
6440
6438
6441
6439
< pre class ="idl ">
6442
- [Exposed=(Window,Worker)]
6443
6440
interface RemoteDocument {
6444
6441
constructor();
6445
6442
readonly attribute USVString contentType;
@@ -7081,6 +7078,9 @@ <h2>Changes since Candidate Release of 05 March 2020</h2>
7081
7078
to update < var > cl reference</ var > and not < var > node</ var > .</ li >
7082
7079
< li > Added < a href ="#api-keywords " class ="sectionRef "> </ a > to describe
7083
7080
the `preserve` keyword, which is only used for framing.</ li >
7081
+ < li > Removed the `[Exposed=(Window,Worker)]`
7082
+ < a data-cite ="WEBIDL#dfn-extended-attribute "> extended attribute</ a >
7083
+ from < a href ="#the-application-programming-interface " class ="sectionRef "> </ a > to address review suggestions.</ li >
7084
7084
</ ul >
7085
7085
</ section >
7086
7086
< section id ="ack "
0 commit comments