Index: Source/WebKit/chromium/ChangeLog |
=================================================================== |
--- Source/WebKit/chromium/ChangeLog (revision 112599) |
+++ Source/WebKit/chromium/ChangeLog (working copy) |
@@ -1,5 +1,129 @@ |
+2012-03-27 James Robinson <jamesr@chromium.org> |
+ |
+ [chromium] Send wheel events to main thread even if we think nothing is scrollable |
+ https://bugs.webkit.org/show_bug.cgi?id=82408 |
+ |
+ Reviewed by Adrienne Walker. |
+ |
+ * src/WebCompositorInputHandlerImpl.cpp: |
+ (WebKit::WebCompositorInputHandlerImpl::handleInputEventInternal): |
+ |
+2012-03-27 Nat Duca <nduca@chromium.org> |
+ |
+ [chromium] Route monotonic clock up from compositor |
+ https://bugs.webkit.org/show_bug.cgi?id=82154 |
+ |
+ Reviewed by James Robinson. |
+ |
+ * public/WebWidget.h: |
+ (WebKit::WebWidget::animate): |
+ * src/WebLayerTreeViewImpl.cpp: |
+ (WebKit::WebLayerTreeViewImpl::updateAnimations): |
+ * src/WebLayerTreeViewImpl.h: |
+ (WebLayerTreeViewImpl): |
+ * src/WebViewImpl.cpp: |
+ (WebKit::WebViewImpl::animate): |
+ (WebKit::WebViewImpl::updateAnimations): |
+ * src/WebViewImpl.h: |
+ (WebViewImpl): |
+ * tests/FakeCCLayerTreeHostClient.h: |
+ (WebCore::FakeCCLayerTreeHostClient::updateAnimations): |
+ |
+2012-03-27 James Robinson <jamesr@chromium.org> |
+ |
+ webkit_unit_tests crashing on chromium lion in CCLayerTreeHostTestCompositeAndReadbackWhileInvisible |
+ https://bugs.webkit.org/show_bug.cgi?id=82382 |
+ |
+ Reviewed by Adrienne Walker. |
+ |
+ Use UnsignedWithZeroKeyHashTraits trait for the HashSet<WebGLId> m_usedTextures in |
+ CompositorFakeWebGraphicsContext3DWithTextureTracking. This set is used to track all textures that are bound in |
+ a given context during a test. During ..CompositeAndReadback.. we bind texture id 0. By default, HashSet<T> |
+ where T is an unsigned does not allow 0 as a value. WebGLId is typedef'd to unsigned. |
+ |
+ * tests/CCLayerTreeHostTest.cpp: |
+ (CompositorFakeWebGraphicsContext3DWithTextureTracking): |
+ |
+2012-03-27 James Robinson <jamesr@chromium.org> |
+ |
+ webkit_unit_tests crashing on chromium lion in ScrollbarLayerChromiumTest.resolveScrollLayerPointer |
+ https://bugs.webkit.org/show_bug.cgi?id=82381 |
+ |
+ Reviewed by Adrienne Walker. |
+ |
+ Use the mock scrollbar theme for this unit test. The real ScrollbarThemeMac isn't compatible with the mocks this |
+ test uses and the test isn't designed to cover the theming code, only code inside the compositor. |
+ |
+ * tests/ScrollbarLayerChromiumTest.cpp: |
+ (WebCore::TEST): |
+ |
+2012-03-27 Dirk Pranke <dpranke@chromium.org> |
+ |
+ Unreviewed, rolling out r112339. |
+ http://trac.webkit.org/changeset/112339 |
+ https://bugs.webkit.org/show_bug.cgi?id=82354 |
+ |
+ webkit_unit_tests crashing on chromium mac bots |
+ |
+ * src/AssociatedURLLoader.cpp: |
+ (AssociatedURLLoader::ClientAdapter): |
+ * tests/AssociatedURLLoaderTest.cpp: |
+ (WebKit::AssociatedURLLoaderTest::TearDown): |
+ (WebKit): |
+ (WebKit::TEST_F): |
+ |
+2012-03-27 Kausalya Madhusudhanan <kmadhusu@chromium.org> |
+ |
+ [Coverity] Address some uninitialized constructor values. |
+ https://bugs.webkit.org/show_bug.cgi?id=82376 |
+ |
+ Reviewed by James Robinson. |
+ |
+ New tests are not required since I did not modify any code behavior. I just initialized the class member variables in the constructor. |
+ |
+ * src/WebCompositorInputHandlerImpl.cpp: |
+ (WebCore::PlatformGestureToCCGestureAdapter::PlatformGestureToCCGestureAdapter): |
+ |
+2012-03-27 Dirk Pranke <dpranke@chromium.org> |
+ |
+ Roll chromium DEPS to r129300. |
+ |
+ Unreviewed, deps change. |
+ |
+ * DEPS: |
+ |
+2012-03-27 Bill Budge <bbudge@chromium.org> |
+ |
+ AssociatedURLLoader does not support Cross Origin Redirects when using |
+ Access Control. |
+ https://bugs.webkit.org/show_bug.cgi?id=82354 |
+ |
+ AssociatedURLLoader's internal adapter now overrides didFailRedirectCheck, |
+ which cancels the load, causing didFail to notify the client that the |
+ load failed. AssociatedURLLoaderTest adds test cases for CORS requests |
+ that receive redirects and pass or fail the redirect access check. |
+ |
+ Reviewed by Adam Barth. |
+ |
+ * src/AssociatedURLLoader.cpp: |
+ (AssociatedURLLoader::ClientAdapter): |
+ (WebKit::AssociatedURLLoader::ClientAdapter::didFailRedirectCheck): |
+ (WebKit): |
+ * tests/AssociatedURLLoaderTest.cpp: |
+ (WebKit::TEST_F): |
+ |
2012-03-27 Dana Jansens <danakj@chromium.org> |
+ [chromium] Unknown transforms should be treated as non-axis aligned on main thread |
+ https://bugs.webkit.org/show_bug.cgi?id=82370 |
+ |
+ Reviewed by Adrienne Walker. |
+ |
+ * tests/CCLayerTreeHostCommonTest.cpp: |
+ (WebKitTests::TEST): |
+ |
+2012-03-27 Dana Jansens <danakj@chromium.org> |
+ |
[chromium] Rename opaqueContentsRegion() to visibleContentOpaqueRegion() |
https://bugs.webkit.org/show_bug.cgi?id=81689 |