- 08 Feb, 2013 40 commits
-
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=109252 Patch by Seulgi Kim <seulgikim@company100.net> on 2013-02-08 Reviewed by Dirk Pranke. When opening the same files multiple with vim, vim creates a .*.sw[a-p] file as the swap file. * .gitignore: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142309 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 12. More fast tests. Too many to list. * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142308 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
roger_fong@apple.com authored
Remove all .user files. Add some build scripts to QTMovieWin that were forgotten about earlier. Update the OpenSource WebKit solution to include DumpRenderTree and related projects. * WebKit.vcxproj: Added properties svn:ignore, svn:ignore, svn:ignore, svn:ignore and svn:ignore. * WebKit.vcxproj/Interfaces: Added property svn:ignore. * WebKit.vcxproj/Interfaces/Interfaces.vcxproj.user: Removed. * WebKit.vcxproj/WebKit: Added property svn:ignore. * WebKit.vcxproj/WebKit.sln: * WebKit.vcxproj/WebKit/WebKit.vcxproj.user: Removed. * WebKit.vcxproj/WebKitExportGenerator: Added property svn:ignore. * WebKit.vcxproj/WebKitExportGenerator/WebKitExportGenerator.vcxproj.user: Removed. * WebKit.vcxproj/WebKitGUID: Added property svn:ignore. * WebKit.vcxproj/WebKitGUID/WebKitGUID.vcxproj.user: Removed. * WebCore.vcxproj: Added properties svn:ignore and svn:ignore. * WebCore.vcxproj/QTMovieWin: Added property svn:ignore. * WebCore.vcxproj/QTMovieWin/QTMovieWin.vcxproj.user: Removed. * WebCore.vcxproj/QTMovieWin/QTMovieWinPostBuild.cmd: Added. * WebCore.vcxproj/QTMovieWin/QTMovieWinPreBuild.cmd: Added. * WebCore.vcxproj/QTMovieWin/QTMovieWinPreLink.cmd: Added. * WebCore.vcxproj/WebCore.vcxproj.user: Removed. * WebCore.vcxproj/WebCoreGenerated.vcxproj.user: Removed. * JavaScriptCore.vcxproj: Added properties svn:ignore, svn:ignore, svn:ignore, svn:ignore, svn:ignore, svn:ignore, svn:ignore and svn:ignore. * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.user: Removed. * JavaScriptCore.vcxproj/JavaScriptCoreExportGenerator: Added property svn:ignore. * JavaScriptCore.vcxproj/JavaScriptCoreExportGenerator/JavaScriptCoreExportGenerator.vcxproj.user: Removed. * JavaScriptCore.vcxproj/JavaScriptCoreGenerated.vcxproj.user: Removed. * JavaScriptCore.vcxproj/LLInt/LLIntAssembly: Added property svn:ignore. * JavaScriptCore.vcxproj/LLInt/LLIntAssembly/LLIntAssembly.vcxproj.user: Removed. * JavaScriptCore.vcxproj/LLInt/LLIntDesiredOffsets: Added property svn:ignore. * JavaScriptCore.vcxproj/LLInt/LLIntDesiredOffsets/LLIntDesiredOffsets.vcxproj.user: Removed. * JavaScriptCore.vcxproj/LLInt/LLIntOffsetsExtractor: Added property svn:ignore. * JavaScriptCore.vcxproj/LLInt/LLIntOffsetsExtractor/LLIntOffsetsExtractor.vcxproj.user: Removed. * JavaScriptCore.vcxproj/jsc: Added property svn:ignore. * JavaScriptCore.vcxproj/jsc/jsc.vcxproj.user: Removed. * JavaScriptCore.vcxproj/testRegExp: Added property svn:ignore. * JavaScriptCore.vcxproj/testRegExp/testRegExp.vcxproj.user: Removed. * JavaScriptCore.vcxproj/testapi: Added property svn:ignore. * JavaScriptCore.vcxproj/testapi/testapi.vcxproj.user: Removed. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff: Added property svn:ignore. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin: Added property svn:ignore. * WinLauncher/WinLauncher.vcxproj: Added property svn:ignore. * WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj.user: Removed. * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.user: Removed. * WTF.vcxproj: Added property svn:ignore. * WTF.vcxproj/WTF.vcxproj.user: Removed. * WTF.vcxproj/WTFGenerated.vcxproj.user: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142307 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed gardening. * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142306 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=107190 Reviewed by Eric Seidel. Source/WebCore: This patch replaces the parser map with WeakPtr. We now use WeakPtrs to communicate from the main thread to the background thread. (We were already using WeakPtrs to communicate from the background thread to the main thread.) This change lets us remove a bunch of boilerplate code. * html/parser/BackgroundHTMLParser.cpp: (WebCore::BackgroundHTMLParser::BackgroundHTMLParser): (WebCore::BackgroundHTMLParser::stop): (WebCore): * html/parser/BackgroundHTMLParser.h: (WebCore::BackgroundHTMLParser::create): (BackgroundHTMLParser): * html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::didFailSpeculation): (WebCore::HTMLDocumentParser::startBackgroundParser): (WebCore::HTMLDocumentParser::stopBackgroundParser): (WebCore::HTMLDocumentParser::append): (WebCore::HTMLDocumentParser::finish): * html/parser/HTMLDocumentParser.h: (WebCore): (HTMLDocumentParser): Source/WTF: Add the ability to create an unbound weak reference. This facility lets you start sending messages to a WeakPtr on another thread before the object backing the WeakPtr has actually been created. * wtf/WeakPtr.h: (WTF::WeakReference::createUnbound): (WTF::WeakReference::bindTo): (WeakReference): (WTF::WeakReference::WeakReference): (WTF::WeakPtr::WeakPtr): (WeakPtr): (WTF::WeakPtrFactory::WeakPtrFactory): (WeakPtrFactory): (WTF::WeakPtrFactory::revokeAll): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142305 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 11. Some fast tests. Elided. * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142304 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
roger_fong@apple.com authored
DumpRenderTree, ImageDiff and TestNetscapePlugin projects, property sheets and resources for VS2010 solution. https://bugs.webkit.org/show_bug.cgi?id=107034. Reviewed by Brent Fulgham. * DumpRenderTree/DumpRenderTree.vcxproj: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj.filters: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeApple.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeCommon.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebug.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncher.vcxproj: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherCommon.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherDebug.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherRelease.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePostBuild.cmd: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePreBuild.cmd: Added. * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeRelease.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiff.vcxproj: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommon.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebug.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncher.vcxproj: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherCommon.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherDebug.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherRelease.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPostBuild.cmd: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPreBuild.cmd: Added. * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffRelease.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.def: Copied from DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.def. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.rc: Copied from DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj.filters: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginCommon.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginDebug.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPostBuild.cmd: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPreBuild.cmd: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginRelease.props: Added. * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/resource.h: Copied from DumpRenderTree/TestNetscapePlugIn/win/resource.h. * DumpRenderTree/TestNetscapePlugIn/Tests/win/CallJSThatDestroysPlugin.cpp: Copied from DumpRenderTree/TestNetscapePlugIn/win/CallJSThatDestroysPlugin.cpp. * DumpRenderTree/TestNetscapePlugIn/win/CallJSThatDestroysPlugin.cpp: Removed. VS2010 WebCore TestSupport project. * WebCore.vcxproj/WebCoreTestSupport.vcxproj: Added. * WebCore.vcxproj/WebCoreTestSupport.vcxproj.filters: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142303 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 10. Mac 10.6 results were wrong. This simplifies things a lot. * fast/repaint/scale-page-shrink-expected.png: Added. * platform/chromium-mac-snowleopard/fast/repaint/background-scaling-expected.png: * platform/chromium-mac-snowleopard/fast/repaint/scale-page-shrink-expected.png: * platform/chromium-mac-snowleopard/fast/repaint/transform-absolute-in-positioned-container-expected.png: * platform/chromium/fast/repaint/scale-page-shrink-expected.png: Removed. * platform/mac/fast/repaint/scale-page-shrink-expected.png: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142302 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 9. These were rebaselined earlier before all the bots were done. * platform/chromium-mac-lion/svg/batik/text/smallFonts-expected.png: * platform/chromium-mac-lion/svg/batik/text/textDecoration-expected.png: * platform/chromium-mac-lion/svg/batik/text/textFeatures-expected.png: * platform/chromium-mac-lion/svg/custom/shapes-supporting-markers-expected.png: * platform/chromium-mac-lion/svg/text/selection-styles-expected.png: * platform/chromium-mac-snowleopard/svg/batik/text/smallFonts-expected.png: * platform/chromium-mac-snowleopard/svg/batik/text/textDecoration-expected.png: * platform/chromium-mac-snowleopard/svg/batik/text/textFeatures-expected.png: * platform/chromium-mac/svg/batik/text/smallFonts-expected.png: * platform/chromium-mac/svg/batik/text/textDecoration-expected.png: * platform/chromium-mac/svg/batik/text/textFeatures-expected.png: * platform/chromium-mac/svg/custom/shapes-supporting-markers-expected.png: * platform/chromium-mac/svg/text/selection-styles-expected.png: * platform/chromium-win/svg/batik/text/smallFonts-expected.png: * platform/chromium-win/svg/batik/text/textDecoration-expected.png: * platform/chromium-win/svg/batik/text/textFeatures-expected.png: * platform/chromium-win/svg/custom/shapes-supporting-markers-expected.png: * platform/chromium-win/svg/text/selection-styles-expected.png: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142301 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 8. Outstanding mac failure. * editing/input/reveal-caret-of-multiline-input-expected.txt: Added. * platform/chromium-mac-lion/editing/input/reveal-caret-of-multiline-input-expected.txt: Added. * platform/chromium/editing/input/reveal-caret-of-multiline-input-expected.txt: Removed. * platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142300 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 7. Outstanding failing linux tests * platform/chromium-linux-x86/fast/forms/button-generated-content-expected.png: Removed. * platform/chromium-linux-x86/fast/forms/button-inner-block-reuse-expected.png: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142299 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=109003 Patch by Martin Robinson <mrobinson@igalia.com> on 2013-02-08 Reviewed by Gustavo Noronha Silva. Source/JavaScriptCore: * JavaScriptCore.gypi: Update the list of source files to include those necessary for the GTK+ build. Source/WebKit/gtk: Add an experimental gyp build for WebKitGTK+. Currently only libjavascriptcoregtk, jsc, and minidom build (and only on platforms for that support bash). To use the build simply run: $ gyp --generator-output=build --depth=. Source/WebKit/gtk/gyp/JavaScriptCore.gyp Then enter the build directory and run make. * gyp/Configuration.gypi: Added. * gyp/JavaScriptCore.gyp: Added. * gyp/WTF.gyp: Added. * gyp/generate-derived-sources.sh: Added. Source/WTF: * WTF.gyp/WTF.gyp: Filter out MetaAllocator.(cpp/h) from the Chromium build. It's only necessary for GTK+. * WTF.gypi: Add MetaAllocator to the build for WebKitGTK+. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142298 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=109304 Patch by ChangSeok Oh <shivamidow@gmail.com> on 2013-02-08 Reviewed by Gustavo Noronha Silva. This patch cleans up GraphicsLayerActor functions by using new clutter apis and makes existing functions simple & readable. No new tests since no change in functionality * platform/graphics/clutter/GraphicsLayerActor.cpp: (_GraphicsLayerActorPrivate): (graphicsLayerActorApplyTransform): (graphicsLayerActorPaint): (graphicsLayerActorDraw): (graphicsLayerActorUpdateTexture): (drawLayerContents): (graphicsLayerActorNew): (graphicsLayerActorInvalidateRectangle): (graphicsLayerActorSetTransform): (graphicsLayerActorSetAnchorPoint): (graphicsLayerActorGetAnchorPoint): (graphicsLayerActorSetScrollPosition): * platform/graphics/clutter/PlatformClutterAnimation.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142297 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 6. Outstanding failing linux tests * platform/chromium-linux/fast/writing-mode/japanese-rl-text-expected.png: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142296 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 5. Editing expectations. File list truncated to remove the hundreds of files that have been updated. * platform/chromium/TestExpectations: Removed the temp expectations and re-added one mac failure case * platform/efl-wk1/editing/selection: Added. * platform/efl-wk1/editing/selection/move-by-character-6-expected.png: Added. * platform/efl/editing/selection/move-by-character-6-expected.png: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142295 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kadam@inf.u-szeged.hu authored
* platform/qt/fast/block/float/024-expected.txt: Update after r142280. * platform/qt/fast/block/margin-collapse/empty-clear-blocks-expected.txt: Update after r142280. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142294 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
senorblanco@chromium.org authored
[chromium] Unreviewed gardening. Remove effect-reference-hw from test expectations, since it's now passing. https://bugs.webkit.org/show_bug.cgi?id=104289 * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142291 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=109272 Reviewed by Kentaro Hara. Source/WebKit/chromium: We enabled this flag for desktop Chromium, but disabled the feature by a runtime flag. We disables the compile flag too because we have no plan to ship it in near future. * features.gypi: Remove ENABLE_INPUT_TYPE_DATETIME. LayoutTests: * platform/chromium/TestExpectations: Skip fast/forms/datetime and datetime-multiple-fields git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142290 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
RTCPeerConnection.getStats() failed when remote stats were instantiated. https://bugs.webkit.org/show_bug.cgi?id=109292 Patch by Harald Alvestrand <hta@google.com> on 2013-02-08 Reviewed by Adam Barth. Tested by extending the existing mock's behaviour. * Modules/mediastream/RTCStatsReport.cpp: (WebCore::RTCStatsReport::addElement): Tools: Fix and test for missing return RTCPeerConnection.getStats() fails when remote stats are instantiated. https://bugs.webkit.org/show_bug.cgi?id=109292 Patch by Harald Alvestrand <hta@google.com> on 2013-02-08 Reviewed by Adam Barth. * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp: (MockWebRTCPeerConnectionHandler::getStats): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142289 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tommyw@google.com authored
https://bugs.webkit.org/show_bug.cgi?id=109296 Reviewed by Adam Barth. Source/Platform: * Platform.gypi: * chromium/public/WebMediaStreamComponent.h: Removed. * chromium/public/WebMediaStreamDescriptor.h: Removed. Tools: * DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.cpp: (MockWebRTCDTMFSenderHandler::MockWebRTCDTMFSenderHandler): * DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.h: (MockWebRTCDTMFSenderHandler): * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp: (MockWebRTCPeerConnectionHandler::createDTMFSender): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142288 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=109093 Refactoring to create more flexible version of isAutosizingCluster since there're more types of autosizing cluster now: narrower than the parent cluster, wider than the parent cluster and the one that doesn't depend on the parent cluster. Patch by Anton Vayvod <avayvod@chromium.org> on 2013-02-08 Reviewed by Kenneth Rohde Christiansen. Refactoring, no test changes. * rendering/TextAutosizer.cpp: (WebCore::TextAutosizer::isNarrowDescendant): Separate check for the container to be of the narrow-descendant type. Was a part of isAutosizingCluster(). (WebCore::TextAutosizer::isWiderDescendant): Separate check for the container to be of the wider-descendant type. Was a part of isAutosizingCluster(). (WebCore::TextAutosizer::isIndependentDescendant): Separate check for the container to be autosized separately from the ancestor cluster. Checks for conditions independent of the aforementioned cluster. (WebCore::TextAutosizer::isAutosizingCluster): Handy method to check all separate conditions together. (WebCore::TextAutosizer::processSubtree): (WebCore::TextAutosizer::processCluster): (WebCore::TextAutosizer::processContainer): (WebCore::TextAutosizer::clusterShouldBeAutosized): (WebCore::TextAutosizer::measureDescendantTextWidth): (WebCore::TextAutosizer::findFirstTextLeafNotInCluster): The methods above were updated to use new functions/arguments. * rendering/TextAutosizer.h: Updated/added method definitions. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142287 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 4. CSS expectations. * platform/chromium-linux-x86/css1/box_properties: Removed. * platform/chromium-linux-x86/css1/box_properties/acid_test-expected.png: Removed. * platform/chromium-linux-x86/css2.1/t09-c5526c-display-00-e-expected.png: Removed. * platform/chromium-linux-x86/css3/images: Removed. * platform/chromium-linux-x86/css3/images/cross-fade-overflow-position-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/html: Removed. * platform/chromium-linux-x86/css3/selectors3/html/css3-modsel-161-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/html/css3-modsel-19b-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/html/css3-modsel-25-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/html/css3-modsel-64-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/html/css3-modsel-70-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xhtml: Removed. * platform/chromium-linux-x86/css3/selectors3/xhtml/css3-modsel-161-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xhtml/css3-modsel-25-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xhtml/css3-modsel-64-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xhtml/css3-modsel-70-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xml/css3-modsel-161-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xml/css3-modsel-19b-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xml/css3-modsel-25-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xml/css3-modsel-64-expected.png: Removed. * platform/chromium-linux-x86/css3/selectors3/xml/css3-modsel-70-expected.png: Removed. * platform/chromium-linux/compositing/overflow/theme-affects-visual-overflow-expected.png: * platform/chromium-linux/compositing/video/video-controls-layer-creation-expected.png: * platform/chromium-linux/css1/box_properties/acid_test-expected.png: * platform/chromium-linux/css2.1/t0505-c16-descendant-01-e-expected.png: * platform/chromium-linux/css2.1/t09-c5526c-display-00-e-expected.png: * platform/chromium-linux/css3/images/cross-fade-overflow-position-expected.png: Removed. * platform/chromium-linux/css3/masking/clip-path-circle-filter-expected.png: * platform/chromium-linux/css3/masking/clip-path-circle-overflow-expected.png: * platform/chromium-linux/css3/masking/clip-path-ellipse-expected.png: * platform/chromium-linux/css3/selectors3/html/css3-modsel-161-expected.png: * platform/chromium-linux/css3/selectors3/html/css3-modsel-19b-expected.png: * platform/chromium-linux/css3/selectors3/html/css3-modsel-25-expected.png: * platform/chromium-linux/css3/selectors3/html/css3-modsel-64-expected.png: * platform/chromium-linux/css3/selectors3/html/css3-modsel-70-expected.png: * platform/chromium-linux/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Added. * platform/chromium-linux/css3/selectors3/xhtml/css3-modsel-161-expected.png: * platform/chromium-linux/css3/selectors3/xhtml/css3-modsel-19b-expected.png: * platform/chromium-linux/css3/selectors3/xhtml/css3-modsel-25-expected.png: * platform/chromium-linux/css3/selectors3/xhtml/css3-modsel-64-expected.png: * platform/chromium-linux/css3/selectors3/xhtml/css3-modsel-70-expected.png: * platform/chromium-linux/css3/selectors3/xml/css3-modsel-161-expected.png: * platform/chromium-linux/css3/selectors3/xml/css3-modsel-19b-expected.png: * platform/chromium-linux/css3/selectors3/xml/css3-modsel-25-expected.png: * platform/chromium-linux/css3/selectors3/xml/css3-modsel-64-expected.png: * platform/chromium-linux/css3/selectors3/xml/css3-modsel-70-expected.png: * platform/chromium-mac-lion/compositing/video/video-controls-layer-creation-expected.png: * platform/chromium-mac-lion/css2.1/t0505-c16-descendant-01-e-expected.png: * platform/chromium-mac-lion/css3/images: Removed. * platform/chromium-mac-lion/css3/images/cross-fade-overflow-position-expected.png: Removed. * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Added. * platform/chromium-mac-snowleopard/compositing/video/video-controls-layer-creation-expected.png: * platform/chromium-mac-snowleopard/css2.1/t0505-c16-descendant-01-e-expected.png: * platform/chromium-mac-snowleopard/css3/images/cross-fade-overflow-position-expected.png: Removed. * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Added. * platform/chromium-mac/compositing/video/video-controls-layer-creation-expected.png: * platform/chromium-mac/css2.1/t0505-c16-descendant-01-e-expected.png: * platform/chromium-mac/css2.1/t0505-c16-descendant-01-e-expected.txt: Added. * platform/chromium-mac/css3/images/cross-fade-overflow-position-expected.png: * platform/chromium-mac/css3/masking/clip-path-circle-filter-expected.png: * platform/chromium-mac/css3/masking/clip-path-circle-overflow-expected.png: * platform/chromium-mac/css3/masking/clip-path-ellipse-expected.png: * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-15c-expected.png: * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: * platform/chromium-mac/css3/selectors3/xml/css3-modsel-15c-expected.png: * platform/chromium-mac/css3/selectors3/xml/css3-modsel-15c-expected.txt: * platform/chromium-win-xp/css3/images: Removed. * platform/chromium-win-xp/css3/images/cross-fade-overflow-position-expected.png: Removed. * platform/chromium-win-xp/css3/selectors3: Removed. * platform/chromium-win/compositing/video/video-controls-layer-creation-expected.png: * platform/chromium-win/css2.1/t0505-c16-descendant-01-e-expected.png: * platform/chromium-win/css2.1/t0505-c16-descendant-01-e-expected.txt: * platform/chromium-win/css3/images/cross-fade-overflow-position-expected.png: * platform/chromium-win/css3/masking/clip-path-circle-filter-expected.png: * platform/chromium-win/css3/masking/clip-path-circle-overflow-expected.png: * platform/chromium-win/css3/masking/clip-path-ellipse-expected.png: * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Added. * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Added. * platform/chromium/TestExpectations: * platform/chromium/css2.1/t0505-c16-descendant-01-e-expected.txt: Removed. * platform/chromium/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Removed. * platform/chromium/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142286 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=108631 Patch by Tomas Popela <tpopela@redhat.com> on 2013-02-08 Reviewed by Martin Robinson. Include files from DerivedSources/webkitdom for introspection * /Source/WebKit/gtk/GNUmakefile.am: * /Source/WebKit2/GNUmakefile.am: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142285 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mrobinson@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=109246 Reviewed by Philippe Normand. Split up configure.ac into sections based on different "phases" of configuration. This should make it easier to find what you are looking for as well as creating a "right" place to put things. A nice side effect of this is that we can share the different modules with a gyp build. * Source/autotools/CheckSystemAndBasicDependencies.m4: Added. * Source/autotools/FindDependencies.m4: Added. * Source/autotools/PrintBuildConfiguration.m4: Added. * Source/autotools/ReadCommandLineArguments.m4: Added. * Source/autotools/SetupAutoconfHeader.m4: Added. * Source/autotools/SetupAutomake.m4: Added. * Source/autotools/SetupCompilerFlags.m4: Added. * Source/autotools/SetupLibtool.m4: Added. * Source/autotools/Versions.m4: Added. * configure.ac: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142284 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
vsevik@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=109301 Reviewed by Alexander Pavlov. * inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype._onGetPageResources): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142283 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 3. Remaining expected failures that had platform-specific supppressions * platform/chromium-linux-x86/fast/dom/HTMLMeterElement/meter-optimums-expected.png: Removed. * platform/chromium-linux-x86/fast/gradients/css3-linear-angle-gradients-expected.png: Removed. * platform/chromium-linux/fast/css/background-clip-radius-values-expected.png: * platform/chromium-linux/fast/css/nested-rounded-corners-expected.png: * platform/chromium-linux/fast/dom/HTMLMeterElement/meter-optimums-expected.png: * platform/chromium-linux/fast/frames/iframe-scaling-with-scroll-expected.png: * platform/chromium-linux/fast/gradients/css3-linear-angle-gradients-expected.png: * platform/chromium-linux/fast/replaced/border-radius-clip-content-edge-expected.png: * platform/chromium-mac-lion/editing/pasteboard/emacs-cntl-y-001-expected.png: Added. * platform/chromium-mac-lion/editing/pasteboard/emacs-ctrl-a-k-y-expected.png: Added. * platform/chromium-mac-lion/fast/css/nested-rounded-corners-expected.png: * platform/chromium-mac-lion/fast/dom/52776-expected.png: * platform/chromium-mac-lion/fast/frames/iframe-scaling-with-scroll-expected.png: * platform/chromium-mac-lion/fast/gradients/css3-linear-angle-gradients-expected.png: Removed. * platform/chromium-mac-snowleopard/fast/css/nested-rounded-corners-expected.png: * platform/chromium-mac-snowleopard/fast/dom/52776-expected.png: * platform/chromium-mac-snowleopard/fast/gradients/css3-linear-angle-gradients-expected.png: Removed. * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png: Removed. * platform/chromium-mac/editing/pasteboard/emacs-cntl-y-001-expected.png: Added. * platform/chromium-mac/editing/pasteboard/emacs-ctrl-a-k-y-expected.png: Added. * platform/chromium-mac/fast/css/background-clip-radius-values-expected.png: * platform/chromium-mac/fast/css/nested-rounded-corners-expected.png: * platform/chromium-mac/fast/dom/52776-expected.png: * platform/chromium-mac/fast/gradients/css3-linear-angle-gradients-expected.png: * platform/chromium-mac/fast/replaced/border-radius-clip-content-edge-expected.png: Added. * platform/chromium-mac/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png: * platform/chromium-win-xp/fast/dom/HTMLMeterElement/meter-optimums-expected.png: Removed. * platform/chromium-win-xp/fast/gradients/css3-linear-angle-gradients-expected.png: Removed. * platform/chromium-win/fast/css/background-clip-radius-values-expected.png: * platform/chromium-win/fast/css/nested-rounded-corners-expected.png: * platform/chromium-win/fast/dom/HTMLMeterElement/meter-optimums-expected.png: * platform/chromium-win/fast/gradients/css3-linear-angle-gradients-expected.png: * platform/chromium-win/fast/replaced/border-radius-clip-content-edge-expected.png: Added. * platform/chromium/TestExpectations: * platform/chromium/editing/pasteboard/emacs-cntl-y-001-expected.png: Removed. * platform/chromium/editing/pasteboard/emacs-ctrl-a-k-y-expected.png: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142282 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
yurys@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=108821 Reviewed by Alexander Pavlov. Removed Memory.getDOMNodeCount command from the protocol. Memory.getDOMCounters should be used instead. * inspector/Inspector.json: * inspector/InspectorMemoryAgent.cpp: * inspector/InspectorMemoryAgent.h: (InspectorMemoryAgent): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142281 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kadam@inf.u-szeged.hu authored
* platform/qt/TestExpectations: * platform/qt/svg/css/arrow-with-shadow-expected.png: * platform/qt/svg/css/arrow-with-shadow-expected.txt: * platform/qt/svg/css/clippath-with-shadow-expected.png: * platform/qt/svg/css/clippath-with-shadow-expected.txt: * platform/qt/svg/css/composite-shadow-text-expected.png: * platform/qt/svg/custom/simple-text-double-shadow-expected.png: * platform/qt/svg/custom/simple-text-double-shadow-expected.txt: * platform/qt/svg/repaint/repaint-webkit-svg-shadow-expected.png: Copied from LayoutTests/platform/qt/svg/css/clippath-with-shadow-expected.png. * platform/qt/svg/repaint/repaint-webkit-svg-shadow-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142280 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 2. Failing Linux tests with no expectations * platform/chromium-linux/fast/forms/button-generated-content-expected.png: * platform/chromium-linux/fast/forms/button-inner-block-reuse-expected.png: * platform/chromium-linux/fast/repaint/japanese-rl-selection-clear-expected.png: * platform/chromium-linux/fast/repaint/japanese-rl-selection-repaint-expected.png: * platform/chromium-linux/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.png: * platform/chromium-linux/fast/text/justify-ideograph-vertical-expected.png: * platform/chromium-linux/fast/writing-mode/border-vertical-lr-expected.png: * platform/chromium-linux/fast/writing-mode/japanese-lr-selection-expected.png: * platform/chromium-linux/fast/writing-mode/japanese-lr-text-expected.png: * platform/chromium-linux/fast/writing-mode/japanese-rl-selection-expected.png: * platform/chromium-linux/svg/batik/text/smallFonts-expected.png: * platform/chromium-linux/svg/batik/text/textDecoration-expected.png: * platform/chromium-linux/svg/batik/text/textFeatures-expected.png: * platform/chromium-linux/svg/custom/shapes-supporting-markers-expected.png: * platform/chromium-linux/svg/text/selection-styles-expected.png: * platform/efl-wk2/fast/repaint: Added. * platform/efl-wk2/fast/repaint/japanese-rl-selection-clear-expected.png: Added. * platform/efl/fast/repaint/japanese-rl-selection-clear-expected.png: Removed. * platform/efl/svg/batik/text/textDecoration-expected.png: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142279 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
yurys@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=109299 Reviewed by Vsevolod Vlasov. Extracted functionality specific to DOM counter graphs drawing into separate methods on MemoryStatistics class. Introduced CounterUIBase base class for DOMCounterUI that contains functionality which can be shared with native memory graph. * inspector/front-end/MemoryStatistics.js: (WebInspector.MemoryStatistics): (WebInspector.CounterUIBase): (WebInspector.CounterUIBase.prototype.updateCurrentValue): (WebInspector.CounterUIBase.prototype.clearCurrentValueAndMarker): (WebInspector.CounterUIBase.prototype.get visible): (WebInspector.DOMCounterUI): (WebInspector.DOMCounterUI.prototype.discardImageUnderMarker): (WebInspector.MemoryStatistics.prototype._onMouseOut): (WebInspector.MemoryStatistics.prototype._clearCurrentValueAndMarker): (WebInspector.MemoryStatistics.prototype._refreshCurrentValues): (WebInspector.MemoryStatistics.prototype._updateCurrentValue): (WebInspector.MemoryStatistics.prototype._highlightCurrentPositionOnGraphs): (WebInspector.MemoryStatistics.prototype._restoreImageUnderMarker): (WebInspector.MemoryStatistics.prototype._saveImageUnderMarker): (WebInspector.MemoryStatistics.prototype._drawMarker): (WebInspector.MemoryStatistics.prototype._clear): (WebInspector.MemoryStatistics.prototype._discardImageUnderMarker): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142278 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. Round 1. Some tests that have existing expectations. * editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Added. * fast/repaint/transform-absolute-in-positioned-container-expected.txt: Added. * platform/chromium-linux-x86/editing/input: Removed. * platform/chromium-linux/editing/input/caret-at-the-edge-of-contenteditable-expected.png: * platform/chromium-linux/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: * platform/chromium-linux/editing/input/reveal-caret-of-multiline-input-expected.png: * platform/chromium-linux/fast/repaint/transform-absolute-in-positioned-container-expected.png: * platform/chromium-mac-lion/editing/input/caret-at-the-edge-of-contenteditable-expected.png: * platform/chromium-mac-lion/editing/input/caret-at-the-edge-of-input-expected.png: * platform/chromium-mac-lion/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: * platform/chromium-mac-lion/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: Added. * platform/chromium-mac-lion/editing/input/reveal-caret-of-multiline-input-expected.png: * platform/chromium-mac-snowleopard/editing/input/caret-at-the-edge-of-contenteditable-expected.png: * platform/chromium-mac-snowleopard/editing/input/caret-at-the-edge-of-input-expected.png: * platform/chromium-mac-snowleopard/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: * platform/chromium-mac-snowleopard/editing/input/reveal-caret-of-multiline-input-expected.png: * platform/chromium-mac/editing/input/caret-at-the-edge-of-contenteditable-expected.png: * platform/chromium-mac/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Added. * platform/chromium-mac/editing/input/caret-at-the-edge-of-input-expected.png: * platform/chromium-mac/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: * platform/chromium-mac/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: Added. * platform/chromium-mac/editing/input/reveal-caret-of-multiline-input-expected.png: * platform/chromium-win-xp/editing/input: Removed. * platform/chromium-win/editing/input/caret-at-the-edge-of-contenteditable-expected.png: * platform/chromium-win/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: * platform/chromium-win/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: * platform/chromium-win/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: * platform/chromium-win/editing/input/reveal-caret-of-multiline-input-expected.png: * platform/chromium-win/editing/input/reveal-caret-of-multiline-input-expected.txt: * platform/chromium-win/fast/repaint/transform-absolute-in-positioned-container-expected.png: * platform/chromium/TestExpectations: * platform/chromium/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Removed. * platform/efl-wk1/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Removed. * platform/efl-wk2/editing/input: Added. * platform/efl-wk2/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Added. * platform/efl/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Removed. * platform/gtk/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142277 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kadam@inf.u-szeged.hu authored
https://bugs.webkit.org/show_bug.cgi?id=109209. * platform/qt/TestExpectations: * platform/qt/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Added after r142152. * platform/qt/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt: Added after r142152. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142276 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kadam@inf.u-szeged.hu authored
https://bugs.webkit.org/show_bug.cgi?id=109291. * platform/qt-5.0-wk2/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142274 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed expectations update. These are tests that failed due to bad expectations. * platform/chromium-linux/fast/writing-mode/japanese-rl-text-with-broken-font-expected.png: * platform/chromium-mac-lion/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png: * platform/chromium-mac-lion/svg/as-background-image/svg-as-background-5-expected.png: * platform/chromium-mac-snowleopard/svg/as-background-image/svg-as-background-5-expected.png: * platform/chromium-mac/platform/chromium/rubberbanding/custom-scrollbars-ne-expected.png: Added. * platform/chromium-mac/platform/chromium/rubberbanding/custom-scrollbars-nw-expected.png: Added. * platform/chromium-mac/platform/chromium/rubberbanding/custom-scrollbars-se-expected.png: Added. * platform/chromium-mac/platform/chromium/rubberbanding/custom-scrollbars-sw-expected.png: Added. * platform/chromium-mac/platform/chromium/rubberbanding/overhang-ne-expected.png: Added. * platform/chromium-mac/platform/chromium/rubberbanding/overhang-nw-expected.png: Added. * platform/chromium-mac/platform/chromium/rubberbanding/overhang-se-expected.png: Added. * platform/chromium-mac/platform/chromium/rubberbanding/overhang-sw-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-ne-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-ne-expected.txt: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-nw-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-nw-expected.txt: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-se-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-se-expected.txt: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-sw-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/custom-scrollbars-sw-expected.txt: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-ne-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-ne-expected.txt: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-nw-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-nw-expected.txt: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-se-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-se-expected.txt: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-sw-expected.png: Added. * platform/chromium-win/platform/chromium/rubberbanding/overhang-sw-expected.txt: Added. * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png: * platform/chromium-win/svg/W3C-SVG-1.1/linking-a-04-t-expected.png: * platform/chromium-win/svg/as-background-image/svg-as-background-5-expected.png: * platform/chromium-win/svg/custom/embedding-external-svgs-expected.png: * platform/chromium-win/svg/custom/pointer-events-text-expected.png: * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142273 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed gardening. * platform/chromium/TestExpectations: Last of the Win failures. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142272 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mkwst@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=108771 Reviewed by Eric Seidel. In cases where the ExceptionCode passed into a function is completely ignored, this patch replaces it with a new IGNORE_EXCEPTION macro. This makes our expectations about possible exceptions (or lack thereof) explicit, rather than relying on implicit assumptions about whether a variable is intentionally uninitialized or not. It also removes knowledge about the internals of ExceptionCodes (that they're currently ints, for instance) from code that shouldn't care, which will help with future refactorings. The implementation is entirely based upon ASSERT_NO_EXCEPTION, and shouldn't have any visible effect on the web. As long as all the current tests pass, we're good. * Modules/indexeddb/IDBRequest.cpp: (WebCore::IDBRequest::dispatchEvent): (WebCore::IDBRequest::uncaughtExceptionInEventHandler): * Modules/indexeddb/IDBTransaction.cpp: (WebCore::IDBTransaction::stop): * Modules/websockets/WebSocketChannel.cpp: (WebCore::WebSocketChannel::processBuffer): * dom/Document.cpp: (WebCore::Document::processHttpEquiv): * dom/ExceptionCodePlaceholder.h: (WebCore): * dom/Node.cpp: (WebCore::Node::normalize): * dom/Text.cpp: (WebCore::Text::replaceWholeText): * editing/AlternativeTextController.cpp: (WebCore::AlternativeTextController::insertDictatedText): * editing/AppendNodeCommand.cpp: (WebCore::AppendNodeCommand::doApply): (WebCore::AppendNodeCommand::doUnapply): * editing/CompositeEditCommand.cpp: (WebCore::CompositeEditCommand::insertNewDefaultParagraphElementAt): * editing/DeleteFromTextNodeCommand.cpp: (WebCore::DeleteFromTextNodeCommand::doUnapply): * editing/Editor.cpp: (WebCore::dispatchEditableContentChangedEvents): (WebCore::Editor::applyEditingStyleToElement): * editing/EditorCommand.cpp: (WebCore::executeFormatBlock): * editing/FormatBlockCommand.cpp: (WebCore::FormatBlockCommand::elementForFormatBlockCommand): * editing/InsertIntoTextNodeCommand.cpp: (WebCore::InsertIntoTextNodeCommand::doApply): (WebCore::InsertIntoTextNodeCommand::doUnapply): * editing/InsertListCommand.cpp: (WebCore::InsertListCommand::doApplyForSingleParagraph): * editing/InsertNodeBeforeCommand.cpp: (WebCore::InsertNodeBeforeCommand::doApply): (WebCore::InsertNodeBeforeCommand::doUnapply): * editing/RemoveCSSPropertyCommand.cpp: (WebCore::RemoveCSSPropertyCommand::doApply): (WebCore::RemoveCSSPropertyCommand::doUnapply): * editing/RemoveNodeCommand.cpp: (WebCore::RemoveNodeCommand::doApply): (WebCore::RemoveNodeCommand::doUnapply): * editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::removeRedundantStylesAndKeepStyleSpanInline): * editing/TextIterator.cpp: (WebCore::TextIterator::getLocationAndLengthFromRange): * editing/WrapContentsInDummySpanCommand.cpp: (WebCore::WrapContentsInDummySpanCommand::executeApply): (WebCore::WrapContentsInDummySpanCommand::doUnapply): * editing/htmlediting.cpp: (WebCore::comparePositions): * editing/markup.cpp: (WebCore::highestAncestorToWrapMarkup): * html/FTPDirectoryDocument.cpp: (WebCore::FTPDirectoryDocumentParser::appendEntry): (WebCore::FTPDirectoryDocumentParser::createTDForFilename): (WebCore::FTPDirectoryDocumentParser::loadDocumentTemplate): (WebCore::FTPDirectoryDocumentParser::createBasicDocument): * html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::rewind): (WebCore::HTMLMediaElement::returnToRealtime): (WebCore::HTMLMediaElement::playInternal): (WebCore::HTMLMediaElement::percentLoaded): (WebCore::HTMLMediaElement::mediaPlayerTimeChanged): (WebCore::HTMLMediaElement::mediaPlayerDurationChanged): (WebCore::HTMLMediaElement::applyMediaFragmentURI): * html/HTMLOutputElement.cpp: (WebCore::HTMLOutputElement::setTextContentInternal): * html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::remove): * html/HTMLTableElement.cpp: (WebCore::HTMLTableElement::createTHead): (WebCore::HTMLTableElement::deleteTHead): (WebCore::HTMLTableElement::createTFoot): (WebCore::HTMLTableElement::deleteTFoot): (WebCore::HTMLTableElement::createCaption): (WebCore::HTMLTableElement::deleteCaption): * html/HTMLTextAreaElement.cpp: (WebCore::HTMLTextAreaElement::setDefaultValue): * html/ImageDocument.cpp: (WebCore::ImageDocument::createDocumentStructure): * html/InputType.cpp: (WebCore::InputType::stepUpFromRenderer): * html/MediaController.cpp: (MediaController::bringElementUpToSpeed): (MediaController::asyncEventTimerFired): * html/MediaDocument.cpp: (WebCore::MediaDocumentParser::createDocumentStructure): (WebCore::MediaDocument::replaceMediaElementTimerFired): * html/PluginDocument.cpp: (WebCore::PluginDocumentParser::createDocumentStructure): * html/RangeInputType.cpp: (WebCore::RangeInputType::handleKeydownEvent): * html/TimeRanges.cpp: (TimeRanges::contain): (TimeRanges::nearest): * html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::drawImageFromRect): * html/shadow/MediaControlElementTypes.cpp: (WebCore::MediaControlSeekButtonElement::seekTimerFired): * html/shadow/MediaControlElements.cpp: (WebCore::MediaControlPanelElement::setPosition): (WebCore::MediaControlPanelElement::resetPosition): (WebCore::MediaControlStatusDisplayElement::update): (WebCore::MediaControlRewindButtonElement::defaultEventHandler): (WebCore::MediaControlTimelineElement::defaultEventHandler): * html/shadow/MediaControls.cpp: (WebCore::MediaControls::updateCurrentTimeDisplay): (WebCore::MediaControls::createTextTrackDisplay): * html/shadow/MediaControlsApple.cpp: (WebCore::MediaControlsApple::updateCurrentTimeDisplay): * html/shadow/MediaControlsBlackBerry.cpp: (WebCore::MediaControlEmbeddedPanelElement::setPosition): (WebCore::MediaControlEmbeddedPanelElement::resetPosition): (WebCore::MediaControlFullscreenTimelineElement::defaultEventHandler): (WebCore::MediaControlsBlackBerry::updateCurrentTimeDisplay): * html/shadow/MediaControlsChromium.cpp: (WebCore::MediaControlsChromium::updateCurrentTimeDisplay): * html/track/InbandTextTrack.cpp: (WebCore::InbandTextTrack::addGenericCue): * inspector/InspectorCSSAgent.cpp: (WebCore::InspectorCSSAgent::buildArrayForMatchedRuleList): * inspector/InspectorHistory.cpp: (WebCore::InspectorHistory::markUndoableState): * inspector/InspectorResourceAgent.cpp: (WebCore::InspectorResourceAgent::replayXHR): * page/ContextMenuController.cpp: (WebCore::ContextMenuController::contextMenuItemSelected): * page/DOMWindow.cpp: (WebCore::didAddStorageEventListener): * page/DragController.cpp: (WebCore::documentFragmentFromDragData): * page/EventHandler.cpp: (WebCore::EventHandler::dispatchDragEvent): (WebCore::EventHandler::keyEvent): (WebCore::EventHandler::handleTextInputEvent): * page/Page.cpp: (WebCore::Page::findStringMatchingRanges): * platform/efl/RenderThemeEfl.cpp: (WebCore::RenderThemeEfl::paintMediaSliderTrack): * platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp: (WebCore::MediaPlayerPrivate::percentLoaded): * platform/gtk/RenderThemeGtk.cpp: (WebCore::RenderThemeGtk::paintMediaSliderTrack): * platform/mac/PasteboardMac.mm: (WebCore::Pasteboard::getDataSelection): (WebCore::documentFragmentWithImageResource): (WebCore::Pasteboard::documentFragment): * platform/mac/WebVideoFullscreenHUDWindowController.mm: (-[WebVideoFullscreenHUDWindowController setCurrentTime:]): (-[WebVideoFullscreenHUDWindowController setVolume:]): * platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::paintMediaSliderTrack): * rendering/RenderNamedFlowThread.cpp: (WebCore::RenderNamedFlowThread::getRanges): * rendering/RenderThemeMac.mm: (WebCore::RenderThemeMac::paintMediaSliderTrack): * svg/SVGTRefElement.cpp: (WebCore::SVGTRefElement::detachTarget): * xml/XMLTreeViewer.cpp: (WebCore::XMLTreeViewer::transformDocumentToTreeView): * xml/parser/XMLDocumentParserLibxml2.cpp: (WebCore::XMLDocumentParser::endElementNs): * xml/parser/XMLDocumentParserQt.cpp: (WebCore::XMLDocumentParser::parseEndElement): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142271 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed gardening. * platform/chromium/TestExpectations: Adding Mac rubberbanding failures git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142270 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
vsevik@chromium.org authored
Web Inspector: Introduce workspace provider/project type, encapsulate uri creation in SimpleWorkspaceProvider. https://bugs.webkit.org/show_bug.cgi?id=109282 Reviewed by Alexander Pavlov. Source/WebCore: SimpleWorkspaceProvider now fully takes care of creating uri based on project/workspace provider type. This is the first step on the way to project-per-domain mode for non file system project types. Workspace is now partly aware of the possibility that several projects with the same type exist. Drive-by: ScriptsPanel now uses FileMapping to show anchor location properly. * inspector/front-end/DefaultScriptMapping.js: (WebInspector.DefaultScriptMapping): (WebInspector.DefaultScriptMapping.prototype.addScript): * inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype._onGetPageResources): * inspector/front-end/FileMapping.js: (WebInspector.FileMapping.prototype.uriForURL): * inspector/front-end/FileSystemWorkspaceProvider.js: (WebInspector.FileSystemWorkspaceProvider.prototype.type): * inspector/front-end/JavaScriptSourceFrame.js: (WebInspector.JavaScriptSourceFrame.prototype._supportsEnabledBreakpointsWhileEditing): * inspector/front-end/LiveEditSupport.js: (WebInspector.LiveEditSupport): (WebInspector.LiveEditSupport.prototype.uiSourceCodeForLiveEdit): * inspector/front-end/ScriptSnippetModel.js: (WebInspector.ScriptSnippetModel): (WebInspector.ScriptSnippetModel.prototype._addScriptSnippet): * inspector/front-end/ScriptsNavigator.js: (WebInspector.ScriptsNavigator.prototype._navigatorViewForUISourceCode): (WebInspector.ScriptsNavigator.prototype.revealUISourceCode): (WebInspector.SnippetsNavigatorView.prototype._handleEvaluateSnippet): (WebInspector.SnippetsNavigatorView.prototype._handleRemoveSnippet): * inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._addUISourceCode): (WebInspector.ScriptsPanel.prototype._projectWillReset): (WebInspector.ScriptsPanel.prototype.canShowAnchorLocation): (WebInspector.ScriptsPanel.prototype._createSourceFrame): (WebInspector.ScriptsPanel.prototype.set _fileRenamed): * inspector/front-end/SimpleWorkspaceProvider.js: (WebInspector.SimpleWorkspaceProvider): (WebInspector.SimpleWorkspaceProvider.uriForURL): (WebInspector.SimpleWorkspaceProvider.prototype.type): (WebInspector.SimpleWorkspaceProvider.prototype.addFileForURL): (WebInspector.SimpleWorkspaceProvider.prototype.addUniqueFileForURL): (WebInspector.SimpleWorkspaceProvider.prototype._innerAddFileForURL): (WebInspector.SimpleWorkspaceProvider.prototype._uniqueURI): * inspector/front-end/Workspace.js: (WebInspector.WorkspaceProvider.prototype.type): (WebInspector.Project.prototype.type): (WebInspector.Project.prototype.isServiceProject): (WebInspector.Workspace.prototype.uiSourceCodeForOriginURL): (WebInspector.Workspace.prototype.uiSourceCodesForProjectType): (WebInspector.Workspace.prototype.projectsForType): * inspector/front-end/inspector.js: LayoutTests: * http/tests/inspector-enabled/dynamic-scripts.html: * http/tests/inspector/compiler-script-mapping.html: * http/tests/inspector/workspace-test.js: (initialize_WorkspaceTest.InspectorTest.createWorkspace): * inspector/debugger/breakpoint-manager.html: * inspector/debugger/dynamic-scripts.html: * inspector/debugger/script-snippet-model.html: * inspector/debugger/scripts-file-selector.html: * inspector/debugger/scripts-panel.html: * inspector/debugger/scripts-sorting-expected.txt: * inspector/debugger/scripts-sorting.html: * inspector/uisourcecode-revisions.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142269 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kov@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=106229 Patch by Alexandre Franke <alexandre.franke@gmail.com> on 2013-02-08 Rubber-stamped by Gustavo Noronha. * fr.po: updated. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142268 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
schenney@chromium.org authored
Unreviewed gardening. * platform/chromium/TestExpectations: Outstanding Win failures git-svn-id: http://svn.webkit.org/repository/webkit/trunk@142267 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-