mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-08 07:54:11 -08:00
Merge pull request #62 from shannah/async
Added responseType and response properties to XMLHTTPRequest.
This commit is contained in:
commit
123aac84fa
|
@ -63,10 +63,19 @@ public interface XMLHttpRequest extends JSObject {
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
Document getResponseXML();
|
Document getResponseXML();
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
JSObject getResponse();
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
int getStatus();
|
int getStatus();
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
String getStatusText();
|
String getStatusText();
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
void setResponseType(String type);
|
||||||
|
|
||||||
|
@JSProperty
|
||||||
|
String getResponseType();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user