Index: Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp b/Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp |
index a5196e70438647cb737d6289abd7b480f57819b8..43022213a4ba580285c8db4904c7e4dd41ac1b60 100644 |
--- a/Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp |
+++ b/Source/bindings/v8/custom/V8XMLHttpRequestCustom.cpp |
@@ -154,7 +154,7 @@ void V8XMLHttpRequest::openMethodCustom(const v8::FunctionCallbackInfo<v8::Value |
if (args.Length() >= 4 && !args[3]->IsUndefined()) { |
String user = toWebCoreStringWithNullCheck(args[3]); |
- |
+ |
if (args.Length() >= 5 && !args[4]->IsUndefined()) { |
String passwd = toWebCoreStringWithNullCheck(args[4]); |
xmlHttpRequest->open(method, url, async, user, passwd, es); |