- 06 Apr, 2011 40 commits
-
-
commit-queue@webkit.org authored
Reviewed by Benjamin Poulain. Correct a include file name. https://bugs.webkit.org/show_bug.cgi?id=57839 * wtf/PageAllocatorSymbian.h: It should be case sensitive. This fix builds on Unix hosts. git-svn-id: svn://svn.chromium.org/blink/trunk@83059 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
aroben@apple.com authored
* JavaScriptCore.vcproj/JavaScriptCore/copy-files.cmd: Added property svn:executable. git-svn-id: svn://svn.chromium.org/blink/trunk@83058 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
enne@google.com authored
Unreviewed, add Chromium snow leopard baseline for meter-boundary-values * platform/chromium-mac/fast/dom/HTMLMeterElement/meter-boundary-values-expected.png: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83057 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
aroben@apple.com authored
Hopefully this will make it easier to modify this logic in the future. I also made the script much quieter than the old logic, since it didn't seem helpful to see long lists of filenames during the copying phase. If we like this new style, we could copy it for our other projects. Fixes <http://webkit.org/b/57950> JavaScriptCoreGenerated's file-copying logic is hard to modify and noisy Reviewed by Steve Falkenburg. * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGenerated.make: Moved logic to copy files from here... * JavaScriptCore.vcproj/JavaScriptCore/copy-files.cmd: ...to here. (Added.) * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGenerated.vcproj: Added copy-files.cmd for convenience. git-svn-id: svn://svn.chromium.org/blink/trunk@83056 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
ossy@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=57846 Reviewed by Andreas Kling. * Scripts/old-run-webkit-tests: git-svn-id: svn://svn.chromium.org/blink/trunk@83055 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
ossy@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=57940 Reviewed by Darin Adler. * WebProcess/ResourceCache/WebResourceCacheManager.cpp: (WebKit::WebResourceCacheManager::clearCacheForOrigin): git-svn-id: svn://svn.chromium.org/blink/trunk@83054 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
podivilov@chromium.org authored
Unreviewed, rolling out r83045. http://trac.webkit.org/changeset/83045 https://bugs.webkit.org/show_bug.cgi?id=57953 Broke win layout tests (Requested by podivilov on #webkit). * inspector/debugger/script-formatter-expected.txt: Removed. * inspector/debugger/script-formatter.html: Removed. * platform/chromium/test_expectations.txt: 2011-04-06 Sheriff Bot <webkit.review.bot@gmail.com> Unreviewed, rolling out r83045. http://trac.webkit.org/changeset/83045 https://bugs.webkit.org/show_bug.cgi?id=57953 Broke win layout tests (Requested by podivilov on #webkit). * GNUmakefile.am: * inspector/front-end/DebuggerPresentationModel.js: (WebInspector.DebuggerPresentationModel.prototype._addScript): (WebInspector.DebuggerPresentationModel.prototype.toggleFormatSourceFiles): git-svn-id: svn://svn.chromium.org/blink/trunk@83053 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
rniwa@webkit.org authored
Moved the declaration of positionNewFloatOnLine in RenderBlock.h after r83042. * rendering/RenderBlock.h: git-svn-id: svn://svn.chromium.org/blink/trunk@83052 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
diegohcg@webkit.org authored
[Qt] Re-draw the <input> fields for Qt Mobile Theme to do not override elements already styled. https://bugs.webkit.org/show_bug.cgi?id=57007 Reviewed by Kenneth Rohde Christiansen. * CodeGenerators.pri: * css/themeQtMobile.css: Removed. * platform/qt/QtMobileWebStyle.cpp: (drawRectangularControlBackground): (QtMobileWebStyle::drawPrimitive): (QtMobileWebStyle::drawComplexControl): * platform/qt/QtMobileWebStyle.h: * platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::isControlStyled): (WebCore::RenderThemeQt::paintTextField): git-svn-id: svn://svn.chromium.org/blink/trunk@83051 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
jberlin@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=57862 Reviewed by Anders Carlsson. Part 1: Get and set the state. * Shared/API/c/win/WKBaseWin.h: * Shared/APIObject.h: * UIProcess/API/C/win/WKAPICastWin.h: * UIProcess/API/C/win/WKTextChecker.cpp: Added. (WKTextCheckerSetClient): (WKTextCheckerContinuousSpellCheckingEnabledStateChanged): (WKTextCheckerGrammarCheckingEnabledStateChanged): * UIProcess/API/C/win/WKTextChecker.h: Added. * UIProcess/TextChecker.h: * UIProcess/win/TextCheckerWin.cpp: (WebKit::TextChecker::state): Do the initalization for the state only once so that it is not necessary to call the client every time the state is requested. (WebKit::TextChecker::isContinuousSpellCheckingAllowed): Call the client. (WebKit::TextChecker::setContinuousSpellCheckingEnabled): Update the state and tell the client. (WebKit::TextChecker::setGrammarCheckingEnabled): Ditto. (WebKit::TextChecker::continuousSpellCheckingEnabledStateChanged): Update the state. (WebKit::TextChecker::grammarCheckingEnabledStateChanged): Update the state. * UIProcess/win/WebTextChecker.cpp: Added. (WebKit::WebTextChecker::shared): Make the WebTextChecker available globally. (WebKit::WebTextChecker::WebTextChecker): (WebKit::WebTextChecker::setClient): (WebKit::updateStateForAllWebProcesses): (WebKit::WebTextChecker::continuousSpellCheckingEnabledStateChanged): Tell the TextChecker that the state has changed, and then tell the WebProcessProxies to send the new state to the WebProcesses. (WebKit::WebTextChecker::grammarCheckingEnabledStateChanged): Ditto. * UIProcess/win/WebTextChecker.h: Added. (WebKit::WebTextChecker::client): (WebKit::WebTextChecker::type): * UIProcess/win/WebTextCheckerClient.cpp: Added. (WebKit::WebTextCheckerClient::continuousSpellCheckingAllowed): (WebKit::WebTextCheckerClient::continuousSpellCheckingEnabled): (WebKit::WebTextCheckerClient::setContinuousSpellCheckingEnabled): (WebKit::WebTextCheckerClient::grammarCheckingEnabled): (WebKit::WebTextCheckerClient::setGrammarCheckingEnabled): * UIProcess/win/WebTextCheckerClient.h: Added. * win/WebKit2.vcproj: Add WKTextChecker.h/.cpp, WebTextChecker.h/.cpp, and WebTextCheckerClient.h/.cpp. * win/WebKit2Generated.make: Copy over WKTextChecker.h. git-svn-id: svn://svn.chromium.org/blink/trunk@83050 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Reviewed by Darin Adler. [Mac] When autocorrection occurs without showing correction panel, WebCore need to post accessibility notification. https://bugs.webkit.org/show_bug.cgi?id=57800 <rdar://problem/9218223> Defined a new accessibility notification type, AXAutocorrectionOccured. Editor::markAllMisspellingsAndBadGrammarInRanges() now posts said notification when any autocorrection or text replacement (e.g. replacing "(c)" with copyright mark) takes place. * accessibility/AXObjectCache.h: * accessibility/chromium/AXObjectCacheChromium.cpp: (WebCore::AXObjectCache::postPlatformNotification): * accessibility/mac/AXObjectCacheMac.mm: (WebCore::AXObjectCache::postPlatformNotification): * editing/Editor.cpp: (WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges): git-svn-id: svn://svn.chromium.org/blink/trunk@83049 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mrobinson@webkit.org authored
Build fix for debug Cairo builds. * platform/graphics/cairo/PlatformContextCairo.cpp: (WebCore::PlatformContextCairo::pushImageMask): Update the reference to m_maskInformation. git-svn-id: svn://svn.chromium.org/blink/trunk@83048 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
diegohcg@webkit.org authored
[Qt] Style fix for QtMobileWebStyle.h https://bugs.webkit.org/show_bug.cgi?id=57708 Reviewed by Antonio Gomes. * platform/qt/QtMobileWebStyle.h: git-svn-id: svn://svn.chromium.org/blink/trunk@83047 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
abecsi@webkit.org authored
Reviewed by Darin Adler. Invalid color #{predefined colorName} is accepted by the CSS parser. https://bugs.webkit.org/show_bug.cgi?id=15360 * editing/execCommand/16049.html: Correct testcase which relies on parsing an invalid color value as valid. * fast/css/invalid-predefined-color-expected.txt: Added. * fast/css/invalid-predefined-color.html: Added. * fast/css/script-tests/invalid-predefined-color.js: Added. 2011-04-06 Andras Becsi <abecsi@webkit.org> Reviewed by Darin Adler. Invalid color #{predefined colorName} is accepted by the CSS parser. https://bugs.webkit.org/show_bug.cgi?id=15360 Test: fast/css/invalid-predefined-color.html * css/CSSGrammar.y: Remove superfluous hexcolor production. * css/tokenizer.flex: A hexadecimal number should consist of [a-fA-F0-9] values ({h}). git-svn-id: svn://svn.chromium.org/blink/trunk@83046 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
podivilov@chromium.org authored
Reviewed by Pavel Feldman. Web Inspector: add test for script formatter worker. https://bugs.webkit.org/show_bug.cgi?id=57447 * inspector/debugger/script-formatter-expected.txt: Added. * inspector/debugger/script-formatter.html: Added. * platform/chromium/test_expectations.txt: 2011-03-30 Pavel Podivilov <podivilov@chromium.org> Reviewed by Pavel Feldman. Web Inspector: add test for script formatter worker. https://bugs.webkit.org/show_bug.cgi?id=57447 Test: inspector/debugger/script-formatter.html * GNUmakefile.am: * inspector/front-end/DebuggerPresentationModel.js: (WebInspector.DebuggerPresentationModel): (WebInspector.DebuggerPresentationModel.prototype.toggleFormatSourceFiles): git-svn-id: svn://svn.chromium.org/blink/trunk@83045 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mrobinson@webkit.org authored
Reviewed by Xan Lopez. [Cairo] Hide the details of image masking in PlatformContextCairo https://bugs.webkit.org/show_bug.cgi?id=57878 No new tests. This is just a refactor. * platform/graphics/GraphicsContext.h: * platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::savePlatformState): Call into PlatformContextCairo now to do the actual cairo_save. Remove information about image masking. (WebCore::GraphicsContext::restorePlatformState): Call into PlatformContextCairo now to do the actual cairo_restore. Remove information about image masking. * platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h: * platform/graphics/cairo/ImageBufferCairo.cpp: (WebCore::ImageBuffer::clip): Use PlatformContextCairo here now. * platform/graphics/cairo/PlatformContextCairo.cpp: (WebCore::PlatformContextCairo::restore): Added. (WebCore::PlatformContextCairo::save): Added. (WebCore::PlatformContextCairo::pushImageMask): Added. * platform/graphics/cairo/PlatformContextCairo.h: (WebCore::ImageMaskInformation::update): Moved from GraphicsContextPlatformPrivateCairo.h. (WebCore::ImageMaskInformation::isValid): Ditto. (WebCore::ImageMaskInformation::maskSurface): Ditto. (WebCore::ImageMaskInformation::maskRect): Ditto. git-svn-id: svn://svn.chromium.org/blink/trunk@83044 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
diegohcg@webkit.org authored
[Qt] Radio buttons are showing wrong with mobile theme https://bugs.webkit.org/show_bug.cgi?id=57706 Reviewed by Csaba Osztrogonác. * platform/qt/QtMobileWebStyle.cpp: (QtMobileWebStyle::drawRadio): git-svn-id: svn://svn.chromium.org/blink/trunk@83043 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
rniwa@webkit.org authored
Reviewed by Eric Seidel. Move RenderBlock::positionNewFloatOnLine to RenderBlockLineLayout.cpp https://bugs.webkit.org/show_bug.cgi?id=57943 * rendering/RenderBlock.cpp: Removed positionNewFloatOnLine. * rendering/RenderBlockLineLayout.cpp: (WebCore::RenderBlock::positionNewFloatOnLine): Moved from RenderBlock.cpp git-svn-id: svn://svn.chromium.org/blink/trunk@83042 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
diegohcg@webkit.org authored
Buildfix after r82125. [Qt] QtWebKit will not compile with QT_ASCII_CAST_WARNINGS enabled https://bugs.webkit.org/show_bug.cgi?id=57087 * platform/qt/QtMobileWebStyle.cpp: (QtMobileWebStyle::findChecker): (QtMobileWebStyle::findRadio): (QtMobileWebStyle::findComboButton): git-svn-id: svn://svn.chromium.org/blink/trunk@83041 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
podivilov@chromium.org authored
Reviewed by Yury Semikhatsky. Web Inspector: inline script imports in ScriptFormatterWorker.js so it works in Safari release. https://bugs.webkit.org/show_bug.cgi?id=57641 * WebCore.xcodeproj/project.pbxproj: * gyp/streamline-inspector-source.sh: * inspector/combine-javascript-resources.pl: Renamed from Source/WebCore/combine-javascript-resources. * inspector/inline-javascript-imports.py: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83040 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
rniwa@webkit.org authored
Reviewed by Eric Seidel. REGRESSION (r46914, r48764): When typing in Mail, line wrapping frequently occurs in the middle of words https://bugs.webkit.org/show_bug.cgi?id=57872 r46914 initially introduced a regression by replacing calls to styleAtPosition by editingStyleAtPosition because editingStyleAtPosition did not avoid tab span to obtain the computed style unlike styleAtPosition. r46914 also introduced a regression by cloning hierarchy under new block at the insertion position without avoiding the tab span. Fixed the both regressions by avoiding tab spans when computing the editing style and when cloning hierarchy. Test: editing/inserting/insert-paragraph-separator-tab-span.html * editing/EditingStyle.cpp: (WebCore::EditingStyle::init): Always avoid a tab span when computing the editing style. * editing/InsertParagraphSeparatorCommand.cpp: (WebCore::InsertParagraphSeparatorCommand::doApply): Avoid cloning tab spans and inserting a paragraph separator into a paragraph separator. 2011-04-06 Ryosuke Niwa <rniwa@webkit.org> Reviewed by Eric Seidel. REGRESSION (r46914, r48764): When typing in Mail, line wrapping frequently occurs in the middle of words https://bugs.webkit.org/show_bug.cgi?id=57872 Added a test insert a paragraph separator and text around tab spans. WebKit should not apply the tab span's style to the paragraph separator or the text. * editing/inserting/insert-paragraph-separator-tab-span-expected.txt: Added. * editing/inserting/insert-paragraph-separator-tab-span.html: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83039 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
leviw@chromium.org authored
Reviewed by Ryosuke Niwa. Add member functions for determining line/paragraph separation to InlineIterator https://bugs.webkit.org/show_bug.cgi?id=57938 Adding atTextParagraphSeparator and atParagraphSeparator inline convenience functions to InlineIterator, where it makes far more sense for them to be. Also moving shouldPreserveNewline to RenderObject and renaming it preservesNewline. No new tests as this provides no new functionality. * rendering/InlineIterator.h: (WebCore::InlineIterator::atTextParagraphSeparator): (WebCore::InlineIterator::atParagraphSeparator): * rendering/RenderBlockLineLayout.cpp: (WebCore::RenderBlock::requiresLineBox): (WebCore::RenderBlock::findNextLineBreak): * rendering/RenderObject.h: (WebCore::RenderObject::preservesNewline): git-svn-id: svn://svn.chromium.org/blink/trunk@83038 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
apavlov@chromium.org authored
Reviewed by Pavel Feldman. Web Inspector: Range insertNode function does not update content in the inspector https://bugs.webkit.org/show_bug.cgi?id=57829 * inspector/elements/modify-chardata-expected.txt: * inspector/elements/modify-chardata.html: 2011-04-05 Alexander Pavlov <apavlov@chromium.org> Reviewed by Pavel Feldman. Web Inspector: Range insertNode function does not update content in the inspector https://bugs.webkit.org/show_bug.cgi?id=57829 * inspector/InspectorDOMAgent.cpp: (WebCore::InspectorDOMAgent::pushChildNodesToFrontend): (WebCore::InspectorDOMAgent::buildArrayForContainerChildren): git-svn-id: svn://svn.chromium.org/blink/trunk@83037 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Reviewed by Kenneth Rohde Christiansen. [Qt] Improve tests for QWebFrame::url() and related methods https://bugs.webkit.org/show_bug.cgi?id=57865 * tests/qwebframe/tst_qwebframe.cpp: (FakeReply::FakeReply): make more URLs reply HostNotFound. We needed two different URLs in the test. (tst_QWebFrame::requestedUrlAfterSetAndLoadFailures): check the properties after an setUrl() that fails and a load() that fails (for a different URL). (tst_QWebFrame::setUrlWithFragment_data): (tst_QWebFrame::setUrlWithFragment): add other test cases similar to the original, but changing the URL in the frame before the test starts. (tst_QWebFrame::setUrlSameUrl): document existing behavior of calling setUrl() twice with the same URL as argument. (extractBaseUrl): (tst_QWebFrame::setUrlThenLoads_data): (tst_QWebFrame::setUrlThenLoads): check the URL related properties of the frame after a sequence of set and loads. Those tests are interesting because the properties react different to setUrl() and load(): 'requestedUrl' always change, 'url' only when setUrl() is used or after the load() is committed and baseUrl() is similar to url() but also depends on the contents of the page when it loads. git-svn-id: svn://svn.chromium.org/blink/trunk@83036 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Reviewed by Dirk Schulze. getComputedTextLength always returns 0 with tspan elements https://bugs.webkit.org/show_bug.cgi?id=19814 Add a testcase showing that getComputedTextLength for <tspan> works fine. * svg/text/tspan-getComputedTextLength-expected.txt: Added. * svg/text/tspan-getComputedTextLength.svg: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83035 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
alex@webkit.org authored
Fix GTK3 compilation after r82962. * platform/gtk/RenderThemeGtk3.cpp: (WebCore::paintToggle): (WebCore::renderButton): (WebCore::RenderThemeGtk::paintMenuList): (WebCore::RenderThemeGtk::paintTextField): (WebCore::RenderThemeGtk::paintSliderTrack): (WebCore::RenderThemeGtk::paintSliderThumb): (WebCore::RenderThemeGtk::paintProgressBar): (WebCore::paintSpinArrowButton): * platform/gtk/ScrollbarThemeGtk3.cpp: (WebCore::ScrollbarThemeGtk::paintTrackBackground): (WebCore::ScrollbarThemeGtk::paintScrollbarBackground): (WebCore::ScrollbarThemeGtk::paintThumb): (WebCore::ScrollbarThemeGtk::paintButton): git-svn-id: svn://svn.chromium.org/blink/trunk@83034 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
caseq@chromium.org authored
Reviewed by Yury Semikhatsky. Web Inspector: [Extensions API] remove inspectedPage.* events https://bugs.webkit.org/show_bug.cgi?id=57763 - Removed webInspector.inspectedPage.* events - moved onNavigated to webInspector.resources * inspector/front-end/ExtensionAPI.js: (WebInspector.injectedExtensionAPI): (WebInspector.injectedExtensionAPI.InspectedWindow): * inspector/front-end/ExtensionAPISchema.json: * inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype.notifyInspectedURLChanged): * inspector/front-end/inspector.js: (WebInspector.domContentEventFired): (WebInspector.loadEventFired): (WebInspector.inspectedURLChanged): 2011-04-06 Andrey Kosyakov <caseq@chromium.org> Reviewed by Yury Semikhatsky. Web Inspector: [Extensions API] remove inspectedPage.* events https://bugs.webkit.org/show_bug.cgi?id=57763 - Removed webInspector.inspectedPage.* events - moved onNavigated to webInspector.resources * http/tests/inspector/extensions-test.js: (initialize_ExtensionsTest.runWhenPageLoads): * http/tests/inspector/inspector-test.js: (initialize_InspectorTest.InspectorTest.runWhenPageLoads.chainedCallback): (initialize_InspectorTest.InspectorTest.runWhenPageLoads): * inspector/extensions/extensions-api-expected.txt: * inspector/extensions/extensions-events-expected.txt: * inspector/extensions/extensions-events.html: git-svn-id: svn://svn.chromium.org/blink/trunk@83033 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
joepeck@webkit.org authored
Reviewed by Antti Koivisto. Add <head> to the simpleUserAgentStyleSheet https://bugs.webkit.org/show_bug.cgi?id=57915 * css/CSSStyleSelector.cpp: (WebCore::elementCanUseSimpleDefaultStyle): add head to the simple stylesheet, display:none. git-svn-id: svn://svn.chromium.org/blink/trunk@83032 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
mnaganov@chromium.org authored
Reviewed by Pavel Feldman. Web Inspector: [Chromium] Add layout test for Summary view of detailed heap snapshots. https://bugs.webkit.org/show_bug.cgi?id=57856 Test: inspector/profiler/detailed-heapshots-summary.html * inspector/front-end/DataGrid.js: (WebInspector.DataGrid): * inspector/front-end/DetailedHeapshotGridNodes.js: (WebInspector.HeapSnapshotGridNode.prototype._populate.doPopulate): (WebInspector.HeapSnapshotGridNode.prototype._populate): (WebInspector.HeapSnapshotGridNode.prototype.populateChildren): (WebInspector.HeapSnapshotGridNode.prototype.sort.doSort): (WebInspector.HeapSnapshotGridNode.prototype.sort): (WebInspector.HeapSnapshotDiffNode.prototype.populateChildren): * inspector/front-end/DetailedHeapshotView.js: (WebInspector.HeapSnapshotSortableDataGrid.prototype.sortingChanged): * inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._finishHeapSnapshot.doParse): (WebInspector.ProfilesPanel.prototype._finishHeapSnapshot): 2011-04-05 Mikhail Naganov <mnaganov@chromium.org> Reviewed by Pavel Feldman. Web Inspector: [Chromium] Add layout test for Summary view of detailed heap snapshots. https://bugs.webkit.org/show_bug.cgi?id=57856 * http/tests/inspector/inspector-test.js: (initialize_InspectorTest.): (initialize_InspectorTest): * inspector/profiler/detailed-heapshots-summary-expected.txt: Added. * inspector/profiler/detailed-heapshots-summary.html: Added. * inspector/profiler/detailed-heapshots-test.js: Added. * platform/chromium/inspector/profiler/detailed-heapshots-summary-expected.txt: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83031 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
ojan@chromium.org authored
http://trac.webkit.org/changeset/83024 incorrectly removed the mac-leopard results. Instead, it should have moved the results from chromium-mac to chromium-mac-leopard. * platform/chromium-mac-leopard/fast/box-shadow/spread-multiple-inset-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-1-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-1-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-10-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-10-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-2-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-2-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-3-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-3-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-4-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-4-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-5-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-5-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-6-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-6-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-7-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-7-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-8-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-8-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-9-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-add-summary-9-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-no-summary1-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-no-summary2-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-no-summary3-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-no-summary4-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-open-javascript-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-open1-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-open2-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-open3-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-open4-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-open5-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-open6-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-position-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-1-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-1-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-2-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-2-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-3-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-3-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-4-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-4-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-5-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-5-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-6-and-click-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-remove-summary-6-expected.png: Added. * platform/chromium-mac-leopard/fast/html/details-writing-mode-expected.png: Added. * platform/chromium-mac-leopard/fast/inline-block/inline-block-vertical-align-expected.png: Added. * platform/chromium-mac-leopard/fast/multicol/layers-in-multicol-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/ruby-beforeafter-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/ruby-length-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/ruby-run-break-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/ruby-runs-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/ruby-runs-spans-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/ruby-trailing-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/rubyDOM-insert-rt-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/rubyDOM-insert-text1-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/rubyDOM-insert-text2-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/rubyDOM-insert-text3-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/rubyDOM-remove-rt1-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/rubyDOM-remove-rt2-expected.png: Added. * platform/chromium-mac-leopard/fast/ruby/rubyDOM-remove-text1-expected.png: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83030 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Reviewed by David Levin. [Qt] SmartReplaceQt.cpp has coding-style errors https://bugs.webkit.org/show_bug.cgi?id=40261 This patch does not require new test cases. * editing/qt/SmartReplaceQt.cpp: (WebCore::isCharacterSmartReplaceExempt): git-svn-id: svn://svn.chromium.org/blink/trunk@83029 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
zimmermann@webkit.org authored
Not reviewed. Add missing pixel test result. * platform/mac/svg/custom/use-in-symbol-with-offset-expected.checksum: Added. * platform/mac/svg/custom/use-in-symbol-with-offset-expected.png: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83028 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
koz@chromium.org authored
[chromium] Add expectations for failing GPU tests. https://bugs.webkit.org/show_bug.cgi?id=57926 * platform/chromium/test_expectations.txt: git-svn-id: svn://svn.chromium.org/blink/trunk@83027 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Reviewed by Ryosuke Niwa. REGRESSION(r81328): Null pointer crash in canAppendNewLineFeed when selection isn't inside an editable element https://bugs.webkit.org/show_bug.cgi?id=57755 * editing/execCommand/insert-line-break-onload-expected.txt: Added. * editing/execCommand/insert-line-break-onload.html: Added to check calling InsertLineBreak without any crash. 2011-04-06 Naoki Takano <takano.naoki@gmail.com> Reviewed by Ryosuke Niwa. REGRESSION(r81328): Null pointer crash in canAppendNewLineFeed when selection isn't inside an editable element https://bugs.webkit.org/show_bug.cgi?id=57755 Test: editing/execCommand/insert-line-break-onload.html * editing/TypingCommand.cpp: (WebCore::canAppendNewLineFeed): Added null pointer check for rootEditableElement(). git-svn-id: svn://svn.chromium.org/blink/trunk@83026 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
koz@chromium.org authored
[chromium] Rebaseline images after r82969 Rebaseline for missed linux test in r83019. * platform/chromium-linux/fast/css/text-input-with-webkit-border-radius-expected.checksum: Removed. * platform/chromium-linux/fast/css/text-input-with-webkit-border-radius-expected.png: git-svn-id: svn://svn.chromium.org/blink/trunk@83025 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
ojan@chromium.org authored
Reviewed by Ojan Vafai. [Chromium] Greening the Mac 10.5 and 10.6 trees. https://bugs.webkit.org/show_bug.cgi?id=57924 Rebaselines a bunch of tests with differences due to text anti-aliasing. (Prepared using rebaseline script) * platform/chromium-mac/fast/box-shadow/spread-multiple-inset-expected.checksum: Removed. * platform/chromium-mac/fast/box-shadow/spread-multiple-inset-expected.png: Removed. * platform/chromium-mac/fast/dom/HTMLMeterElement/meter-boundary-values-expected.png: Added. * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-1-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-10-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-2-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-3-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-4-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-5-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-6-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-7-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-8-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-add-summary-9-expected.png: Removed. * platform/chromium-mac/fast/html/details-no-summary1-expected.png: Removed. * platform/chromium-mac/fast/html/details-no-summary2-expected.png: Removed. * platform/chromium-mac/fast/html/details-no-summary3-expected.png: Removed. * platform/chromium-mac/fast/html/details-no-summary4-expected.png: Removed. * platform/chromium-mac/fast/html/details-open-javascript-expected.png: Removed. * platform/chromium-mac/fast/html/details-open1-expected.png: Removed. * platform/chromium-mac/fast/html/details-open2-expected.png: Removed. * platform/chromium-mac/fast/html/details-open3-expected.png: Removed. * platform/chromium-mac/fast/html/details-open4-expected.png: Removed. * platform/chromium-mac/fast/html/details-open5-expected.png: Removed. * platform/chromium-mac/fast/html/details-open6-expected.png: Removed. * platform/chromium-mac/fast/html/details-position-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-1-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-2-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-3-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-4-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-5-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.png: Removed. * platform/chromium-mac/fast/html/details-remove-summary-6-expected.png: Removed. * platform/chromium-mac/fast/html/details-writing-mode-expected.png: Removed. * platform/chromium-mac/fast/inline-block/inline-block-vertical-align-expected.checksum: Removed. * platform/chromium-mac/fast/inline-block/inline-block-vertical-align-expected.png: Removed. * platform/chromium-mac/fast/multicol/layers-in-multicol-expected.checksum: Removed. * platform/chromium-mac/fast/multicol/layers-in-multicol-expected.png: Removed. * platform/chromium-mac/fast/multicol/nested-columns-expected.checksum: Removed. * platform/chromium-mac/fast/multicol/nested-columns-expected.png: * platform/chromium-mac/fast/repaint/list-marker-expected.checksum: Removed. * platform/chromium-mac/fast/repaint/list-marker-expected.png: * platform/chromium-mac/fast/ruby/ruby-beforeafter-expected.png: Removed. * platform/chromium-mac/fast/ruby/ruby-length-expected.png: Removed. * platform/chromium-mac/fast/ruby/ruby-run-break-expected.png: Removed. * platform/chromium-mac/fast/ruby/ruby-runs-expected.png: Removed. * platform/chromium-mac/fast/ruby/ruby-runs-spans-expected.png: Removed. * platform/chromium-mac/fast/ruby/ruby-trailing-expected.png: Removed. * platform/chromium-mac/fast/ruby/rubyDOM-insert-rt-expected.png: Removed. * platform/chromium-mac/fast/ruby/rubyDOM-insert-text1-expected.png: Removed. * platform/chromium-mac/fast/ruby/rubyDOM-insert-text2-expected.png: Removed. * platform/chromium-mac/fast/ruby/rubyDOM-insert-text3-expected.png: Removed. * platform/chromium-mac/fast/ruby/rubyDOM-remove-rt1-expected.png: Removed. * platform/chromium-mac/fast/ruby/rubyDOM-remove-rt2-expected.png: Removed. * platform/chromium-mac/fast/ruby/rubyDOM-remove-text1-expected.png: Removed. * platform/chromium/test_expectations.txt: * platform/mac/fast/css/background-clip-values-expected.checksum: Added. * platform/mac/fast/css/background-clip-values-expected.png: Added. * platform/mac/fast/css/bidi-override-in-anonymous-block-expected.checksum: Added. * platform/mac/fast/css/bidi-override-in-anonymous-block-expected.png: Added. * platform/mac/fast/gradients/gradient-after-transparent-border-expected.checksum: Added. * platform/mac/fast/gradients/gradient-after-transparent-border-expected.png: Added. * platform/mac/fast/images/gray-scale-jpeg-with-color-profile-expected.checksum: Added. * platform/mac/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. * platform/mac/media/controls-without-preload-expected.checksum: Added. * platform/mac/media/controls-without-preload-expected.png: Added. git-svn-id: svn://svn.chromium.org/blink/trunk@83024 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Reviewed by David Levin. Added MediaTypeFile enum value to WebContextMenuData::MediaType. https://bugs.webkit.org/show_bug.cgi?id=57566 * public/WebContextMenuData.h: git-svn-id: svn://svn.chromium.org/blink/trunk@83023 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
antti@apple.com authored
Avoid calling currentTime() from FrameView::adjustedDeferredRepaintDelay() when repaints are deferred https://bugs.webkit.org/show_bug.cgi?id=57914 Reviewed by Cameron Zwarich. Don't call adjustedDeferredRepaintDelay unnecessarily. * page/FrameView.cpp: (WebCore::FrameView::repaintContentRectangle): (WebCore::FrameView::adjustedDeferredRepaintDelay): git-svn-id: svn://svn.chromium.org/blink/trunk@83022 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Unreviewed, rolling out r83007. http://trac.webkit.org/changeset/83007 https://bugs.webkit.org/show_bug.cgi?id=57920 Broke WebFrameTest.FrameForEnteredContext on Chromium-win and Chromium-mac (Requested by tkent on #webkit). * WebKit.gyp: * WebKit.gypi: * public/WebFrame.h: * src/WebFrameImpl.cpp: * tests/WebFrameTest.cpp: (WebKit::WebFrameTest::WebFrameTest): (WebKit::WebFrameTest::registerMockedURLLoad): (WebKit::WebFrameTest::serveRequests): (WebKit::TEST_F): git-svn-id: svn://svn.chromium.org/blink/trunk@83021 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-
commit-queue@webkit.org authored
Reviewed by David Levin. Update call to SkAdvancedTypefaceMetrics to new API. https://bugs.webkit.org/show_bug.cgi?id=57887 * platform/graphics/chromium/FontPlatformDataLinux.cpp: (WebCore::FontPlatformData::emSizeInFontUnits): git-svn-id: svn://svn.chromium.org/blink/trunk@83020 bbb929c8-8fbe-4397-9dbb-9b2b20218538
-