Skip to content

Commit c1ed6e6

Browse files
authored
Merge pull request #154 from YuichiNukiyama/add_responseURL
Add XMLHttpRequest.responseURL
2 parents 96fba1f + e7ebda7 commit c1ed6e6

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13155,6 +13155,7 @@ interface XMLHttpRequest extends EventTarget, XMLHttpRequestEventTarget {
1315513155
readonly upload: XMLHttpRequestUpload;
1315613156
withCredentials: boolean;
1315713157
msCaching?: string;
13158+
readonly responseURL: string;
1315813159
abort(): void;
1315913160
getAllResponseHeaders(): string;
1316013161
getResponseHeader(header: string): string | null;

baselines/webworker.generated.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,7 @@ interface XMLHttpRequest extends EventTarget, XMLHttpRequestEventTarget {
740740
readonly upload: XMLHttpRequestUpload;
741741
withCredentials: boolean;
742742
msCaching?: string;
743+
readonly responseURL: string;
743744
abort(): void;
744745
getAllResponseHeaders(): string;
745746
getResponseHeader(header: string): string | null;

inputfiles/addedTypes.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,5 +1187,12 @@
11871187
"interface": "History",
11881188
"name": "scrollRestoration",
11891189
"type": "ScrollRestoration"
1190+
},
1191+
{
1192+
"kind": "property",
1193+
"interface": "XMLHttpRequest",
1194+
"readonly": true,
1195+
"name": "responseURL",
1196+
"type": "string"
11901197
}
11911198
]

0 commit comments

Comments
 (0)