Index: Source/WebKit/chromium/ChangeLog |
=================================================================== |
--- Source/WebKit/chromium/ChangeLog (revision 79604) |
+++ Source/WebKit/chromium/ChangeLog (working copy) |
@@ -1,190 +1,3 @@ |
-2011-02-19 Charlie Reis <creis@chromium.org> |
- |
- Reviewed by Mihai Parparita. |
- |
- Ensure loading has stopped in HistoryController::goToItem |
- https://bugs.webkit.org/show_bug.cgi?id=54517 |
- |
- Call Page::goToItem instead of HistoryController::goToItem, so that |
- FrameLoader::stopAllLoaders is called first. Also adds a callback in |
- FrameLoaderClient for checking for pseudo-back-forward URLs. |
- |
- Test: http/tests/navigation/forward-to-fragment-fires-onload.html |
- |
- * src/FrameLoaderClientImpl.cpp: |
- (WebKit::FrameLoaderClientImpl::shouldStopLoadingForHistoryItem): Added. |
- * src/FrameLoaderClientImpl.h: |
- * src/WebFrameImpl.cpp: |
- |
-2011-02-18 Dominic Mazzoni <dmazzoni@google.com> |
- |
- Reviewed by Dimitri Glazkov. |
- |
- Marks any actions triggered by performDefaultAction as a user |
- gesture, so that a user with a screen reader isn't prevented from |
- performing operations that must be triggered by a user gesture. |
- https://bugs.webkit.org/show_bug.cgi?id=54759 |
- |
- * src/WebAccessibilityObject.cpp: |
- (WebKit::WebAccessibilityObject::performDefaultAction): |
- |
-2011-02-18 Kenneth Russell <kbr@google.com> |
- |
- Reviewed by James Robinson. |
- |
- [chromium] Clean up initialization of minimum timer interval |
- https://bugs.webkit.org/show_bug.cgi?id=54772 |
- |
- Rolled forward Chromium DEPS to pick up new webkit_support entry |
- point. Removed setting of default minimum timer interval, as this |
- is now done every time WebPreferences are applied. |
- |
- Tested with Chromium DRT port built from WebKit workspace; ran |
- fast/dom/ layout tests. |
- |
- * DEPS: |
- * src/WebKit.cpp: |
- (WebKit::initialize): |
- |
-2011-02-18 Ben Vanik <benvanik@google.com> |
- |
- Reviewed by Kenneth Russell. |
- |
- Bug 53940: Implement the OES_vertex_array_object WebGL extension |
- https://bugs.webkit.org/show_bug.cgi?id=53940 |
- |
- Stubbed out methods for the new OES_vertex_array_object methods. |
- |
- * src/Extensions3DChromium.cpp: |
- (WebCore::Extensions3DChromium::createVertexArrayOES): |
- (WebCore::Extensions3DChromium::deleteVertexArrayOES): |
- (WebCore::Extensions3DChromium::isVertexArrayOES): |
- (WebCore::Extensions3DChromium::bindVertexArrayOES): |
- |
-2011-02-17 Yuzo Fujishima <yuzo@google.com> |
- |
- Reviewed by Shinichiro Hamaji. |
- |
- Retry landing after fixing Chromium side. |
- Fix for Bug 54632 - [chromium] Printing causes view to scroll |
- https://bugs.webkit.org/show_bug.cgi?id=54632 |
- |
- Expose setScrollOffset such that Chromium can restore the scroll offset |
- after printing the document. The bug will be fixed when the counterpart |
- patch http://codereview.chromium.org/6539011/ is landed for Chromium. |
- |
- * public/WebFrame.h: |
- * src/WebFrameImpl.cpp: |
- (WebKit::WebFrameImpl::setScrollOffset): |
- * src/WebFrameImpl.h: |
- |
-2011-02-17 Andrew Wilson <atwilson@chromium.org> |
- |
- Unreviewed, rolling out r78936. |
- http://trac.webkit.org/changeset/78936 |
- https://bugs.webkit.org/show_bug.cgi?id=54632 |
- |
- Breaks chromium build |
- |
- * public/WebFrame.h: |
- * src/WebFrameImpl.cpp: |
- * src/WebFrameImpl.h: |
- |
-2011-02-17 Yuzo Fujishima <yuzo@google.com> |
- |
- Reviewed by Shinichiro Hamaji. |
- |
- Fix for Bug 54632 - [chromium] Printing causes view to scroll |
- https://bugs.webkit.org/show_bug.cgi?id=54632 |
- |
- Expose setScrollOffset such that Chromium can restore the scroll offset |
- after printing the document. The bug will be fixed when the counterpart |
- patch http://codereview.chromium.org/6539011/ is landed for Chromium. |
- |
- * public/WebFrame.h: |
- * src/WebFrameImpl.cpp: |
- (WebKit::WebFrameImpl::setScrollOffset): |
- * src/WebFrameImpl.h: |
- |
-2011-02-17 W. James MacLean <wjmaclean@chromium.org> |
- |
- Reviewed by James Robinson. |
- |
- [chromium] Add command-line flag to enable composite to offscreen texture. |
- https://bugs.webkit.org/show_bug.cgi?id=52311 |
- |
- Add plumbing to allow command-line switch to enable offscreen compositing. Function |
- LayerRendererChromium::copyOffscreenTextureToDisplay used for now to mimic |
- normal renderer operation. |
- |
- * public/WebSettings.h: |
- * src/WebSettingsImpl.cpp: |
- (WebKit::WebSettingsImpl::WebSettingsImpl): |
- (WebKit::WebSettingsImpl::setCompositeToTextureEnabled): |
- * src/WebSettingsImpl.h: |
- (WebKit::WebSettingsImpl::compositeToTextureEnabled): |
- * src/WebViewImpl.cpp: |
- (WebKit::WebViewImpl::doComposite): |
- |
-2011-02-10 Luiz Agostini <luiz.agostini@openbossa.org> |
- |
- Reviewed by Adam Roben. |
- |
- HTML5 <details> and <summary>: localized text |
- https://bugs.webkit.org/show_bug.cgi?id=54260 |
- |
- The method defaultDetailsSummaryText was added to LocalizedStrings. It is used to provide |
- the default label to be used by a <details> tag that has no <summary> child. |
- |
- * src/LocalizedStrings.cpp: |
- (WebCore::defaultDetailsSummaryText): |
- |
-2011-02-17 Steve Lacey <sjl@chromium.org> |
- |
- Reviewed by Darin Fisher. |
- |
- Roll chromium deps to 75190. Includes new dependency |
- on libjingle. |
- |
- https://bugs.webkit.org/show_bug.cgi?id=54588 |
- |
- * DEPS: |
- |
-2011-02-17 Pavel Podivilov <podivilov@chromium.org> |
- |
- Unreviewed, interactive ui test fix for r78808. |
- |
- * src/js/Tests.js: |
- (.TestSuite.prototype._waitUntilScriptsAreParsed.waitForAllScripts): |
- (.TestSuite.prototype._waitUntilScriptsAreParsed): |
- |
-2011-02-16 Brian Ryner <bryner@chromium.org> |
- |
- Reviewed by Darin Fisher. |
- |
- Split the socket address field into separate IP address and port fields. |
- This will make the field less error-prone to parse, for example when |
- dealing with IPv6 literals. |
- https://bugs.webkit.org/show_bug.cgi?id=54607 |
- |
- * public/WebURLResponse.h: |
- * src/WebURLResponse.cpp: |
- (WebKit::WebURLResponse::remoteIPAddress): |
- (WebKit::WebURLResponse::setRemoteIPAddress): |
- (WebKit::WebURLResponse::remotePort): |
- (WebKit::WebURLResponse::setRemotePort): |
- |
-2011-02-16 Dominic Mazzoni <dmazzoni@google.com> |
- |
- Reviewed by Chris Fleizach. |
- |
- Add new role for canvas elements. |
- |
- https://bugs.webkit.org/show_bug.cgi?id=50126 |
- |
- * public/WebAccessibilityRole.h: |
- * src/AssertMatchingEnums.cpp: |
- |
2011-02-16 Victoria Kirst <vrk@google.com> |
Reviewed by Kenneth Russell. |