| OLD | NEW |
| 1 2013-02-04 Sami Kyostila <skyostil@chromium.org> |
| 2 |
| 3 Disable -webkit-overflow-scrolling CSS attribute on Chromium |
| 4 https://bugs.webkit.org/show_bug.cgi?id=108020 |
| 5 |
| 6 Reviewed by James Robinson. |
| 7 |
| 8 Now that we can automatically promote overflow elements to accelerated |
| 9 scrolling layers there is no use for the -webkit-overflow-scrolling CSS |
| 10 attribute any longer on Chromium. |
| 11 |
| 12 This patch enables composited overflow scrolling in |
| 13 ScrollingCoordinatorChromiumTest. Because this also causes the overflow
div |
| 14 in non-fast-scrollable.html to become composited, we also need to modify
that |
| 15 test to opt it out of composited scrolling. |
| 16 |
| 17 * features.gypi: |
| 18 * tests/ScrollingCoordinatorChromiumTest.cpp: |
| 19 (WebKit::ScrollingCoordinatorChromiumTest::ScrollingCoordinatorChromiumT
est): |
| 20 (WebKit::TEST_F): |
| 21 * tests/data/non-fast-scrollable.html: |
| 22 * tests/data/overflow-scrolling.html: Renamed from Source/WebKit/chromiu
m/tests/data/touch-overflow-scrolling.html. |
| 23 |
| 1 2013-02-05 Sami Kyostila <skyostil@chromium.org> | 24 2013-02-05 Sami Kyostila <skyostil@chromium.org> |
| 2 | 25 |
| 3 [chromium] Make overlay layers slow-scrolling | 26 [chromium] Make overlay layers slow-scrolling |
| 4 https://bugs.webkit.org/show_bug.cgi?id=108957 | 27 https://bugs.webkit.org/show_bug.cgi?id=108957 |
| 5 | 28 |
| 6 Reviewed by James Robinson. | 29 Reviewed by James Robinson. |
| 7 | 30 |
| 8 Since overlay layers get inserted on top of everything else, we must | 31 Since overlay layers get inserted on top of everything else, we must |
| 9 mark them slow-scrolling to prevent all scroll input events to the rest | 32 mark them slow-scrolling to prevent all scroll input events to the rest |
| 10 of the page from getting blocked. This is also more correct because | 33 of the page from getting blocked. This is also more correct because |
| (...skipping 9140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9151 | 9174 |
| 9152 [Chromium-Win] Implement LocaleWin::dateFormat | 9175 [Chromium-Win] Implement LocaleWin::dateFormat |
| 9153 https://bugs.webkit.org/show_bug.cgi?id=98117 | 9176 https://bugs.webkit.org/show_bug.cgi?id=98117 |
| 9154 | 9177 |
| 9155 Reviewed by Kentaro Hara. | 9178 Reviewed by Kentaro Hara. |
| 9156 | 9179 |
| 9157 * tests/LocaleWinTest.cpp: | 9180 * tests/LocaleWinTest.cpp: |
| 9158 (TEST_F): Add tests for LocaleWin::dateFormat. | 9181 (TEST_F): Add tests for LocaleWin::dateFormat. |
| 9159 | 9182 |
| 9160 == Rolled over to ChangeLog-2012-10-02 == | 9183 == Rolled over to ChangeLog-2012-10-02 == |
| OLD | NEW |