OLD | NEW |
| 1 2011-10-21 Simon Fraser <simon.fraser@apple.com> |
| 2 |
| 3 Fix Windows build. |
| 4 |
| 5 * rendering/RenderLayerCompositor.cpp: |
| 6 (WebCore::RenderLayerCompositor::hasAnyAdditionalCompositedLayers): |
| 7 |
| 8 2011-10-21 Devdatta Deshpande <pwjd73@motorola.com> |
| 9 |
| 10 [Gtk] mousemove event always has metaKey == true |
| 11 https://bugs.webkit.org/show_bug.cgi?id=35299 |
| 12 |
| 13 Reviewed by Martin Robinson. |
| 14 |
| 15 GDK_MOD2_MASK doesn't always mean meta so we can't use it to identify |
| 16 the meta key state. Use GDK_META_MASK instead. |
| 17 |
| 18 Test: platform/gtk/fast/events/event-sender-metakey.html |
| 19 |
| 20 * platform/gtk/PlatformMouseEventGtk.cpp: |
| 21 (WebCore::PlatformMouseEvent::PlatformMouseEvent): |
| 22 |
| 23 2011-10-21 Andreas Kling <kling@webkit.org> |
| 24 |
| 25 Style and Link elements' sheet() should return CSSStyleSheet. |
| 26 https://bugs.webkit.org/show_bug.cgi?id=70608 |
| 27 |
| 28 Reviewed by Antti Koivisto. |
| 29 |
| 30 Return a CSSStyleSheet* instead of a StyleSheet* in these functions |
| 31 since we know they are always CSSStyleSheets. |
| 32 Also remove some now-unnecessary isCSSStyleSheet() checks. |
| 33 |
| 34 * dom/StyleElement.h: |
| 35 (WebCore::StyleElement::sheet): |
| 36 * html/HTMLLinkElement.cpp: |
| 37 * html/HTMLLinkElement.h: |
| 38 (WebCore::HTMLLinkElement::sheet): |
| 39 * page/PageSerializer.cpp: |
| 40 (WebCore::PageSerializer::serializeFrame): |
| 41 |
| 42 2011-10-21 Vsevolod Vlasov <vsevik@chromium.org> |
| 43 |
| 44 Web Inspector: Advanced search is working very slowly and does not show
searching progress. |
| 45 https://bugs.webkit.org/show_bug.cgi?id=70611 |
| 46 |
| 47 Search implementation changed so that we do not start searching in the n
ext file unless |
| 48 the previous one was already searched. This allows to interrupt search. |
| 49 Not all search matches are added on UI by default now, only first 20 for
each file. |
| 50 Search progress information and search stop button were added to drawer
status bar. |
| 51 |
| 52 Reviewed by Pavel Feldman. |
| 53 |
| 54 * English.lproj/localizedStrings.js: |
| 55 * inspector/ContentSearchUtils.cpp: |
| 56 (WebCore::ContentSearchUtils::getRegularExpressionMatchesByLines): |
| 57 (WebCore::ContentSearchUtils::countRegularExpressionMatches): |
| 58 * inspector/front-end/AdvancedSearchController.js: |
| 59 (WebInspector.AdvancedSearchController.prototype._onSearchResult): |
| 60 (WebInspector.AdvancedSearchController.prototype._onSearchFinished): |
| 61 (WebInspector.AdvancedSearchController.prototype.startSearch): |
| 62 (WebInspector.AdvancedSearchController.prototype.resetSearch): |
| 63 (WebInspector.AdvancedSearchController.prototype.stopSearch): |
| 64 (WebInspector.SearchView): |
| 65 (WebInspector.SearchView.prototype.get statusBarItems): |
| 66 (WebInspector.SearchView.prototype.get counterElement): |
| 67 (WebInspector.SearchView.prototype.set resultsPane): |
| 68 (WebInspector.SearchView.prototype.searchStarted): |
| 69 (WebInspector.SearchView.prototype._updateSearchResultsMessage): |
| 70 (WebInspector.SearchView.prototype._updateSearchProgress): |
| 71 (WebInspector.SearchView.prototype.resetResults): |
| 72 (WebInspector.SearchView.prototype._resetCounters): |
| 73 (WebInspector.SearchView.prototype.nothingFound): |
| 74 (WebInspector.SearchView.prototype.addSearchResult): |
| 75 (WebInspector.SearchView.prototype.searchFinished): |
| 76 (WebInspector.SearchView.prototype._searchStopButtonPressed): |
| 77 (WebInspector.SearchResultsPane): |
| 78 (WebInspector.FileBasedSearchResultsPane): |
| 79 (WebInspector.FileBasedSearchResultsPane.prototype.addSearchResult): |
| 80 (WebInspector.FileBasedSearchResultsPane.prototype._fileTreeElementExpan
ded): |
| 81 (WebInspector.FileBasedSearchResultsPane.prototype._appendSearchMatches)
: |
| 82 (WebInspector.FileBasedSearchResultsPane.prototype._appendShowMoreMatche
sElement): |
| 83 (WebInspector.FileBasedSearchResultsPane.prototype._showMoreMatchesEleme
ntSelected): |
| 84 (WebInspector.FileBasedSearchResultsPane.prototype._addFileTreeElement): |
| 85 (WebInspector.FileBasedSearchResultsPane.prototype._regexMatchRanges): |
| 86 * inspector/front-end/Drawer.js: |
| 87 (WebInspector.Drawer.prototype.hide): |
| 88 * inspector/front-end/Images/statusbarButtonGlyphs.png: |
| 89 * inspector/front-end/ScriptsSearchScope.js: |
| 90 (WebInspector.ScriptsSearchScope): |
| 91 (WebInspector.ScriptsSearchScope.prototype.performSearch.filterOutConten
tScripts): |
| 92 (WebInspector.ScriptsSearchScope.prototype.performSearch.continueSearch)
: |
| 93 (WebInspector.ScriptsSearchScope.prototype.performSearch.searchCallbackW
rapper): |
| 94 (WebInspector.ScriptsSearchScope.prototype.performSearch): |
| 95 (WebInspector.ScriptsSearchScope.prototype.stopSearch): |
| 96 * inspector/front-end/TimelinePanel.js: |
| 97 (WebInspector.TimelinePanel.prototype._registerShortcuts): |
| 98 * inspector/front-end/inspector.css: |
| 99 (#drawer-status-bar .search-status-bar-item): |
| 100 (#drawer-status-bar .search-status-bar-message): |
| 101 (#drawer-status-bar .search-status-bar-progress): |
| 102 (#drawer-status-bar .search-status-bar-stop-button-item): |
| 103 (#drawer-status-bar .search-status-bar-stop-button .glyph): |
| 104 (#drawer-status-bar .search-results-status-bar-message): |
| 105 (.search-view .search-results): |
| 106 (#search-results-pane-file-based .search-results-outline-disclosure): |
| 107 (#search-results-pane-file-based .search-result): |
| 108 (#search-results-pane-file-based .search-result:hover): |
| 109 (#search-results-pane-file-based .show-more-matches): |
| 110 (#search-results-pane-file-based .show-more-matches:hover): |
| 111 (#search-results-pane-file-based .search-match:hover): |
| 112 * inspector/front-end/utilities.js: |
| 113 (): |
| 114 |
| 115 2011-10-20 Zhenyao Mo <zmo@google.com> |
| 116 |
| 117 Implement mechanism to enable privileged webgl extensions |
| 118 https://bugs.webkit.org/show_bug.cgi?id=70538 |
| 119 |
| 120 Reviewed by Darin Fisher. |
| 121 |
| 122 * html/canvas/WebGLRenderingContext.cpp: |
| 123 (WebCore::WebGLRenderingContext::allowPrivilegedExtensions): check page/
Settings flag. |
| 124 * page/Settings.cpp: Add the flag. |
| 125 (WebCore::Settings::Settings): |
| 126 (WebCore::Settings::setPrivilegedWebGLExtensionsEnabled): |
| 127 * page/Settings.h: Ditto. |
| 128 (WebCore::Settings::privilegedWebGLExtensionsEnabled): |
| 129 |
| 130 2011-10-20 Pavel Podivilov <podivilov@chromium.org> |
| 131 |
| 132 Web Inspector: first line in file is not highlighted. |
| 133 https://bugs.webkit.org/show_bug.cgi?id=70504 |
| 134 |
| 135 Reviewed by Pavel Feldman. |
| 136 |
| 137 * inspector/front-end/SourceFrame.js: |
| 138 (WebInspector.SourceFrame.prototype._initializeTextViewer): |
| 139 |
| 140 2011-10-21 Andreas Kling <kling@webkit.org> |
| 141 |
| 142 Simplify CSSStyleRule::setSelectorText(). |
| 143 https://bugs.webkit.org/show_bug.cgi?id=70607 |
| 144 |
| 145 Reviewed by Antti Koivisto. |
| 146 |
| 147 Remove unnecessary isCSSStyleSheet() check and redundant Document findin
g |
| 148 logic (CSSStyleSheet::document() will return the owner node's Document j
ust |
| 149 like this code would.) |
| 150 |
| 151 * css/CSSStyleRule.cpp: |
| 152 (WebCore::CSSStyleRule::setSelectorText): |
| 153 |
| 154 2011-10-21 Alejandro G. Castro <alex@igalia.com> |
| 155 |
| 156 [cairo] Forward declaration of GraphicsContextState uses class instead o
f struct |
| 157 https://bugs.webkit.org/show_bug.cgi?id=70522 |
| 158 |
| 159 The type is a struct not a class, replace the definition in the |
| 160 forward declaration. |
| 161 |
| 162 Reviewed by Martin Robinson. |
| 163 |
| 164 * platform/graphics/cairo/PlatformContextCairo.h: |
| 165 |
| 166 2011-10-20 Andrey Kosyakov <caseq@chromium.org> |
| 167 |
| 168 Web Inspector: make extension tests pass on chromium |
| 169 https://bugs.webkit.org/show_bug.cgi?id=70334 |
| 170 |
| 171 Reviewed by Pavel Feldman. |
| 172 |
| 173 * inspector/front-end/ExtensionAPI.js: |
| 174 (buildExtensionAPIInjectedScript): |
| 175 |
| 176 2011-10-20 Peter Rybin <peter.rybin@gmail.com> |
| 177 |
| 178 Web Inspector: reimplement protocol backend/frontend source generator |
| 179 https://bugs.webkit.org/show_bug.cgi?id=69295 |
| 180 |
| 181 Reviewed by Pavel Feldman. |
| 182 |
| 183 Old 2-stage python+perf generator that uses intermediate IDL output is |
| 184 being replaced with a solid python script. This is for simplicity and |
| 185 as a base for the future JSON validator. |
| 186 |
| 187 * CMakeLists.txt: |
| 188 * CodeGenerators.pri: |
| 189 * DerivedSources.make: |
| 190 * GNUmakefile.am: |
| 191 * WebCore.gyp/WebCore.gyp: |
| 192 * inspector/CodeGeneratorInspector.pm: Removed. |
| 193 * inspector/CodeGeneratorInspector.py: Added. |
| 194 * inspector/Inspector.json: |
| 195 * inspector/generate-inspector-idl: Removed. |
| 196 |
| 197 2011-10-20 Adam Barth <abarth@webkit.org> |
| 198 |
| 199 Attemp to fix a bunch of tests PLATFORM(MAC). We can't use a static |
| 200 map because that's shared between threads (and events exist in worker |
| 201 threads). It migh be better to add a thread-specific map, but we can |
| 202 do that in another patch. |
| 203 |
| 204 * bindings/js/JSEventCustom.cpp: |
| 205 (WebCore::toJS): |
| 206 * bindings/v8/custom/V8EventCustom.cpp: |
| 207 (WebCore::toV8): |
| 208 |
1 2011-10-20 Simon Fraser <simon.fraser@apple.com> | 209 2011-10-20 Simon Fraser <simon.fraser@apple.com> |
2 | 210 |
3 Hidden composited iframes cause infinite loop | 211 Hidden composited iframes cause infinite loop |
4 https://bugs.webkit.org/show_bug.cgi?id=52655 | 212 https://bugs.webkit.org/show_bug.cgi?id=52655 |
5 | 213 |
6 Reviewed by Darin Adler. | 214 Reviewed by Darin Adler. |
7 | 215 |
8 visibility:hidden is problematic for compositing, because it causes | 216 visibility:hidden is problematic for compositing, because it causes |
9 RenderLayers to be removed from the z-order layer tree. This confuses | 217 RenderLayers to be removed from the z-order layer tree. This confuses |
10 RenderLayerCompositor in several ways; it never sees these layers | 218 RenderLayerCompositor in several ways; it never sees these layers |
(...skipping 1590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1601 (WebCore::MessageEvent::dataAsArrayBuffer): Ditto. | 1809 (WebCore::MessageEvent::dataAsArrayBuffer): Ditto. |
1602 * dom/MessageEvent.idl: Changed SerializedScriptValue to DOMObject (i.e.
ScriptValue). This patch does not touch an ObjC part. Removed [CachedAttribute]
from MessageEvent.data, since it is now a DOMObject and needs not to be cached. | 1810 * dom/MessageEvent.idl: Changed SerializedScriptValue to DOMObject (i.e.
ScriptValue). This patch does not touch an ObjC part. Removed [CachedAttribute]
from MessageEvent.data, since it is now a DOMObject and needs not to be cached. |
1603 | 1811 |
1604 2011-10-19 Adam Barth <abarth@webkit.org> | 1812 2011-10-19 Adam Barth <abarth@webkit.org> |
1605 | 1813 |
1606 Attempt to fix GTK build. | 1814 Attempt to fix GTK build. |
1607 | 1815 |
1608 * GNUmakefile.am: | 1816 * GNUmakefile.am: |
1609 | 1817 |
1610 == Rolled over to ChangeLog-2011-10-19 == | 1818 == Rolled over to ChangeLog-2011-10-19 == |
OLD | NEW |