Clean up whitespace, long lines for WebIDLs

This commit is contained in:
Corey Farwell 2015-07-26 00:26:01 +07:00
parent d1acefa452
commit 9415c92a5c
15 changed files with 63 additions and 31 deletions

View file

@ -44,7 +44,9 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
[Throws]
void open(ByteString method, /* [EnsureUTF16] */ DOMString url);
[Throws]
void open(ByteString method, /* [EnsureUTF16] */ DOMString url, boolean async, optional /* [EnsureUTF16] */ DOMString? username = null, optional /* [EnsureUTF16] */ DOMString? password = null);
void open(ByteString method, /* [EnsureUTF16] */ DOMString url, boolean async,
optional /* [EnsureUTF16] */ DOMString? username = null,
optional /* [EnsureUTF16] */ DOMString? password = null);
[Throws]
void setRequestHeader(ByteString name, ByteString value);