OLD | NEW |
1 2011-02-16 Victoria Kirst <vrk@google.com> | 1 2011-01-27 Finnur Thorarinsson <finnur.webkit@gmail.com> |
2 | 2 |
| 3 Reviewed by Ojan Vafai. |
| 4 |
| 5 This addresses a regression introduced by r75784, as described in: |
| 6 https://bugs.webkit.org/show_bug.cgi?id=53176 |
| 7 |
| 8 The problem is that originalEndContainer and originalEndOffset was |
| 9 meant to capture the end of the document, but was being assigned after |
| 10 a call to searchRange->setStart() (when scoping is restarted), which can |
| 11 result in the Range being collapsed to start (thereby assigning the |
| 12 wrong value to the Container/Offset pair). |
| 13 |
| 14 This code is never triggered by layout tests, but I'm adding a regressio
no |
| 15 test on the Chromium side for this. |
| 16 |
| 17 * src/WebFrameImpl.cpp: |
| 18 (WebKit::WebFrameImpl::scopeStringMatches): |
| 19 |
| 20 2011-01-27 Zhenyao Mo <zmo@google.com> |
| 21 |
3 Reviewed by Kenneth Russell. | 22 Reviewed by Kenneth Russell. |
4 | 23 |
5 [chromium] Fix green pixels at edge of certain GPU-accelerated videos | 24 [chromium] Fix green pixels at edge of certain GPU-accelerated videos |
6 https://bugs.webkit.org/show_bug.cgi?id=54559 | 25 https://bugs.webkit.org/show_bug.cgi?id=54559 |
7 | 26 |
8 * src/VideoFrameChromiumImpl.cpp: | 27 * src/VideoFrameChromiumImpl.cpp: |
9 (WebKit::VideoFrameChromiumImpl::width): | 28 (WebKit::VideoFrameChromiumImpl::width): |
10 (WebKit::VideoFrameChromiumImpl::height): | 29 (WebKit::VideoFrameChromiumImpl::height): |
11 (WebKit::VideoFrameChromiumImpl::requiredTextureSize): | 30 (WebKit::VideoFrameChromiumImpl::requiredTextureSize): |
12 (WebKit::VideoFrameChromiumImpl::hasPaddingBytes): | 31 (WebKit::VideoFrameChromiumImpl::hasPaddingBytes): |
(...skipping 23 matching lines...) Expand all Loading... |
36 https://bugs.webkit.org/show_bug.cgi?id=53728 | 55 https://bugs.webkit.org/show_bug.cgi?id=53728 |
37 | 56 |
38 * src/IDBCallbacksProxy.cpp: | 57 * src/IDBCallbacksProxy.cpp: |
39 (WebCore::IDBCallbacksProxy::onBlocked): | 58 (WebCore::IDBCallbacksProxy::onBlocked): |
40 * src/IDBCallbacksProxy.h: | 59 * src/IDBCallbacksProxy.h: |
41 * src/WebIDBCallbacksImpl.cpp: | 60 * src/WebIDBCallbacksImpl.cpp: |
42 (WebCore::WebIDBCallbacksImpl::onBlocked): | 61 (WebCore::WebIDBCallbacksImpl::onBlocked): |
43 * src/WebIDBCallbacksImpl.h: | 62 * src/WebIDBCallbacksImpl.h: |
44 | 63 |
45 == Rolled over to ChangeLog-2011-02-16 == | 64 == Rolled over to ChangeLog-2011-02-16 == |
OLD | NEW |