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

Side by Side Diff: Tools/ChangeLog

Issue 10633026: Merge 120629 - [chromium/mac] Unbreak smooth scrolling. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 6 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 unified diff | Download patch
OLDNEW
1 2012-06-18 Nico Weber <thakis@chromium.org>
2
3 [chromium/mac] Unbreak smooth scrolling.
4 https://bugs.webkit.org/show_bug.cgi?id=89327
5
6 Reviewed by Dimitri Glazkov.
7
8 Broken by Sam in r115589 / r115591.
9
10 * DumpRenderTree/mac/DumpRenderTree.mm:
11 (resetDefaultsToConsistentValues):
12 * TestWebKitAPI/mac/InjectedBundleControllerMac.mm:
13 (TestWebKitAPI::InjectedBundleController::platformInitialize):
14 * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
15 (WTR::InjectedBundle::platformInitialize):
16
17 2012-06-18 Sheriff Bot <webkit.review.bot@gmail.com>
18
19 Unreviewed, rolling out r120541, r120547, and r120548.
20 http://trac.webkit.org/changeset/120541
21 http://trac.webkit.org/changeset/120547
22 http://trac.webkit.org/changeset/120548
23 https://bugs.webkit.org/show_bug.cgi?id=89383
24
25 This approach doesn't work for WebKit2 (Requested by abarth on
26 #webkit).
27
28 * DumpRenderTree/LayoutTestController.cpp:
29 (setBackingScaleFactorCallback):
30 (LayoutTestController::staticFunctions):
31 * DumpRenderTree/LayoutTestController.h:
32 (LayoutTestController):
33 * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
34 (LayoutTestController::setBackingScaleFactor):
35 * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
36 (LayoutTestController::setBackingScaleFactor):
37 * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
38 (LayoutTestController::setBackingScaleFactor):
39 * DumpRenderTree/mac/LayoutTestControllerMac.mm:
40 (LayoutTestController::setBackingScaleFactor):
41 * DumpRenderTree/win/LayoutTestControllerWin.cpp:
42 (LayoutTestController::setBackingScaleFactor):
43 * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
44 (LayoutTestController::setBackingScaleFactor):
45 * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
46 * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
47 (WTR::InjectedBundle::didReceiveMessage):
48 (WTR::InjectedBundle::postSetBackingScaleFactor):
49 (WTR):
50 * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
51 (InjectedBundle):
52 * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
53 (WTR::LayoutTestController::setBackingScaleFactor):
54 (WTR):
55 (WTR::LayoutTestController::callSetBackingScaleFactorCallback):
56 * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
57 (LayoutTestController):
58 * WebKitTestRunner/TestInvocation.cpp:
59 (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
60
61 2012-06-18 Zan Dobersek <zandobersek@gmail.com>
62
63 REGRESSION(r120546): It made 3 webkitpy tests fail
64 https://bugs.webkit.org/show_bug.cgi?id=89332
65
66 Reviewed by Adam Barth.
67
68 Update the BaselineOptimizer unittest after r120546.
69
70 * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
71 (BaselineOptimizerTest.test_no_add_mac_future):
72 (BaselineOptimizerTest.test_mac_future):
73 (BaselineOptimizerTest.test_complex_shadowing):
74
75 2012-06-18 Dirk Pranke <dpranke@chromium.org>
76
77 new-run-webkit-tests output gets confused when logging
78 https://bugs.webkit.org/show_bug.cgi?id=63793
79
80 Reviewed by Adam Barth.
81
82 Ship all of the log messages generated in the worker back
83 to the manager; this allows the messages to be properly
84 serialized to stderr and for the meter to flush its output correctly.
85
86 Note however that this will likely result in messages to be
87 logged out of order between workers; I'm not sure that there's
88 an easy way to fix this short of buffering a potentially
89 unbounded amount of data. It might be better to just log through
90 stderr unless we're in 'metering' mode, but it's also worth
91 noting that we already get messages out of order through stderr
92 on Windows.
93
94 * Scripts/webkitpy/layout_tests/controllers/manager.py:
95 (Manager.handle_done):
96 (Manager.handle_finished_test):
97 (Manager._log_messages):
98 * Scripts/webkitpy/layout_tests/controllers/worker.py:
99 (Worker.__init__):
100 (Worker._set_up_logging):
101 (Worker.run):
102 (Worker._run_test):
103 (Worker.cleanup):
104 (Worker.run_single_test):
105 (_WorkerLogHandler):
106 (_WorkerLogHandler.__init__):
107 (_WorkerLogHandler.emit):
108 * Scripts/webkitpy/layout_tests/views/metered_stream.py:
109 (MeteredStream.write):
110 (MeteredStream.writeln):
111 * Scripts/webkitpy/layout_tests/views/printing.py:
112 (Printer.writeln):
113
114 2012-06-18 Zan Dobersek <zandobersek@gmail.com>
115
116 [garden-o-matic] Builder names without underscores cause incorrect Build Selector behavior
117 https://bugs.webkit.org/show_bug.cgi?id=89362
118
119 Reviewed by Simon Fraser.
120
121 Replace white spaces, braces and dots in the builder name with underscor es. This
122 way the JQuery tabs will be properly matched with the according containe r.
123
124 * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scr ipts/ui/results.js:
125
126 2012-06-18 Dirk Pranke <dpranke@chromium.org>
127
128 nrwt: metered output doesn't handle ^C cleanly
129 https://bugs.webkit.org/show_bug.cgi?id=89249
130
131 Reviewed by Tony Chang.
132
133 If you ctrl-c a running nrwt (w/o --verbose), then all but
134 two characters of the last update are erased, and then we print
135 "interrupted, exiting" as an update, which itself then gets
136 erased. Fix this so that we flush the meter (making the last
137 update persistent, so that we print the ^C for a visual clue),
138 print the interrupt message, and move on ...
139
140 * Scripts/webkitpy/layout_tests/controllers/manager.py:
141 (Manager._run_tests):
142 * Scripts/webkitpy/layout_tests/views/metered_stream.py:
143 (MeteredStream.flush):
144 * Scripts/webkitpy/layout_tests/views/printing.py:
145 (Printer._write):
146 (Printer):
147 (Printer.flush):
148
149 2012-06-18 Xianzhu Wang <wangxianzhu@chromium.org>
150
151 [Chromium] Change back "linuxish" to "linux" and include WebFontRenderin g.cpp on Android
152 https://bugs.webkit.org/show_bug.cgi?id=89228
153
154 Reviewed by Tony Chang.
155
156 * DumpRenderTree/chromium/LayoutTestController.cpp:
157 * DumpRenderTree/chromium/TestShellAndroid.cpp:
158
1 2012-06-18 Mario Sanchez Prada <msanchez@igalia.com> 159 2012-06-18 Mario Sanchez Prada <msanchez@igalia.com>
2 160
3 [GTK] Get rid of DumpRenderTreeSupportGtk::{in|de}crementAccessibilityVa lue 161 [GTK] Get rid of DumpRenderTreeSupportGtk::{in|de}crementAccessibilityVa lue
4 https://bugs.webkit.org/show_bug.cgi?id=89226 162 https://bugs.webkit.org/show_bug.cgi?id=89226
5 163
6 Reviewed by Martin Robinson. 164 Reviewed by Martin Robinson.
7 165
8 Implement increment() and decrement() functions in term of the AtkValue interface, 166 Implement increment() and decrement() functions in term of the AtkValue interface,
9 instead of using DumpRenderTreeSupportGtk helper class. 167 instead of using DumpRenderTreeSupportGtk helper class.
10 168
(...skipping 4836 matching lines...) Expand 10 before | Expand all | Expand 10 after
4847 https://bugs.webkit.org/show_bug.cgi?id=86684 5005 https://bugs.webkit.org/show_bug.cgi?id=86684
4848 5006
4849 Reviewed by Darin Fisher. 5007 Reviewed by Darin Fisher.
4850 5008
4851 * DumpRenderTree/chromium/LayoutTestController.cpp: 5009 * DumpRenderTree/chromium/LayoutTestController.cpp:
4852 (LayoutTestController::numberOfPages): 5010 (LayoutTestController::numberOfPages):
4853 * DumpRenderTree/chromium/WebViewHost.cpp: 5011 * DumpRenderTree/chromium/WebViewHost.cpp:
4854 (WebViewHost::printPage): 5012 (WebViewHost::printPage):
4855 5013
4856 == Rolled over to ChangeLog-2012-05-22 == 5014 == Rolled over to ChangeLog-2012-05-22 ==
OLDNEW
« no previous file with comments | « Source/WebCore/platform/mac/ScrollAnimatorMac.mm ('k') | Tools/DumpRenderTree/mac/DumpRenderTree.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698