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

Issue 273993002: Allow XHR timeout attribute to be overridden after send(), per spec (Closed)

Created:
6 years, 7 months ago by caitp (gmail)
Modified:
6 years, 4 months ago
CC:
Daniel Bratell, Nate Chapin, sigbjorn
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Allow XHR timeout attribute to be overridden after send(), per spec http://www.w3.org/TR/XMLHttpRequest/#the-timeout-attribute hints that this attribute may be overridden after a request has been sent. The web-platform-tests suite has tests verifying that this is handled correctly, and other browsers such as Gecko-based browsers are successfully passing them, while Blink and WebKit are not. Therefore, there is an API-compat issue. BUG=371639, 387470, 387569 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=179730

Patch Set 1 #

Total comments: 9

Patch Set 2 : Remove Timer methods, fix code style #

Patch Set 3 : Fixed accuracy issues with removed Timer methods #

Total comments: 8

Patch Set 4 : Addressed tyoshino's review comments #

Total comments: 3

Patch Set 5 : Avoid potential race-condition between load and timeout #

Total comments: 14

Patch Set 6 : Minor changes based on Eric's comments #

Patch Set 7 : Reset m_requestStartedSeconds in a few extra places +fix bitrot #

Total comments: 1

Patch Set 8 : Rebase + fix test expectations #

Total comments: 7

Patch Set 9 : Fix ASAN failures #

Total comments: 2

Patch Set 10 : Rewrite comments regarding DocumentThreadableLoader end-of-life #

Patch Set 11 : Add CORS preflight-failure test case #

Total comments: 1

Patch Set 12 : Rename test failure text and rename test case (this is not a CORS error) #

Patch Set 13 : Remove further mentions of "preflight failure" from test case #

Total comments: 10

Patch Set 14 : Comments addressed #

Patch Set 15 : Fixed bitrot #

Patch Set 16 : sync'd again #

Patch Set 17 : Rebase again #

Unified diffs Side-by-side diffs Delta from patch set Stats (+231 lines, -8 lines) Patch
A LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override.html View 1 2 3 4 5 1 chunk +42 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-failure.html View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +52 lines, -0 lines 0 comments Download
A + LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-failure-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -3 lines 0 comments Download
A + LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-expected.txt View 0 chunks +-1 lines, --1 lines 0 comments Download
A + LayoutTests/http/tests/xmlhttprequest/workers/resources/xmlhttprequest-timeout-override.js View 1 2 3 2 chunks +7 lines, -6 lines 0 comments Download
A LayoutTests/http/tests/xmlhttprequest/workers/resources/xmlhttprequest-timeout-override-worker.js View 1 2 3 1 chunk +41 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/xmlhttprequest/workers/xmlhttprequest-timeout-override.html View 1 chunk +10 lines, -0 lines 0 comments Download
A LayoutTests/http/tests/xmlhttprequest/workers/xmlhttprequest-timeout-override-expected.txt View 1 chunk +4 lines, -0 lines 0 comments Download
M Source/core/loader/DocumentThreadableLoader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -0 lines 0 comments Download
M Source/core/loader/DocumentThreadableLoader.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 7 chunks +30 lines, -0 lines 0 comments Download
M Source/core/loader/ThreadableLoader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +7 lines, -0 lines 0 comments Download
M Source/core/loader/WorkerThreadableLoader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +4 lines, -0 lines 0 comments Download
M Source/core/loader/WorkerThreadableLoader.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +22 lines, -0 lines 0 comments Download
M Source/core/xml/XMLHttpRequest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +9 lines, -0 lines 0 comments Download

Messages

Total messages: 85 (0 generated)
caitp (gmail)
Reasons for this CL: The spec hints that browsers should be able to do this ...
6 years, 7 months ago (2014-05-09 04:54:04 UTC) #1
tyoshino (SeeGerritForStatus)
Thanks for the CL. On 2014/05/09 04:54:04, caitp wrote: > Reasons for this CL: > ...
6 years, 7 months ago (2014-05-09 08:04:27 UTC) #2
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/273993002/diff/1/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/1/Source/core/loader/DocumentThreadableLoader.cpp#newcode144 Source/core/loader/DocumentThreadableLoader.cpp:144: if (m_async) { if (!m_async) return; ... https://codereview.chromium.org/273993002/diff/1/Source/core/loader/DocumentThreadableLoader.cpp#newcode155 Source/core/loader/DocumentThreadableLoader.cpp:155: ...
6 years, 7 months ago (2014-05-09 08:04:35 UTC) #3
caitp (gmail)
https://codereview.chromium.org/273993002/diff/1/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/1/Source/core/loader/DocumentThreadableLoader.cpp#newcode155 Source/core/loader/DocumentThreadableLoader.cpp:155: m_timeoutTimer.startOneShotExact(resolvedTime, FROM_HERE); On 2014/05/09 08:04:36, tyoshino wrote: > any ...
6 years, 7 months ago (2014-05-09 08:39:49 UTC) #4
Daniel Bratell
https://codereview.chromium.org/273993002/diff/1/Source/platform/Timer.h File Source/platform/Timer.h (right): https://codereview.chromium.org/273993002/diff/1/Source/platform/Timer.h#newcode48 Source/platform/Timer.h:48: void startExact(double nextFireInterval, double repeatInterval, const TraceLocation& caller); As ...
6 years, 7 months ago (2014-05-09 13:54:45 UTC) #5
caitp (gmail)
On 2014/05/09 13:54:45, Daniel Bratell wrote: > https://codereview.chromium.org/273993002/diff/1/Source/platform/Timer.h > File Source/platform/Timer.h (right): > > https://codereview.chromium.org/273993002/diff/1/Source/platform/Timer.h#newcode48 ...
6 years, 7 months ago (2014-05-09 19:24:15 UTC) #6
caitp (gmail)
On 2014/05/09 19:24:15, caitp wrote: > As expected, removing the ability to set an exact ...
6 years, 7 months ago (2014-05-09 19:25:44 UTC) #7
caitp (gmail)
Nevermind the accuracy issues, that's fixed.
6 years, 7 months ago (2014-05-09 20:33:55 UTC) #8
tyoshino (SeeGerritForStatus)
please add abarth@ for OWNER review once you address my comments. https://codereview.chromium.org/273993002/diff/1/LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override.html File LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override.html (right): ...
6 years, 7 months ago (2014-05-12 09:21:17 UTC) #9
caitp (gmail)
On 2014/05/12 09:21:17, tyoshino wrote: > please add abarth@ for OWNER review once you address ...
6 years, 7 months ago (2014-05-13 16:55:38 UTC) #10
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/273993002/diff/80001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/80001/Source/core/loader/DocumentThreadableLoader.cpp#newcode158 Source/core/loader/DocumentThreadableLoader.cpp:158: m_timeoutTimer.startOneShot(resolvedTime, FROM_HERE); We should start the timer only when ...
6 years, 7 months ago (2014-05-15 09:15:43 UTC) #11
tyoshino (SeeGerritForStatus)
On 2014/05/09 08:04:27, tyoshino wrote: > > I can't think of good names for various ...
6 years, 7 months ago (2014-05-15 09:21:15 UTC) #12
caitp (gmail)
https://codereview.chromium.org/273993002/diff/80001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/80001/Source/core/loader/DocumentThreadableLoader.cpp#newcode158 Source/core/loader/DocumentThreadableLoader.cpp:158: m_timeoutTimer.startOneShot(resolvedTime, FROM_HERE); On 2014/05/15 09:15:43, tyoshino wrote: > We ...
6 years, 7 months ago (2014-05-15 11:51:02 UTC) #13
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/273993002/diff/80001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/80001/Source/core/loader/DocumentThreadableLoader.cpp#newcode158 Source/core/loader/DocumentThreadableLoader.cpp:158: m_timeoutTimer.startOneShot(resolvedTime, FROM_HERE); On 2014/05/15 11:51:03, caitp wrote: > On ...
6 years, 7 months ago (2014-05-15 12:33:42 UTC) #14
caitp (gmail)
Okay, I did try `clearResource()` in DocumentThreadableLoader::notifyFinish, but unfortunately it caused many XHR tests to ...
6 years, 7 months ago (2014-05-15 12:52:21 UTC) #15
caitp (gmail)
So, I'm pretty sure the windows failure is unrelated to this CL. There was nothing ...
6 years, 7 months ago (2014-05-19 20:28:28 UTC) #16
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/273993002/diff/100001/LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override.html File LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override.html (right): https://codereview.chromium.org/273993002/diff/100001/LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override.html#newcode8 LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override.html:8: <p> Verify that a timeout ProgressEvent is dispatched and ...
6 years, 7 months ago (2014-05-21 04:59:48 UTC) #17
tyoshino (SeeGerritForStatus)
abarth@ is days off. Adding eseidel@ for OWNER review.
6 years, 7 months ago (2014-05-21 07:03:02 UTC) #18
eseidel
lgtm https://codereview.chromium.org/273993002/diff/100001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/100001/Source/core/loader/DocumentThreadableLoader.cpp#newcode159 Source/core/loader/DocumentThreadableLoader.cpp:159: double resolvedTime = nextFire > elapsedTime ? nextFire ...
6 years, 7 months ago (2014-05-21 21:41:49 UTC) #19
caitp (gmail)
On 2014/05/21 21:41:49, eseidel wrote: > lgtm > > https://codereview.chromium.org/273993002/diff/100001/Source/core/loader/DocumentThreadableLoader.cpp > File Source/core/loader/DocumentThreadableLoader.cpp (right): > ...
6 years, 7 months ago (2014-05-21 21:47:48 UTC) #20
tyoshino (SeeGerritForStatus)
lgtm please reset m_requestStarted when loading fails. some of them might not be necessary. we ...
6 years, 6 months ago (2014-05-28 02:21:26 UTC) #21
caitp (gmail)
On 2014/05/28 02:21:26, tyoshino wrote: > lgtm > > please reset m_requestStarted when loading fails. ...
6 years, 6 months ago (2014-05-28 21:46:45 UTC) #22
eseidel
lgtm https://codereview.chromium.org/273993002/diff/140001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/140001/Source/core/loader/DocumentThreadableLoader.cpp#newcode185 Source/core/loader/DocumentThreadableLoader.cpp:185: m_requestStartedSeconds = 0.0; If we start to clear ...
6 years, 6 months ago (2014-05-28 22:06:36 UTC) #23
eseidel
6 years, 6 months ago (2014-05-28 22:06:46 UTC) #24
tyoshino (SeeGerritForStatus)
On 2014/05/28 22:06:36, eseidel wrote: > lgtm > > https://codereview.chromium.org/273993002/diff/140001/Source/core/loader/DocumentThreadableLoader.cpp > File Source/core/loader/DocumentThreadableLoader.cpp (right): > ...
6 years, 6 months ago (2014-05-29 02:16:27 UTC) #25
caitp (gmail)
On 2014/05/29 02:16:27, tyoshino wrote: > On 2014/05/28 22:06:36, eseidel wrote: > > lgtm > ...
6 years, 6 months ago (2014-06-03 17:04:06 UTC) #26
tyoshino (SeeGerritForStatus)
On 2014/06/03 17:04:06, caitp wrote: > On 2014/05/29 02:16:27, tyoshino wrote: > > On 2014/05/28 ...
6 years, 6 months ago (2014-06-04 05:14:47 UTC) #27
caitp (gmail)
hmm, it's not clear that this is ever going to get looked at by adam, ...
6 years, 6 months ago (2014-06-20 20:40:10 UTC) #28
eseidel
It looks like you have reviews? I'm confused. What are you waiting for? Which Adam?
6 years, 6 months ago (2014-06-20 20:42:56 UTC) #29
caitp (gmail)
On 2014/06/20 20:42:56, eseidel wrote: > It looks like you have reviews? I'm confused. What ...
6 years, 6 months ago (2014-06-20 20:45:35 UTC) #30
eseidel
The CQ bit was checked by eseidel@chromium.org
6 years, 6 months ago (2014-06-20 20:48:08 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/caitpotter88@gmail.com/273993002/160001
6 years, 6 months ago (2014-06-20 20:48:38 UTC) #32
commit-bot: I haz the power
Change committed as 176659
6 years, 6 months ago (2014-06-20 23:51:09 UTC) #33
abarth-chromium
On 2014/06/20 23:51:09, I haz the power (commit-bot) wrote: > Change committed as 176659 Revert ...
6 years, 6 months ago (2014-06-21 23:43:40 UTC) #34
abarth-chromium
https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp#newcode393 Source/core/loader/DocumentThreadableLoader.cpp:393: m_requestStartedSeconds = 0.0; There's no reason to believe |this| ...
6 years, 6 months ago (2014-06-22 00:22:48 UTC) #35
caitp (gmail)
https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp#newcode393 Source/core/loader/DocumentThreadableLoader.cpp:393: m_requestStartedSeconds = 0.0; On 2014/06/22 00:22:48, abarth wrote: > ...
6 years, 6 months ago (2014-06-22 00:56:14 UTC) #36
caitp (gmail)
https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp#newcode393 Source/core/loader/DocumentThreadableLoader.cpp:393: m_requestStartedSeconds = 0.0; Unless you mean that `didFinishLoading()` might ...
6 years, 6 months ago (2014-06-22 00:58:20 UTC) #37
abarth-chromium
On 2014/06/22 at 00:56:14, caitpotter88 wrote: > Given that this is a non-static method, there ...
6 years, 6 months ago (2014-06-22 01:06:03 UTC) #38
caitp (gmail)
Fix ASAN failures https://codereview.chromium.org/273993002/diff/180001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/180001/Source/core/loader/DocumentThreadableLoader.cpp#newcode477 Source/core/loader/DocumentThreadableLoader.cpp:477: m_requestStartedSeconds = 0.0; // Unnecessary for ...
6 years, 6 months ago (2014-06-22 09:49:09 UTC) #39
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp#newcode393 Source/core/loader/DocumentThreadableLoader.cpp:393: m_requestStartedSeconds = 0.0; On 2014/06/22 00:58:19, caitp wrote: > ...
6 years, 6 months ago (2014-06-23 08:00:02 UTC) #40
tyoshino (SeeGerritForStatus)
When relanding this, please include 387569 to BUG line
6 years, 6 months ago (2014-06-23 09:24:38 UTC) #41
caitp (gmail)
https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp#newcode393 Source/core/loader/DocumentThreadableLoader.cpp:393: m_requestStartedSeconds = 0.0; It would have been hard to ...
6 years, 6 months ago (2014-06-23 15:55:44 UTC) #42
tyoshino (SeeGerritForStatus)
lgtm https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/160001/Source/core/loader/DocumentThreadableLoader.cpp#newcode393 Source/core/loader/DocumentThreadableLoader.cpp:393: m_requestStartedSeconds = 0.0; On 2014/06/23 15:55:44, caitp wrote: ...
6 years, 6 months ago (2014-06-24 05:55:34 UTC) #43
caitp (gmail)
PTAL I think that yeah, the CORS preflight-failure test is wrong since it's just a ...
6 years, 5 months ago (2014-07-07 21:08:07 UTC) #44
tyoshino (SeeGerritForStatus)
lgtm https://codereview.chromium.org/273993002/diff/240001/LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-preflight-failure.html File LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-preflight-failure.html (right): https://codereview.chromium.org/273993002/diff/240001/LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-preflight-failure.html#newcode41 LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-preflight-failure.html:41: log("FAIL: Timeout overridden after error"); what we want ...
6 years, 5 months ago (2014-07-08 11:36:00 UTC) #45
caitp (gmail)
On 2014/07/08 11:36:00, tyoshino wrote: > lgtm > > https://codereview.chromium.org/273993002/diff/240001/LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-preflight-failure.html > File > LayoutTests/http/tests/xmlhttprequest/ontimeout-event-override-after-preflight-failure.html > ...
6 years, 5 months ago (2014-07-09 16:15:59 UTC) #46
tyoshino (SeeGerritForStatus)
the message change lgtm
6 years, 5 months ago (2014-07-10 04:20:23 UTC) #47
caitp (gmail)
On 2014/07/10 04:20:23, tyoshino wrote: > the message change lgtm Just checked, and the xmlhttprequest ...
6 years, 5 months ago (2014-07-11 04:21:09 UTC) #48
tyoshino (SeeGerritForStatus)
On 2014/07/11 04:21:09, caitp wrote: > On 2014/07/10 04:20:23, tyoshino wrote: > > the message ...
6 years, 5 months ago (2014-07-24 07:41:50 UTC) #49
caitp (gmail)
I'm not sure how to ping specific users on rietveld, other than sending mail to ...
6 years, 5 months ago (2014-07-24 15:00:54 UTC) #50
eseidel
Adam is out on vacation until Tues. I'd try to find him in #blink when ...
6 years, 5 months ago (2014-07-24 16:04:17 UTC) #51
tyoshino (SeeGerritForStatus)
On 2014/07/24 15:00:54, caitp wrote: > I'm not sure how to ping specific users on ...
6 years, 5 months ago (2014-07-25 06:16:08 UTC) #52
abarth-chromium
https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp#newcode394 Source/core/loader/DocumentThreadableLoader.cpp:394: } else Please add { } https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp#newcode481 Source/core/loader/DocumentThreadableLoader.cpp:481: m_requestStartedSeconds ...
6 years, 4 months ago (2014-07-31 16:01:35 UTC) #53
abarth-chromium
https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp#newcode157 Source/core/loader/DocumentThreadableLoader.cpp:157: return; How can this be called during a synchronous ...
6 years, 4 months ago (2014-07-31 16:08:13 UTC) #54
caitp (gmail)
https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp#newcode170 Source/core/loader/DocumentThreadableLoader.cpp:170: m_timeoutTimer.startOneShot(resolvedTime, FROM_HERE); I am not exactly certain how startOneShot() ...
6 years, 4 months ago (2014-07-31 16:43:29 UTC) #55
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp File Source/core/loader/DocumentThreadableLoader.cpp (right): https://codereview.chromium.org/273993002/diff/280001/Source/core/loader/DocumentThreadableLoader.cpp#newcode170 Source/core/loader/DocumentThreadableLoader.cpp:170: m_timeoutTimer.startOneShot(resolvedTime, FROM_HERE); On 2014/07/31 16:43:29, caitp wrote: > I ...
6 years, 4 months ago (2014-08-01 07:24:18 UTC) #56
tyoshino (SeeGerritForStatus)
patchset 15 lgtm
6 years, 4 months ago (2014-08-01 07:26:13 UTC) #57
abarth-chromium
LGTM
6 years, 4 months ago (2014-08-01 22:35:19 UTC) #58
caitp (gmail)
The CQ bit was checked by caitpotter88@gmail.com
6 years, 4 months ago (2014-08-01 23:32:35 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/caitpotter88@gmail.com/273993002/320001
6 years, 4 months ago (2014-08-01 23:33:21 UTC) #60
caitp (gmail)
On 2014/08/01 23:32:35, caitp wrote: > The CQ bit was checked by mailto:caitpotter88@gmail.com I hope ...
6 years, 4 months ago (2014-08-01 23:33:34 UTC) #61
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 4 months ago (2014-08-02 00:51:19 UTC) #62
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-02 01:34:50 UTC) #63
commit-bot: I haz the power
Try jobs failed on following builders: win_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/win_blink_rel/builds/20245)
6 years, 4 months ago (2014-08-02 01:34:52 UTC) #64
caitp (gmail)
On 2014/08/02 01:34:52, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
6 years, 4 months ago (2014-08-02 13:48:00 UTC) #65
abarth-chromium
The CQ bit was checked by abarth@chromium.org
6 years, 4 months ago (2014-08-02 20:56:27 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/caitpotter88@gmail.com/273993002/320001
6 years, 4 months ago (2014-08-02 20:57:08 UTC) #67
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 4 months ago (2014-08-02 21:29:08 UTC) #68
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-02 22:27:07 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: win_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/win_blink_rel/builds/20400)
6 years, 4 months ago (2014-08-02 22:27:08 UTC) #70
tyoshino (SeeGerritForStatus)
The CQ bit was checked by tyoshino@chromium.org
6 years, 4 months ago (2014-08-06 04:06:45 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/caitpotter88@gmail.com/273993002/320001
6 years, 4 months ago (2014-08-06 04:07:53 UTC) #72
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 4 months ago (2014-08-06 04:20:43 UTC) #73
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-06 04:32:55 UTC) #74
commit-bot: I haz the power
Try jobs failed on following builders: win_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/win_blink_rel/builds/21229)
6 years, 4 months ago (2014-08-06 04:32:56 UTC) #75
tyoshino (SeeGerritForStatus)
The CQ bit was checked by tyoshino@chromium.org
6 years, 4 months ago (2014-08-07 08:51:17 UTC) #76
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/caitpotter88@gmail.com/273993002/340001
6 years, 4 months ago (2014-08-07 08:51:38 UTC) #77
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-07 08:52:03 UTC) #78
commit-bot: I haz the power
Failed to apply patch for Source/core/loader/DocumentThreadableLoader.cpp: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 4 months ago (2014-08-07 08:52:05 UTC) #79
tyoshino (SeeGerritForStatus)
Hi caitp, I re-checked the CQ bit but patching failed. Please rebase. Thanks!
6 years, 4 months ago (2014-08-07 09:18:54 UTC) #80
caitp (gmail)
On 2014/08/07 09:18:54, tyoshino wrote: > Hi caitp, > > I re-checked the CQ bit ...
6 years, 4 months ago (2014-08-07 14:50:33 UTC) #81
caitp (gmail)
The CQ bit was checked by caitpotter88@gmail.com
6 years, 4 months ago (2014-08-07 14:56:27 UTC) #82
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/caitpotter88@gmail.com/273993002/360001
6 years, 4 months ago (2014-08-07 14:56:37 UTC) #83
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_blink_dbg on tryserver.blink ...
6 years, 4 months ago (2014-08-07 16:22:46 UTC) #84
commit-bot: I haz the power
6 years, 4 months ago (2014-08-07 17:36:11 UTC) #85
Message was sent while issue was closed.
Change committed as 179730

Powered by Google App Engine
This is Rietveld 408576698