- 13 May, 2011 15 commits
-
-
dcheng@chromium.org authored
Reviewed by Tony Chang. Improve drag start logic https://bugs.webkit.org/show_bug.cgi?id=59409 Add a new test to test drag start edge cases on Mac (because of a non-zero text drag delay) as well as rebase an existing test. * fast/css/user-drag-none.html: Text nodes are no longer draggable. * platform/mac/editing/pasteboard/drag-selections-to-contenteditable-expected.txt: Added. * platform/mac/editing/pasteboard/drag-selections-to-contenteditable.html: Added. 2011-05-13 Daniel Cheng <dcheng@chromium.org> Reviewed by Tony Chang. Improve drag start logic https://bugs.webkit.org/show_bug.cgi?id=59409 Rewrite and simplify the dragging logic to better match IE, Firefox, and the behavior defined in the spec. Among other things: - draggableNode() no longer returns text nodes when dragging anchors. - When starting a drag over an image in a selection, prefer to drag the selection. - Several redundant hit tests have been removed. - Minor refactoring to make the logic easier to follow. Test: platform/mac/editing/pasteboard/drag-selections-to-contenteditable.html * WebCore.xcodeproj/project.pbxproj: * page/DragController.cpp: (WebCore::DragController::draggableNode): (WebCore::DragController::startDrag): * page/DragController.h: * page/DragState.h: (WebCore::DragState::shouldDispatchEvents): * page/EventHandler.cpp: (WebCore::EventHandler::EventHandler): (WebCore::EventHandler::eventMayStartDrag): (WebCore::EventHandler::updateDragSourceActionsAllowed): (WebCore::EventHandler::updateDragAndDrop): (WebCore::EventHandler::cancelDragAndDrop): (WebCore::EventHandler::dragHysteresisExceeded): (WebCore::EventHandler::dragSourceEndedAt): (WebCore::ExactlyOneBitSet): (WebCore::EventHandler::handleDrag): * page/EventHandler.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86472 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86465 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Unreviewed, rolling out r86447. http://trac.webkit.org/changeset/86447 https://bugs.webkit.org/show_bug.cgi?id=60809 "Broke some uses of EventSender object on Qt" (Requested by mwenge on #webkit). * platform/qt/Skipped: * platform/qt/http/tests/plugins/plugin-document-has-focus-expected.txt: Removed. 2011-05-13 Sheriff Bot <webkit.review.bot@gmail.com> Unreviewed, rolling out r86447. http://trac.webkit.org/changeset/86447 https://bugs.webkit.org/show_bug.cgi?id=60809 "Broke some uses of EventSender object on Qt" (Requested by mwenge on #webkit). * WebCoreSupport/DumpRenderTreeSupportQt.cpp: * WebCoreSupport/DumpRenderTreeSupportQt.h: 2011-05-13 Sheriff Bot <webkit.review.bot@gmail.com> Unreviewed, rolling out r86447. http://trac.webkit.org/changeset/86447 https://bugs.webkit.org/show_bug.cgi?id=60809 "Broke some uses of EventSender object on Qt" (Requested by mwenge on #webkit). * DumpRenderTree/qt/DumpRenderTreeQt.cpp: (WebCore::WebPage::WebPage): (WebCore::DumpRenderTree::DumpRenderTree): (WebCore::DumpRenderTree::initJSObjects): (WebCore::DumpRenderTree::createWindow): * DumpRenderTree/qt/DumpRenderTreeQt.h: (WebCore::DumpRenderTree::eventSender): * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp: (webkit_test_plugin_new_instance): (webkit_test_plugin_set_window): (webkit_test_plugin_handle_event): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86464 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by James Robinson. [chromium] compositing tests are failing https://bugs.webkit.org/show_bug.cgi?id=60738 Remove supression for previously failing compositor tests. * platform/chromium/test_expectations.txt: 2011-05-13 Nat Duca <nduca@chromium.org> Reviewed by James Robinson. [chromium] compositing tests are failing https://bugs.webkit.org/show_bug.cgi?id=60738 Bind texture before setting its filtering state. * platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::updateFromPixels): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86454 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86450 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
robert@webkit.org authored
Reviewed by Benjamin Poulain. [Qt] fix http/tests/plugins/plugin-document-has-focus.html For some reason the platform-independent expected result has no newline at the end of the file. The unix test plugin also reports the event from a different line. These are harmless differences, so create platform-specific result. Note that nearly every platform skips this test at the moment. https://bugs.webkit.org/show_bug.cgi?id=60722 * platform/qt/Skipped: * platform/qt/http/tests/plugins/plugin-document-has-focus-expected.txt: Added. 2011-05-13 Robert Hogan <robert@webkit.org> Reviewed by Benjamin Poulain. [Qt] fix http/tests/plugins/plugin-document-has-focus.html https://bugs.webkit.org/show_bug.cgi?id=60722 QWebPage::setView() will display the browser window, so implement a private version that does just enough to satisfy EventSender's requirement to install an event filter on a page's web view. * WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::setView): * WebCoreSupport/DumpRenderTreeSupportQt.h: 2011-05-13 Robert Hogan <robert@webkit.org> Reviewed by Benjamin Poulain. [Qt] fix http/tests/plugins/plugin-document-has-focus.html The support for this test added to the unix test plugin here may allow other platforms to pass it (nearly everyone skips it). On Qt it required a bit of trickiness with the page's EventSender object to get it working fully though, so only unskipping Qt here. https://bugs.webkit.org/show_bug.cgi?id=60722 * DumpRenderTree/qt/DumpRenderTreeQt.cpp: (WebCore::WebPage::WebPage): (WebCore::WebPage::eventSender): (WebCore::DumpRenderTree::DumpRenderTree): (WebCore::DumpRenderTree::initJSObjects): (WebCore::DumpRenderTree::createWindow): * DumpRenderTree/qt/DumpRenderTreeQt.h: * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp: (webkit_test_plugin_new_instance): (webkit_test_plugin_set_window): (webkit_test_plugin_handle_event): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86447 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
aroben@apple.com authored
r79167 moved some code from setFrameRect to setBoundsSize, including a call to frameRectsChanged. This was done because positionScrollbarLayers, which is called by frameRectsChanged, only needs to be called when the bounds change, not when the frame rect changes. But the recursive calls inside frameRectsChanged *do* need to be called when the frame rect changes. This patch moves the positionScrollbarLayers call out of frameRectsChanged, since it needs to be called at different times from frameRectsChanged. Then it restores the frameRectsChanged call to setFrameRect, which fixes the bug. Test: platform/win/plugins/iframe-inside-overflow.html Fixes <http://webkit.org/b/60194> <rdar://problem/9383760> REGRESSION (r79167): Windowed plugins in Google Reader don't move when the article list is scrolled Reviewed by Dan Bernstein. Source/WebCore: * platform/ScrollView.cpp: (WebCore::ScrollView::updateScrollbars): Added a positionScrollbarLayers call here now that frameRectsChanged doesn't call it for us. Also added a FIXME because it seems strange to call frameRectsChanged here when our frame rect hasn't changed. (WebCore::ScrollView::setFrameRect): Added back the frameRectsChanged call that was removed in r79167. (WebCore::ScrollView::setBoundsSize): Replaced a frameRectsChanged call with a call to positionScrollbarLayers. We were only calling frameRectsChanged here in order to get positionScrollbarLayers to be called. (WebCore::ScrollView::frameRectsChanged): Removed the call to positionScrollbarLayers. All callers of frameRectsChanged have been updated to call positionScrollbarLayers if needed. Tools: Add a plugin test that dumps the plugin window's rect * DumpRenderTree/TestNetscapePlugIn/Tests/win/DumpWindowRect.cpp: Added. (DumpWindowRect::DumpWindowRect): Just call up to the base class. (DumpWindowRect::performWindowGeometryTest): Find our window rect relative to the test harness window and log it. * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Added DumpWindowRect. LayoutTests: Add a test for windowed plugins inside iframes inside scrolled overflow areas * platform/win/plugins/iframe-inside-overflow-expected.txt: Added. * platform/win/plugins/iframe-inside-overflow.html: Added. (loaded): Scrolls the div and tells the plugin to start its test (which will cause its window rect to be logged). * platform/win/plugins/resources/dump-window-rect-iframe.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86442 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
robert@webkit.org authored
Reviewed by Eric Seidel. Make fast/dom/object-embed-plugin-scripting.html compatible with non-Mac ports https://bugs.webkit.org/show_bug.cgi?id=59930 * fast/dom/resources/articles.m4a: Removed. * platform/chromium/test_expectations.txt: Unskip object-embed-plugin-scripting.html on Linux * platform/qt/Skipped: Unskip object-embed-plugin-scripting.html * plugins/object-embed-plugin-scripting-expected.txt: Renamed from LayoutTests/fast/dom/object-embed-plugin-scripting-expected.txt. * plugins/object-embed-plugin-scripting.html: Renamed from LayoutTests/fast/dom/object-embed-plugin-scripting.html. * plugins/resources/apple.gif: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86440 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antonm@chromium.org authored
Unreviewed. Update expectations for GPU tests that use shadows after fix (Skia rev 1297). https://bugs.webkit.org/show_bug.cgi?id=60742 * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86435 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
* platform/qt-wk2/Skipped: Add 4 failing tests. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86431 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
* platform/qt-wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86427 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
* platform/qt-arm/Skipped: * platform/qt-mac/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86426 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antonm@chromium.org authored
Reviewed by Adam Barth and Alexey Proskuryakov. Propagate security origin of parent document into HTML documents created with DOMImplementation https://bugs.webkit.org/show_bug.cgi?id=53611 This restores invariant that JS wrappers residing in the same JS context should come from the same security origin. Absence of regressions is covered by the current tests. Different security origin of DOMImplementation is difficult to check with layout tests as DOMImplementation resides in the same JS context as parent document and therefore there are no security origin checks. This is observable however in C++. * Android.jscbindings.mk: * CMakeLists.txt: * WebCore.gypi: * WebCore.pro: * WebCore.vcproj/WebCore.vcproj: * WebCore.xcodeproj/project.pbxproj: * bindings/v8/V8GCController.cpp: (WebCore::NodeGrouperVisitor::visitDOMWrapper): * dom/DOMImplementation.cpp: (WebCore::DOMImplementation::DOMImplementation): (WebCore::DOMImplementation::createDocument): * dom/DOMImplementation.h: (WebCore::DOMImplementation::create): (WebCore::DOMImplementation::documentDestroyed): (WebCore::DOMImplementation::parentDocument): * dom/DOMImplementation.idl: * dom/Document.cpp: (WebCore::Document::~Document): (WebCore::Document::implementation): * dom/Document.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86423 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
sergio@webkit.org authored
Unreviewed, new GTK+ test expectations after r86352. * platform/gtk/svg/custom/stroke-opacity-update-expected.png: Added. * platform/gtk/svg/custom/stroke-opacity-update-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86420 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
sergio@webkit.org authored
Unreviewed, new GTK+ test expectations. * platform/gtk/fast/borders/outline-alpha-block-expected.png: * platform/gtk/fast/borders/outline-alpha-block-expected.txt: * platform/gtk/fast/borders/outline-alpha-inline-expected.png: * platform/gtk/fast/borders/outline-alpha-inline-expected.txt: * platform/gtk/svg/custom/fill-opacity-update-expected.png: * platform/gtk/svg/custom/fill-opacity-update-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86419 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 12 May, 2011 25 commits
-
-
commit-queue@webkit.org authored
Reviewed by Simon Fraser. RGBA colors in outlines show overpainting at the corners https://bugs.webkit.org/show_bug.cgi?id=58999 Converted the new tests to be text tests with pixel results (using dumpAsText(true)). Updated test_expectations comments to be more helpful and accurate and split new expectations into two groups for skia / chromium-mac as chromium-mac can be rebaselined now. * fast/borders/outline-alpha-block-expected.txt: Added. * fast/borders/outline-alpha-block.html: * fast/borders/outline-alpha-inline-expected.txt: Added. * fast/borders/outline-alpha-inline.html: * platform/chromium/test_expectations.txt: * platform/mac/fast/borders/outline-alpha-block-expected.txt: Removed. * platform/mac/fast/borders/outline-alpha-inline-expected.txt: Removed. 2011-05-12 Ben Wells <benwells@chromium.org> Reviewed by Simon Fraser. RGBA colors in outlines show overpainting at the corners https://bugs.webkit.org/show_bug.cgi?id=58999 Added FIXMEs near temporary $if !USE(SKIA)s, referencing bug 60342. * rendering/RenderInline.cpp: (WebCore::RenderInline::paintOutline): * rendering/RenderObject.cpp: (WebCore::RenderObject::paintOutline): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86413 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86402 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
[Chromium] Update test expectations for r86224. * platform/chromium-linux/fast/forms/validation-message-appearance-expected.png: * platform/chromium-linux/fast/forms/validation-message-appearance-expected.txt: * platform/chromium-mac-leopard/fast/forms/validation-message-appearance-expected.png: * platform/chromium-mac/fast/forms/validation-message-appearance-expected.png: Removed. * platform/chromium-win-vista/fast/forms/validation-message-appearance-expected.png: Added. * platform/chromium-win-vista/fast/forms/validation-message-appearance-expected.txt: Copied from LayoutTests/platform/chromium-linux/fast/forms/validation-message-appearance-expected.txt. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86399 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dbates@webkit.org authored
Reviewed by Kenneth Rohde Christiansen. [Qt] fast/events/fire-mousedown-while-pressing-mouse-button.html failing https://bugs.webkit.org/show_bug.cgi?id=58863 Fixes an issue where a platform mouse event corresponding to mouse button A may be associated with the wrong WebCore mouse button when the event occurs while pressing and holding a mouse button B, where A != B. For example, a person clicks the middle mouse button while pressing and holding the left mouse button. Then we dispatch the following DOM events: mouse down for left button, mouse down for left button, mouse up for left button. But, we should have dispatched: mouse down for left button, mouse down for middle button, mouse up for middle button. * platform/qt/PlatformMouseEventQt.cpp: (WebCore::mouseEventTypeAndMouseButtonFromQEvent): Added. (WebCore::PlatformMouseEvent::PlatformMouseEvent): Modified to call mouseEventTypeAndMouseButtonFromQEvent() to determine the WebCore mouse event type and button from the platform-specific event. 2011-05-12 Daniel Bates <dbates@rim.com> Reviewed by Kenneth Rohde Christiansen. [Qt] fast/events/fire-mousedown-while-pressing-mouse-button.html failing https://bugs.webkit.org/show_bug.cgi?id=58863 Remove test case fast/events/fire-mousedown-while-pressing-mouse-button.html from the Skipped list since it now passes. * platform/qt/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86381 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86378 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Csaba Osztrogonác. [Qt] Rebaseline editing/execCommand tests that are working https://bugs.webkit.org/show_bug.cgi?id=60717 Also based on digging of Zsolt Fehér. * platform/qt/Skipped: * platform/qt/editing/execCommand/4580583-1-expected.png: Added. * platform/qt/editing/execCommand/4580583-1-expected.txt: * platform/qt/editing/execCommand/4580583-2-expected.png: Added. * platform/qt/editing/execCommand/4580583-2-expected.txt: * platform/qt/editing/execCommand/4641880-1-expected.png: Added. * platform/qt/editing/execCommand/4641880-1-expected.txt: * platform/qt/editing/execCommand/4641880-2-expected.png: Added. * platform/qt/editing/execCommand/4641880-2-expected.txt: * platform/qt/editing/execCommand/4747450-expected.png: Added. * platform/qt/editing/execCommand/4747450-expected.txt: * platform/qt/editing/execCommand/4786404-1-expected.png: Added. * platform/qt/editing/execCommand/4786404-2-expected.png: Added. * platform/qt/editing/execCommand/4916402-expected.png: Added. * platform/qt/editing/execCommand/4916402-expected.txt: * platform/qt/editing/execCommand/4916541-expected.png: Added. * platform/qt/editing/execCommand/4916541-expected.txt: * platform/qt/editing/execCommand/4924441-expected.png: Added. * platform/qt/editing/execCommand/4924441-expected.txt: * platform/qt/editing/execCommand/5049671-expected.png: Added. * platform/qt/editing/execCommand/5062376-expected.png: Added. * platform/qt/editing/execCommand/5062376-expected.txt: * platform/qt/editing/execCommand/5080333-1-expected.png: Added. * platform/qt/editing/execCommand/5080333-1-expected.txt: * platform/qt/editing/execCommand/5080333-2-expected.png: Added. * platform/qt/editing/execCommand/5080333-2-expected.txt: * platform/qt/editing/execCommand/5136770-expected.png: Added. * platform/qt/editing/execCommand/5136770-expected.txt: * platform/qt/editing/execCommand/5138441-expected.png: Added. * platform/qt/editing/execCommand/5138441-expected.txt: * platform/qt/editing/execCommand/5142012-1-expected.png: Added. * platform/qt/editing/execCommand/5142012-1-expected.txt: * platform/qt/editing/execCommand/5142012-2-expected.png: Added. * platform/qt/editing/execCommand/5142012-2-expected.txt: * platform/qt/editing/execCommand/5190926-expected.png: Added. * platform/qt/editing/execCommand/5190926-expected.txt: * platform/qt/editing/execCommand/5481523-expected.png: Added. * platform/qt/editing/execCommand/5481523-expected.txt: Added. * platform/qt/editing/execCommand/5482023-expected.png: Added. * platform/qt/editing/execCommand/5482023-expected.txt: Added. * platform/qt/editing/execCommand/5569741-expected.png: Added. * platform/qt/editing/execCommand/5569741-expected.txt: Added. * platform/qt/editing/execCommand/create-list-with-hr-expected.png: Added. * platform/qt/editing/execCommand/create-list-with-hr-expected.txt: * platform/qt/editing/execCommand/find-after-replace-expected.png: Added. * platform/qt/editing/execCommand/find-after-replace-expected.txt: * platform/qt/editing/execCommand/findString-2-expected.png: Added. * platform/qt/editing/execCommand/findString-2-expected.txt: * platform/qt/editing/execCommand/findString-expected.png: Added. * platform/qt/editing/execCommand/findString-expected.txt: * platform/qt/editing/execCommand/format-block-with-trailing-br-expected.png: Added. * platform/qt/editing/execCommand/format-block-with-trailing-br-expected.txt: * platform/qt/editing/execCommand/indent-empty-root-expected.png: Added. * platform/qt/editing/execCommand/indent-empty-root-expected.txt: * platform/qt/editing/execCommand/indent-list-item-expected.png: Added. * platform/qt/editing/execCommand/indent-list-item-expected.txt: * platform/qt/editing/execCommand/indent-selection-expected.png: Added. * platform/qt/editing/execCommand/indent-selection-expected.txt: * platform/qt/editing/execCommand/insert-list-and-stitch-expected.png: Added. * platform/qt/editing/execCommand/insert-list-and-stitch-expected.txt: * platform/qt/editing/execCommand/insert-list-with-id-expected.png: Added. * platform/qt/editing/execCommand/insert-list-with-id-expected.txt: * platform/qt/editing/execCommand/insertHorizontalRule-expected.png: Added. * platform/qt/editing/execCommand/insertHorizontalRule-expected.txt: * platform/qt/editing/execCommand/insertImage-expected.png: Added. * platform/qt/editing/execCommand/insertImage-expected.txt: * platform/qt/editing/execCommand/nsresponder-indent-expected.png: Added. * platform/qt/editing/execCommand/nsresponder-indent-expected.txt: Added. * platform/qt/editing/execCommand/nsresponder-outdent-expected.png: Added. * platform/qt/editing/execCommand/nsresponder-outdent-expected.txt: Added. * platform/qt/editing/execCommand/outdent-blockquote-test1-expected.png: Added. * platform/qt/editing/execCommand/outdent-blockquote-test1-expected.txt: Added. * platform/qt/editing/execCommand/outdent-blockquote-test2-expected.png: Added. * platform/qt/editing/execCommand/outdent-blockquote-test2-expected.txt: Added. * platform/qt/editing/execCommand/outdent-blockquote-test3-expected.png: Added. * platform/qt/editing/execCommand/outdent-blockquote-test3-expected.txt: Added. * platform/qt/editing/execCommand/outdent-blockquote-test4-expected.png: Added. * platform/qt/editing/execCommand/outdent-blockquote-test4-expected.txt: Added. * platform/qt/editing/execCommand/outdent-selection-expected.png: Added. * platform/qt/editing/execCommand/outdent-selection-expected.txt: * platform/qt/editing/execCommand/paste-1-expected.png: Added. * platform/qt/editing/execCommand/paste-1-expected.txt: * platform/qt/editing/execCommand/paste-2-expected.png: Added. * platform/qt/editing/execCommand/paste-2-expected.txt: * platform/qt/editing/execCommand/print-expected.png: Added. * platform/qt/editing/execCommand/print-expected.txt: * platform/qt/editing/execCommand/remove-list-from-range-selection-expected.png: Added. * platform/qt/editing/execCommand/remove-list-from-range-selection-expected.txt: * platform/qt/editing/execCommand/remove-list-item-1-expected.png: Added. * platform/qt/editing/execCommand/remove-list-item-1-expected.txt: * platform/qt/editing/execCommand/selectAll-expected.png: Added. * platform/qt/editing/execCommand/selectAll-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86376 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Csaba Osztrogonác. [Qt] Rebaseline editing/pasteboard tests that are working https://bugs.webkit.org/show_bug.cgi?id=60707 * platform/qt/Skipped: * platform/qt/editing/pasteboard/4076267-2-expected.png: Added. * platform/qt/editing/pasteboard/4076267-2-expected.txt: Added. * platform/qt/editing/pasteboard/4076267-expected.png: Added. * platform/qt/editing/pasteboard/4076267-expected.txt: Added. * platform/qt/editing/pasteboard/4806874-expected.png: Added. * platform/qt/editing/pasteboard/4806874-expected.txt: * platform/qt/editing/pasteboard/5387578-expected.png: Added. * platform/qt/editing/pasteboard/5387578-expected.txt: * platform/qt/editing/pasteboard/bad-placeholder-expected.png: Added. * platform/qt/editing/pasteboard/bad-placeholder-expected.txt: * platform/qt/editing/pasteboard/block-wrappers-necessary-expected.png: Added. * platform/qt/editing/pasteboard/block-wrappers-necessary-expected.txt: * platform/qt/editing/pasteboard/input-field-1-expected.png: Added. * platform/qt/editing/pasteboard/input-field-1-expected.txt: * platform/qt/editing/pasteboard/nested-blocks-with-text-area-expected.png: Added. * platform/qt/editing/pasteboard/nested-blocks-with-text-area-expected.txt: * platform/qt/editing/pasteboard/nested-blocks-with-text-field-expected.png: Added. * platform/qt/editing/pasteboard/nested-blocks-with-text-field-expected.txt: * platform/qt/editing/pasteboard/paste-text-008-expected.png: Added. * platform/qt/editing/pasteboard/paste-text-008-expected.txt: Added. * platform/qt/editing/pasteboard/smart-paste-008-expected.png: Added. * platform/qt/editing/pasteboard/smart-paste-008-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86374 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86373 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86372 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86368 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
atwilson@chromium.org authored
* platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86367 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Darin Adler. Rebaseline editing/inserting tests that work https://bugs.webkit.org/show_bug.cgi?id=60702 * platform/qt/Skipped: * platform/qt/editing/inserting/4278698-expected.png: Added. * platform/qt/editing/inserting/4278698-expected.txt: * platform/qt/editing/inserting/editable-html-element-expected.png: Added. * platform/qt/editing/inserting/editable-html-element-expected.txt: * platform/qt/editing/inserting/editing-empty-divs-expected.png: Added. * platform/qt/editing/inserting/editing-empty-divs-expected.txt: * platform/qt/editing/inserting/insert-div-023-expected.png: Added. * platform/qt/editing/inserting/insert-div-023-expected.txt: * platform/qt/editing/inserting/multiple-lines-selected-expected.png: Added. * platform/qt/editing/inserting/multiple-lines-selected-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86357 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rwlbuis@webkit.org authored
Reviewed by Darin Adler. REGRESSION(79985): Changes in fill-opacity should trigger repaint but don't https://bugs.webkit.org/show_bug.cgi?id=59941 Improve test to not need a click. Offer a stroke-opacity variant as well. * platform/mac/svg/custom/fill-opacity-update-expected.png: * platform/mac/svg/custom/fill-opacity-update-expected.txt: * platform/mac/svg/custom/stroke-opacity-update-expected.png: Added. * platform/mac/svg/custom/stroke-opacity-update-expected.txt: Added. * svg/custom/fill-opacity-update.svg: * svg/custom/stroke-opacity-update.svg: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86352 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antonm@chromium.org authored
Unreviewed. Chromium expectations. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86350 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antonm@chromium.org authored
Unreviewed. Chromium expectations. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86348 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antonm@chromium.org authored
Unreviewed. Fixed typo. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86346 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antonm@chromium.org authored
Unreviewed. Chromium expectations. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86345 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
philn@webkit.org authored
Unreviewed, GTK baselines for new tests. * platform/gtk/fast/block/positioning/hiding-inside-relpositioned-inline-expected.png: Added. * platform/gtk/fast/block/positioning/hiding-inside-relpositioned-inline-expected.txt: Added. * platform/gtk/fast/borders/outline-alpha-block-expected.png: Added. * platform/gtk/fast/borders/outline-alpha-block-expected.txt: Added. * platform/gtk/fast/borders/outline-alpha-inline-expected.png: Added. * platform/gtk/fast/borders/outline-alpha-inline-expected.txt: Added. * platform/gtk/fast/inline/nested-top-alignment-expected.png: Added. * platform/gtk/fast/inline/nested-top-alignment-expected.txt: Added. * platform/gtk/scrollbars/scrollbars-on-positioned-content-expected.png: Added. * platform/gtk/scrollbars/scrollbars-on-positioned-content-expected.txt: Added. * platform/gtk/svg/custom/fill-opacity-update-expected.png: Added. * platform/gtk/svg/custom/fill-opacity-update-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86344 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antonm@chromium.org authored
Unreviewed. Chromium GPU suppressions. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86342 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
aroben@apple.com authored
* platform/win/fast/dom/Window/window-property-descriptors-expected.txt: * platform/win/fast/dom/prototype-inheritance-expected.txt: * platform/win/fast/js/global-constructors-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86341 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rwlbuis@webkit.org authored
Reviewed by Eric Seidel. REGRESSION(79985): Changes in fill-opacity should trigger repaint but don't https://bugs.webkit.org/show_bug.cgi?id=59941 Also consider fill-opacity when determining whether StyleDifferenceRepaint is needed. Test: svg/custom/fill-opacity-update.svg * rendering/style/SVGRenderStyle.cpp: (WebCore::SVGRenderStyle::diff): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86331 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
* platform/qt-arm/fast/transforms/transform-positioned-ancestor-expected.txt: Added. * platform/qt-arm/transforms/2d/transform-borderbox-expected.txt: Added. * platform/qt-arm/transforms/2d/transform-origin-borderbox-expected.txt: Added. * platform/qt-arm/transforms/2d/zoom-menulist-expected.txt: Added. * platform/qt-arm/transforms/no_transform_hit_testing-expected.txt: Added. * platform/qt-arm/transforms/svg-vs-css-expected.txt: Added. * platform/qt-mac/Skipped: Add plugins/get-targeted-javascript-url.html because of missing plugin.getURLNotify() implementation * platform/qt-mac/fast/transforms/transform-positioned-ancestor-expected.txt: Added. * platform/qt-mac/transforms/2d/transform-borderbox-expected.txt: Added. * platform/qt-mac/transforms/2d/transform-origin-borderbox-expected.txt: Added. * platform/qt-mac/transforms/2d/zoom-menulist-expected.txt: Added. * platform/qt-mac/transforms/no_transform_hit_testing-expected.txt: Added. * platform/qt-mac/transforms/svg-vs-css-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86324 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
philn@webkit.org authored
Unreviewed, GTK rebaseline after r86307. * platform/gtk/fast/dom/HTMLMeterElement/meter-styles-expected.txt: * platform/gtk/fast/dom/HTMLMeterElement/meter-styles-expected.png: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86323 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
yutak@chromium.org authored
Unreviewed. Update Qt test expectations affected in r86320. * platform/qt/fast/dom/Window/window-properties-expected.txt: * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: * platform/qt/fast/dom/prototype-inheritance-expected.txt: * platform/qt/fast/js/global-constructors-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86322 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
yutak@chromium.org authored
Reviewed by Kent Tamura. WebSocket add new event: CloseEvent https://bugs.webkit.org/show_bug.cgi?id=35573 Original patch was written by Fumitoshi Ukai <ukai@chromium.org>. I modified the test close-event.html slightly so that it passes on Chromium. I also updated a few test results that are affected by this change. * fast/dom/Window/window-properties-expected.txt: * fast/dom/Window/window-property-descriptors-expected.txt: * fast/dom/prototype-inheritance-expected.txt: * fast/js/global-constructors-expected.txt: * http/tests/websocket/tests/close-event-expected.txt: Added. * http/tests/websocket/tests/close-event.html: Added. * platform/chromium/fast/dom/prototype-inheritance-expected.txt: 2011-05-12 Yuta Kitamura <yutak@chromium.org> Reviewed by Kent Tamura. WebSocket add new event: CloseEvent https://bugs.webkit.org/show_bug.cgi?id=35573 Original patch was written by Fumitoshi Ukai <ukai@chromium.org>. I added CloseEvent constructor to DOMWindow, so it can be referred in the new test (close-event.html). Test: http/tests/websocket/tests/close-event.html * CMakeLists.txt: * CodeGenerators.pri: * DerivedSources.cpp: * DerivedSources.make: * GNUmakefile.list.am: * WebCore.gypi: * WebCore.pro: * WebCore.vcproj/WebCore.vcproj: * WebCore.xcodeproj/project.pbxproj: * bindings/js/JSEventCustom.cpp: (WebCore::toJS): * bindings/v8/custom/V8EventCustom.cpp: (WebCore::toV8): * dom/Event.cpp: (WebCore::Event::isCloseEvent): * dom/Event.h: * page/DOMWindow.idl: Add CloseEvent constructor. * websockets/CloseEvent.h: Added. (WebCore::CloseEvent::isCloseEvent): (WebCore::CloseEvent::create): (WebCore::CloseEvent::initCloseEvent): (WebCore::CloseEvent::wasClean): (WebCore::CloseEvent::CloseEvent): * websockets/CloseEvent.idl: Added. * websockets/WebSocket.cpp: (WebCore::WebSocket::didClose): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@86315 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-