Description
WebKit Commit Bot
2011-03-11 22:08:11 PST
Created attachment 85569 [details]
Failure diff from cr-jail-8
The history of runs on the chromium port shows flakiness on all platforms since at least r79985. http://test-results.appspot.com/dashboards/flakiness_dashboard.html#showExpectations=true&tests=transitions%2Finterrupted-accelerated-transition.html%20&group=%40ToT%20-%20chromium.org The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (Text diff mismatch) while processing attachment 85578 [details] on bug 52139. Bot: eseidel-cq-sf Port: Mac Platform: Mac OS X 10.6.4 Created attachment 85654 [details]
Failure diff from eseidel-cq-sf
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (Text diff mismatch) while processing attachment 85478 [details] on bug 56196. Bot: cr-jail-3 Port: Mac Platform: Mac OS X 10.6.6 Created attachment 85793 [details]
Failure diff from cr-jail-3
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (Text diff mismatch) while processing attachment 85838 [details] on bug 56390. Bot: cr-jail-7 Port: Mac Platform: Mac OS X 10.6.6 Created attachment 85848 [details]
Failure diff from cr-jail-7
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (Text diff mismatch) while processing attachment 85762 [details] on bug 55505. Bot: cr-jail-3 Port: Mac Platform: Mac OS X 10.6.6 Created attachment 85863 [details]
Failure diff from cr-jail-3
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (Text diff mismatch) while processing attachment 85762 [details] on bug 55505. Bot: eseidel-cq-sf Port: Mac Platform: Mac OS X 10.6.4 Created attachment 85864 [details]
Failure diff from eseidel-cq-sf
I'm in the process of updating this code. In the meantime I'll skip the test. The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (Text diff mismatch) while processing attachment 85845 [details] on bug 56403. Bot: eseidel-cq-sf Port: Mac Platform: Mac OS X 10.6.4 Created attachment 85920 [details]
Failure diff from eseidel-cq-sf
Skipping temporarily Committing to http://svn.webkit.org/repository/webkit/trunk ... M LayoutTests/ChangeLog M LayoutTests/platform/chromium/test_expectations.txt M LayoutTests/platform/mac/Skipped M LayoutTests/platform/win/Skipped Committed r81233 Thanks to http://trac.webkit.org/changeset/81613 I believe these can be re-enabled. Created attachment 86395 [details]
screenshot
Nope - breaking for a different reason now. See screenshot
Created attachment 86522 [details]
Patch
Comment on attachment 86522 [details]
Patch
You are my hero, Dean Jackson! I don't feel like I understand this change, but I'm willing to rs=me it. If you want a more thorough review, I'd wait for cmarrin or the like.
Comment on attachment 86522 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=86522&action=review > Source/WebCore/page/animation/AnimationController.cpp:423 > - if (!m_animationsWaitingForStartTimeResponse.isEmpty()) > - m_waitingForStartTimeResponse = false; > + if (m_animationsWaitingForStartTimeResponse.isEmpty()) > + m_sendStartTimeResponseOnUpdate = true; This change is not a no-op. Previously the value of m_waitingForStartTimeResponse would only be changed if there was something in the m_animationsWaitingForStartTimeResponse list. Now, it would only be changed if the list is empty. But your changelog doesn't highlight this change. (In reply to comment #21) > (From update of attachment 86522 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=86522&action=review > > > Source/WebCore/page/animation/AnimationController.cpp:423 > > - if (!m_animationsWaitingForStartTimeResponse.isEmpty()) > > - m_waitingForStartTimeResponse = false; > > + if (m_animationsWaitingForStartTimeResponse.isEmpty()) > > + m_sendStartTimeResponseOnUpdate = true; > > This change is not a no-op. Previously the value of m_waitingForStartTimeResponse would only be changed if there was something in the m_animationsWaitingForStartTimeResponse list. Now, it would only be changed if the list is empty. But your changelog doesn't highlight this change. Exactly! That was the bug fix :) In the ChangeLog I said "The actual bug fix was that we were not resetting this when the list of waiting animations became empty." As far as I can tell, we were not triggering this before http://trac.webkit.org/changeset/81613 (or that change caused it to happen). This makes sense right? If there is an empty list, we do not have to wait for the notification. The issue was that the first page started an accelerated transition. That's fine. Then it jumped to another page. Because we were in compositing mode, the new page's transition was sometimes accelerated (this didn't always happen - it was often dependent on timing). Except that this caused the transition to wait forever when it wasn't accelerated, because the flag in ACP was saying it should wait for CoreAnimation to respond (even though nothing was running). Comment on attachment 86522 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=86522&action=review >>> Source/WebCore/page/animation/AnimationController.cpp:423 >>> + m_sendStartTimeResponseOnUpdate = true; >> >> This change is not a no-op. Previously the value of m_waitingForStartTimeResponse would only be changed if there was something in the m_animationsWaitingForStartTimeResponse list. Now, it would only be changed if the list is empty. But your changelog doesn't highlight this change. > > Exactly! That was the bug fix :) > > In the ChangeLog I said "The actual bug fix was that we were not resetting this when the list of waiting animations became empty." > > As far as I can tell, we were not triggering this before http://trac.webkit.org/changeset/81613 (or that change caused it to happen). This makes sense right? If there is an empty list, we do not have to wait for the notification. > > The issue was that the first page started an accelerated transition. That's fine. Then it jumped to another page. Because we were in compositing mode, the new page's transition was sometimes accelerated (this didn't always happen - it was often dependent on timing). Except that this caused the transition to wait forever when it wasn't accelerated, because the flag in ACP was saying it should wait for CoreAnimation to respond (even though nothing was running). I was expecting some comment next to the method name in the changelog. You broke this in http://trac.webkit.org/changeset/81613 (In reply to comment #23) > I was expecting some comment next to the method name in the changelog. I'll add one and admit guilt. > You broke this in http://trac.webkit.org/changeset/81613 Yes, guilty. This means that the real fix here is a combination of this + http://trac.webkit.org/changeset/81613 After comments from smfr on IRC, I'm renaming to m_waitingForAsyncStartNotification, which means undoing the logic reversal (although the bug fix will still remain) And unskipping the tests http://trac.webkit.org/changeset/81727 Thank you very much for fixing a flaky test. :) Only 104 left to go! The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 196863 [details] on bug 114172. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 196909 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 196841 [details] on bug 114155. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 196940 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197031 [details] on bug 114269. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197064 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197034 [details] on bug 85934. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197094 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197099 [details] on bug 114283. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197130 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197237 [details] on bug 114346. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197299 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197222 [details] on bug 114290. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197343 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197266 [details] on bug 114358. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197383 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197414 [details] on bug 114390. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197443 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197243 [details] on bug 114350. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197494 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197526 [details] on bug 114423. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197558 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197520 [details] on bug 114416. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197621 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197736 [details] on bug 114437. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197778 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197749 [details] on bug 114500. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197810 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197746 [details] on bug 114503. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 197838 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198044 [details] on bug 114615. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198073 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198082 [details] on bug 114468. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198111 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198127 [details] on bug 114624. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198165 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 197888 [details] on bug 114534. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198260 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 196460 [details] on bug 113927. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198309 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198274 [details] on bug 114511. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198380 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198387 [details] on bug 108980. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198421 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198509 [details] on bug 114654. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198539 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198335 [details] on bug 114686. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198572 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198631 [details] on bug 114773. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198660 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 198850 [details] on bug 109588. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 198881 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199053 [details] on bug 114970. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199084 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199153 [details] on bug 115013. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199199 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199245 [details] on bug 115029. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199273 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199130 [details] on bug 114526. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199308 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199342 [details] on bug 115068. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199370 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199156 [details] on bug 114897. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199446 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199412 [details] on bug 115099. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199483 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199531 [details] on bug 115137. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199564 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199517 [details] on bug 114218. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199600 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199112 [details] on bug 113976. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199721 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 199925 [details] on bug 115318. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 199951 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200138 [details] on bug 115434. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200180 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200255 [details] on bug 115495. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200286 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200336 [details] on bug 115529. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200363 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200467 [details] on bug 115573. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200495 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200549 [details] on bug 115602. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200578 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200589 [details] on bug 115611. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200632 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200427 [details] on bug 114742. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200701 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200720 [details] on bug 102105. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200759 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200768 [details] on bug 113808. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200797 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 200805 [details] on bug 115672. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 200849 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 201098 [details] on bug 115714. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 201164 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 201190 [details] on bug 115857. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 201229 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 201380 [details] on bug 115928. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 201410 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 201421 [details] on bug 115456. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 201613 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 202335 [details] on bug 115531. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 202358 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 202536 [details] on bug 116605. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 202565 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 202573 [details] on bug 116581. Bot: webkit-cq-03 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 202602 [details]
Archive of layout-test-results from webkit-cq-03
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 202664 [details] on bug 116659. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 202683 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 203149 [details] on bug 116951. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 203180 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 203217 [details] on bug 116954. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 203245 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 203812 [details] on bug 117222. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 203839 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 204185 [details] on bug 117416. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 204219 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 204225 [details] on bug 117441. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 204258 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 204297 [details] on bug 117295. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 204322 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 204380 [details] on bug 117528. Bot: webkit-cq-01 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 204408 [details]
Archive of layout-test-results from webkit-cq-01
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 204464 [details] on bug 116745. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 204489 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 204497 [details] on bug 117557. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 204524 [details]
Archive of layout-test-results from webkit-cq-02
The commit-queue just saw transitions/interrupted-accelerated-transition.html flake (text diff) while processing attachment 204587 [details] on bug 117593. Bot: webkit-cq-02 Port: <class 'webkitpy.common.config.ports.MacPort'> Platform: Mac OS X 10.8.3 Created attachment 204615 [details]
Archive of layout-test-results from webkit-cq-02
|