| OLD | NEW |
| 1 2011-02-19 Charlie Reis <creis@chromium.org> | |
| 2 | |
| 3 Reviewed by Mihai Parparita. | |
| 4 | |
| 5 Ensure loading has stopped in HistoryController::goToItem | |
| 6 https://bugs.webkit.org/show_bug.cgi?id=54517 | |
| 7 | |
| 8 Call Page::goToItem instead of HistoryController::goToItem, so that | |
| 9 FrameLoader::stopAllLoaders is called first. Also adds a callback in | |
| 10 FrameLoaderClient for checking for pseudo-back-forward URLs. | |
| 11 | |
| 12 Test: http/tests/navigation/forward-to-fragment-fires-onload.html | |
| 13 | |
| 14 * src/FrameLoaderClientImpl.cpp: | |
| 15 (WebKit::FrameLoaderClientImpl::shouldStopLoadingForHistoryItem): Added. | |
| 16 * src/FrameLoaderClientImpl.h: | |
| 17 * src/WebFrameImpl.cpp: | |
| 18 | |
| 19 2011-02-18 Dominic Mazzoni <dmazzoni@google.com> | |
| 20 | |
| 21 Reviewed by Dimitri Glazkov. | |
| 22 | |
| 23 Marks any actions triggered by performDefaultAction as a user | |
| 24 gesture, so that a user with a screen reader isn't prevented from | |
| 25 performing operations that must be triggered by a user gesture. | |
| 26 https://bugs.webkit.org/show_bug.cgi?id=54759 | |
| 27 | |
| 28 * src/WebAccessibilityObject.cpp: | |
| 29 (WebKit::WebAccessibilityObject::performDefaultAction): | |
| 30 | |
| 31 2011-02-18 Kenneth Russell <kbr@google.com> | |
| 32 | |
| 33 Reviewed by James Robinson. | |
| 34 | |
| 35 [chromium] Clean up initialization of minimum timer interval | |
| 36 https://bugs.webkit.org/show_bug.cgi?id=54772 | |
| 37 | |
| 38 Rolled forward Chromium DEPS to pick up new webkit_support entry | |
| 39 point. Removed setting of default minimum timer interval, as this | |
| 40 is now done every time WebPreferences are applied. | |
| 41 | |
| 42 Tested with Chromium DRT port built from WebKit workspace; ran | |
| 43 fast/dom/ layout tests. | |
| 44 | |
| 45 * DEPS: | |
| 46 * src/WebKit.cpp: | |
| 47 (WebKit::initialize): | |
| 48 | |
| 49 2011-02-18 Ben Vanik <benvanik@google.com> | |
| 50 | |
| 51 Reviewed by Kenneth Russell. | |
| 52 | |
| 53 Bug 53940: Implement the OES_vertex_array_object WebGL extension | |
| 54 https://bugs.webkit.org/show_bug.cgi?id=53940 | |
| 55 | |
| 56 Stubbed out methods for the new OES_vertex_array_object methods. | |
| 57 | |
| 58 * src/Extensions3DChromium.cpp: | |
| 59 (WebCore::Extensions3DChromium::createVertexArrayOES): | |
| 60 (WebCore::Extensions3DChromium::deleteVertexArrayOES): | |
| 61 (WebCore::Extensions3DChromium::isVertexArrayOES): | |
| 62 (WebCore::Extensions3DChromium::bindVertexArrayOES): | |
| 63 | |
| 64 2011-02-17 Yuzo Fujishima <yuzo@google.com> | |
| 65 | |
| 66 Reviewed by Shinichiro Hamaji. | |
| 67 | |
| 68 Retry landing after fixing Chromium side. | |
| 69 Fix for Bug 54632 - [chromium] Printing causes view to scroll | |
| 70 https://bugs.webkit.org/show_bug.cgi?id=54632 | |
| 71 | |
| 72 Expose setScrollOffset such that Chromium can restore the scroll offset | |
| 73 after printing the document. The bug will be fixed when the counterpart | |
| 74 patch http://codereview.chromium.org/6539011/ is landed for Chromium. | |
| 75 | |
| 76 * public/WebFrame.h: | |
| 77 * src/WebFrameImpl.cpp: | |
| 78 (WebKit::WebFrameImpl::setScrollOffset): | |
| 79 * src/WebFrameImpl.h: | |
| 80 | |
| 81 2011-02-17 Andrew Wilson <atwilson@chromium.org> | |
| 82 | |
| 83 Unreviewed, rolling out r78936. | |
| 84 http://trac.webkit.org/changeset/78936 | |
| 85 https://bugs.webkit.org/show_bug.cgi?id=54632 | |
| 86 | |
| 87 Breaks chromium build | |
| 88 | |
| 89 * public/WebFrame.h: | |
| 90 * src/WebFrameImpl.cpp: | |
| 91 * src/WebFrameImpl.h: | |
| 92 | |
| 93 2011-02-17 Yuzo Fujishima <yuzo@google.com> | |
| 94 | |
| 95 Reviewed by Shinichiro Hamaji. | |
| 96 | |
| 97 Fix for Bug 54632 - [chromium] Printing causes view to scroll | |
| 98 https://bugs.webkit.org/show_bug.cgi?id=54632 | |
| 99 | |
| 100 Expose setScrollOffset such that Chromium can restore the scroll offset | |
| 101 after printing the document. The bug will be fixed when the counterpart | |
| 102 patch http://codereview.chromium.org/6539011/ is landed for Chromium. | |
| 103 | |
| 104 * public/WebFrame.h: | |
| 105 * src/WebFrameImpl.cpp: | |
| 106 (WebKit::WebFrameImpl::setScrollOffset): | |
| 107 * src/WebFrameImpl.h: | |
| 108 | |
| 109 2011-02-17 W. James MacLean <wjmaclean@chromium.org> | |
| 110 | |
| 111 Reviewed by James Robinson. | |
| 112 | |
| 113 [chromium] Add command-line flag to enable composite to offscreen textur
e. | |
| 114 https://bugs.webkit.org/show_bug.cgi?id=52311 | |
| 115 | |
| 116 Add plumbing to allow command-line switch to enable offscreen compositin
g. Function | |
| 117 LayerRendererChromium::copyOffscreenTextureToDisplay used for now to mim
ic | |
| 118 normal renderer operation. | |
| 119 | |
| 120 * public/WebSettings.h: | |
| 121 * src/WebSettingsImpl.cpp: | |
| 122 (WebKit::WebSettingsImpl::WebSettingsImpl): | |
| 123 (WebKit::WebSettingsImpl::setCompositeToTextureEnabled): | |
| 124 * src/WebSettingsImpl.h: | |
| 125 (WebKit::WebSettingsImpl::compositeToTextureEnabled): | |
| 126 * src/WebViewImpl.cpp: | |
| 127 (WebKit::WebViewImpl::doComposite): | |
| 128 | |
| 129 2011-02-10 Luiz Agostini <luiz.agostini@openbossa.org> | |
| 130 | |
| 131 Reviewed by Adam Roben. | |
| 132 | |
| 133 HTML5 <details> and <summary>: localized text | |
| 134 https://bugs.webkit.org/show_bug.cgi?id=54260 | |
| 135 | |
| 136 The method defaultDetailsSummaryText was added to LocalizedStrings. It i
s used to provide | |
| 137 the default label to be used by a <details> tag that has no <summary> ch
ild. | |
| 138 | |
| 139 * src/LocalizedStrings.cpp: | |
| 140 (WebCore::defaultDetailsSummaryText): | |
| 141 | |
| 142 2011-02-17 Steve Lacey <sjl@chromium.org> | |
| 143 | |
| 144 Reviewed by Darin Fisher. | |
| 145 | |
| 146 Roll chromium deps to 75190. Includes new dependency | |
| 147 on libjingle. | |
| 148 | |
| 149 https://bugs.webkit.org/show_bug.cgi?id=54588 | |
| 150 | |
| 151 * DEPS: | |
| 152 | |
| 153 2011-02-17 Pavel Podivilov <podivilov@chromium.org> | |
| 154 | |
| 155 Unreviewed, interactive ui test fix for r78808. | |
| 156 | |
| 157 * src/js/Tests.js: | |
| 158 (.TestSuite.prototype._waitUntilScriptsAreParsed.waitForAllScripts): | |
| 159 (.TestSuite.prototype._waitUntilScriptsAreParsed): | |
| 160 | |
| 161 2011-02-16 Brian Ryner <bryner@chromium.org> | |
| 162 | |
| 163 Reviewed by Darin Fisher. | |
| 164 | |
| 165 Split the socket address field into separate IP address and port fields. | |
| 166 This will make the field less error-prone to parse, for example when | |
| 167 dealing with IPv6 literals. | |
| 168 https://bugs.webkit.org/show_bug.cgi?id=54607 | |
| 169 | |
| 170 * public/WebURLResponse.h: | |
| 171 * src/WebURLResponse.cpp: | |
| 172 (WebKit::WebURLResponse::remoteIPAddress): | |
| 173 (WebKit::WebURLResponse::setRemoteIPAddress): | |
| 174 (WebKit::WebURLResponse::remotePort): | |
| 175 (WebKit::WebURLResponse::setRemotePort): | |
| 176 | |
| 177 2011-02-16 Dominic Mazzoni <dmazzoni@google.com> | |
| 178 | |
| 179 Reviewed by Chris Fleizach. | |
| 180 | |
| 181 Add new role for canvas elements. | |
| 182 | |
| 183 https://bugs.webkit.org/show_bug.cgi?id=50126 | |
| 184 | |
| 185 * public/WebAccessibilityRole.h: | |
| 186 * src/AssertMatchingEnums.cpp: | |
| 187 | |
| 188 2011-02-16 Victoria Kirst <vrk@google.com> | 1 2011-02-16 Victoria Kirst <vrk@google.com> |
| 189 | 2 |
| 190 Reviewed by Kenneth Russell. | 3 Reviewed by Kenneth Russell. |
| 191 | 4 |
| 192 [chromium] Fix green pixels at edge of certain GPU-accelerated videos | 5 [chromium] Fix green pixels at edge of certain GPU-accelerated videos |
| 193 https://bugs.webkit.org/show_bug.cgi?id=54559 | 6 https://bugs.webkit.org/show_bug.cgi?id=54559 |
| 194 | 7 |
| 195 * src/VideoFrameChromiumImpl.cpp: | 8 * src/VideoFrameChromiumImpl.cpp: |
| 196 (WebKit::VideoFrameChromiumImpl::width): | 9 (WebKit::VideoFrameChromiumImpl::width): |
| 197 (WebKit::VideoFrameChromiumImpl::height): | 10 (WebKit::VideoFrameChromiumImpl::height): |
| (...skipping 25 matching lines...) Expand all Loading... |
| 223 https://bugs.webkit.org/show_bug.cgi?id=53728 | 36 https://bugs.webkit.org/show_bug.cgi?id=53728 |
| 224 | 37 |
| 225 * src/IDBCallbacksProxy.cpp: | 38 * src/IDBCallbacksProxy.cpp: |
| 226 (WebCore::IDBCallbacksProxy::onBlocked): | 39 (WebCore::IDBCallbacksProxy::onBlocked): |
| 227 * src/IDBCallbacksProxy.h: | 40 * src/IDBCallbacksProxy.h: |
| 228 * src/WebIDBCallbacksImpl.cpp: | 41 * src/WebIDBCallbacksImpl.cpp: |
| 229 (WebCore::WebIDBCallbacksImpl::onBlocked): | 42 (WebCore::WebIDBCallbacksImpl::onBlocked): |
| 230 * src/WebIDBCallbacksImpl.h: | 43 * src/WebIDBCallbacksImpl.h: |
| 231 | 44 |
| 232 == Rolled over to ChangeLog-2011-02-16 == | 45 == Rolled over to ChangeLog-2011-02-16 == |
| OLD | NEW |