Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: Source/core/xml/XMLHttpRequest.cpp

Issue 273993002: Allow XHR timeout attribute to be overridden after send(), per spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove further mentions of "preflight failure" from test case Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/xml/XMLHttpRequest.cpp
diff --git a/Source/core/xml/XMLHttpRequest.cpp b/Source/core/xml/XMLHttpRequest.cpp
index 2e7849e37cb1486404e8f2e1ff37d65b8530bafe..379b51c3ae32eb7bda4b8744d1c4d6f6ae9df8ae 100644
--- a/Source/core/xml/XMLHttpRequest.cpp
+++ b/Source/core/xml/XMLHttpRequest.cpp
@@ -347,7 +347,16 @@ void XMLHttpRequest::setTimeout(unsigned long timeout, ExceptionState& exception
exceptionState.throwDOMException(InvalidAccessError, "Timeouts cannot be set for synchronous requests made from a document.");
return;
}
+
m_timeoutMilliseconds = timeout;
+
+ // From http://www.w3.org/TR/XMLHttpRequest/#the-timeout-attribute:
+ // Note: This implies that the timeout attribute can be set while fetching is in progress. If
+ // that occurs it will still be measured relative to the start of fetching.
+ //
+ // The timeout may be overridden after send.
+ if (m_loader)
+ m_loader->overrideTimeout(timeout);
}
void XMLHttpRequest::setResponseType(const String& responseType, ExceptionState& exceptionState)

Powered by Google App Engine
This is Rietveld 408576698