| 2012-10-26 Anders Carlsson <andersca@apple.com> |
| |
| Crash when making NPRuntime calls with a null NPP pointer |
| https://bugs.webkit.org/show_bug.cgi?id=100569 |
| |
| Reviewed by Darin Adler. |
| |
| Add new tests. |
| |
| * plugins/npruntime/npruntime-calls-with-null-npp-expected.txt: Added. |
| * plugins/npruntime/npruntime-calls-with-null-npp.html: Added. |
| |
| 2012-10-26 Vincent Scheib <scheib@chromium.org> |
| |
| Unreviewed, rolling out r132702. |
| http://trac.webkit.org/changeset/132702 |
| https://bugs.webkit.org/show_bug.cgi?id=100322 |
| |
| Compile error on Chromium Linux dbg builder (and others) |
| |
| * svg/custom/elementTimeControl-nan-crash-expected.txt: Removed. |
| * svg/custom/elementTimeControl-nan-crash.html: Removed. |
| |
| 2012-10-26 Tony Chang <tony@chromium.org> |
| |
| [chromium] Unreviewed, remove one more test that consistently passes according to the flakiness dashboard. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-26 Tony Chang <tony@chromium.org> |
| |
| [chromium] Unreviewed, remove tests that consistently pass. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: Some tests still need 10.8 baselines. Add them to this file. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-26 Philip Rogers <pdr@google.com> |
| |
| Prevent NaN offset values in ElementTimeControl. |
| https://bugs.webkit.org/show_bug.cgi?id=100322 |
| |
| Reviewed by Abhishek Arya. |
| |
| * svg/custom/elementTimeControl-nan-crash-expected.txt: Added. |
| * svg/custom/elementTimeControl-nan-crash.html: Added. |
| |
| 2012-10-26 Tony Chang <tony@chromium.org> |
| |
| Move non-Settings Inspector methods from internals.settings to internals |
| https://bugs.webkit.org/show_bug.cgi?id=100392 |
| |
| Reviewed by Adam Barth. |
| |
| Update tests to use internals.setJavaScriptProfilingEnabled instead of internals.settings.setJavaScriptProfilingEnabled. |
| Update tests to use internals.setInspectorResourcesDataSizeLimits instead of internals.settings.setInspectorResourcesDataSizeLimits. |
| |
| * fast/profiler/anonymous-event-handler.html: |
| * fast/profiler/anonymous-function-called-from-different-contexts.html: |
| * fast/profiler/anonymous-function-calls-built-in-functions.html: |
| * fast/profiler/anonymous-function-calls-eval.html: |
| * fast/profiler/anonymous-functions-with-display-names.html: |
| * fast/profiler/apply.html: |
| * fast/profiler/built-in-function-calls-anonymous.html: |
| * fast/profiler/built-in-function-calls-user-defined-function.html: |
| * fast/profiler/call-register-leak.html: |
| * fast/profiler/call.html: |
| * fast/profiler/calling-the-function-that-started-the-profiler-from-another-scope.html: |
| * fast/profiler/compare-multiple-profiles.html: |
| * fast/profiler/constructor.html: |
| * fast/profiler/dead-time.html: |
| * fast/profiler/document-dot-write.html: |
| * fast/profiler/event-handler.html: |
| * fast/profiler/execution-context-and-eval-on-same-line.html: |
| * fast/profiler/inline-event-handler.html: |
| * fast/profiler/many-calls-in-the-same-scope.html: |
| * fast/profiler/multiple-and-different-scoped-anonymous-function-calls.html: |
| * fast/profiler/multiple-and-different-scoped-function-calls.html: |
| * fast/profiler/multiple-anonymous-functions-called-from-the-same-function.html: |
| * fast/profiler/multiple-frames.html: |
| * fast/profiler/named-functions-with-display-names.html: |
| * fast/profiler/nested-anonymous-functon.html: |
| * fast/profiler/nested-start-and-stop-profiler.html: |
| * fast/profiler/no-execution-context.html: |
| * fast/profiler/one-execution-context.html: |
| * fast/profiler/profile-calls-in-included-file.html: |
| * fast/profiler/profile-with-no-title.html: |
| * fast/profiler/profiling-from-a-nested-location-but-stop-profiling-outside-the-nesting.html: |
| * fast/profiler/profiling-from-a-nested-location.html: |
| * fast/profiler/simple-event-call.html: |
| * fast/profiler/simple-no-level-change.html: |
| * fast/profiler/start-and-stop-profiler-multiple-times.html: |
| * fast/profiler/start-and-stop-profiling-in-the-same-function.html: |
| * fast/profiler/start-but-dont-stop-profiling.html: |
| * fast/profiler/stop-profiling-after-setTimeout.html: |
| * fast/profiler/stop-then-function-call.html: |
| * fast/profiler/two-execution-contexts.html: |
| * fast/profiler/user-defined-function-calls-built-in-functions.html: |
| * fast/profiler/window-dot-eval.html: |
| * http/tests/inspector/network-test.js: |
| (resetInspectorResourcesData): |
| * http/tests/inspector/network/cached-resource-destroyed-too-big-discarded.html: |
| * http/tests/inspector/network/network-content-replacement-embed.html: |
| * http/tests/inspector/network/network-content-replacement-xhr.html: |
| * inspector/profiler/cpu-profiler-profiling-without-inspector.html: |
| |
| 2012-10-26 Dominic Mazzoni <dmazzoni@google.com> |
| |
| AX: Notification should be sent when accessibilityIsIgnored changes |
| https://bugs.webkit.org/show_bug.cgi?id=99547 |
| |
| Reviewed by Chris Fleizach. |
| |
| Adds 3 new test to ensure: |
| 1. A "children changed" notification is fired on the parent object when an |
| object that was previously ignored becomes unignored. |
| 2. A notification is sent when an element's text (incl. title or label) changes. |
| 3. A notification is sent when another ARIA attribute changes. |
| |
| Modifies add-to-menu-list-crashes because it was too brittle; it was |
| referencing a stale object rather than retrieving its latest handle. |
| Modifies aria-checkbox-sends-notification to listen on the correct |
| object on all platforms. |
| Simplifies notification-listeners so it doesn't generate additional |
| notifications that are inconsistent between platforms now. |
| |
| * accessibility/aria-checkbox-sends-notification.html: |
| * accessibility/notification-listeners.html: |
| * platform/chromium/accessibility/add-to-menu-list-crashes-expected.txt: |
| * platform/chromium/accessibility/add-to-menu-list-crashes.html: |
| * platform/chromium/accessibility/is-ignored-change-sends-notification-expected.txt: Added. |
| * platform/chromium/accessibility/is-ignored-change-sends-notification.html: Added. |
| * platform/chromium/accessibility/other-aria-attribute-change-sends-notification-expected.txt: Added. |
| * platform/chromium/accessibility/other-aria-attribute-change-sends-notification.html: Added. |
| * platform/chromium/accessibility/text-change-notification-expected.txt: Added. |
| * platform/chromium/accessibility/text-change-notification.html: Added. |
| |
| 2012-10-26 Vincent Scheib <scheib@chromium.org> |
| |
| Generated should not be supported for things with a shadow |
| https://bugs.webkit.org/show_bug.cgi?id=98836 |
| |
| Unreviewed rollout of rollout of http://trac.webkit.org/changeset/132269. |
| Initial rollout was speculative and was shown not to be related to crashes. |
| Change author: Elliott Sprehn <esprehn@chromium.org> |
| |
| Change all pseudos on <input> tests to be ref tests and clean up the tests. |
| They now make sure we don't support generated content on things with a shadow. |
| Also added another test for the other form control types to ensure they don't |
| support pseudos either. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/pseudo-elements-expected.html: Added. |
| * fast/forms/pseudo-elements.html: Added. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements.html: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| |
| 2012-10-26 Aaron Colwell <acolwell@chromium.org> |
| |
| Remove Chromium specific expectations for video-media-source-add-and-remove-buffers.html |
| https://bugs.webkit.org/show_bug.cgi?id=100160 |
| |
| Reviewed by Adam Barth. |
| |
| The common expectations just reflected a bug in Chromium. The bug has been fixed and the common expectations |
| have been updated to reflect the correct behavior. |
| |
| * http/tests/media/media-source/video-media-source-add-and-remove-buffers-expected.txt: |
| * platform/chromium/http/tests/media/media-source/video-media-source-add-and-remove-buffers-expected.txt: Removed. |
| |
| 2012-10-26 Bear Travis <betravis@adobe.com> |
| |
| [CSS Exclusions] Block children have incorrect offset when shape-inside element lays out below other elements |
| https://bugs.webkit.org/show_bug.cgi?id=98189 |
| |
| Reviewed by Dirk Schulze. |
| |
| Test that block content in subsequent shape-insides lays out correctly. Introducing a script |
| that can eventually be used to simplify the rectangle cases. |
| |
| * fast/exclusions/resources/simple-rectangle.js: Added. |
| (createRectangleTest): Generate a shape-inside rectangle test using the given parameters. |
| (createRectangleTestResult): Generate a shape-inside rectangle expected result using |
| the given parameters. |
| * fast/exclusions/shape-inside/shape-inside-subsequent-blocks-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-subsequent-blocks.html: Added. |
| |
| 2012-10-26 Dirk Schulze <krit@webkit.org> |
| |
| -webkit-clip-path property should just reference clipPath |
| https://bugs.webkit.org/show_bug.cgi?id=100531 |
| |
| Reviewed by Eric Seidel. |
| |
| Check that anther SVG resource like mask can not be referenced as clipPath. |
| |
| * css3/masking/clip-path-reference-of-fake-clipPath-expected.txt: Added. |
| * css3/masking/clip-path-reference-of-fake-clipPath.html: Added. |
| |
| 2012-10-26 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| webkitpy: Pass the `Listen' Apache directive from webkitpy, not the httpd.conf files. |
| https://bugs.webkit.org/show_bug.cgi?id=98602 |
| |
| Reviewed by Dirk Pranke. |
| |
| * http/conf/apache2-debian-httpd.conf: Remove the `Listen' |
| directive and related comments, it is passed to httpd by webkitpy |
| now. |
| * http/conf/apache2-httpd.conf: Ditto. |
| * http/conf/cygwin-httpd.conf: Ditto. |
| * http/conf/fedora-httpd.conf: Ditto. |
| |
| 2012-10-26 Simon Fraser <simon.fraser@apple.com> |
| |
| compositing/tiling/huge-layer* flakey |
| https://bugs.webkit.org/show_bug.cgi?id=48454 |
| |
| Reviewed by Dan Bernstein. |
| |
| In r131009 I fixed layerTreeAsText() to not be flakey with tiled layers, by ensuring that |
| we flush layer state before dumping the layer tree. That makes these tests non-flakey. I was |
| also able to remove all the setTimeouts() from these tests. |
| |
| The 'usingTiledLayer' property is only dumped on Mac, so made cross-platform results without |
| this flag, and added Mac-specific results with it. |
| |
| Unskipped some tests on non-Mac platforms that should now pass. |
| |
| * compositing/tiling/backface-preserve-3d-tiled-expected.txt: |
| * compositing/tiling/crash-reparent-tiled-layer-expected.txt: |
| * compositing/tiling/huge-layer-add-remove-child-expected.txt: |
| * compositing/tiling/huge-layer-add-remove-child.html: Added. |
| * compositing/tiling/huge-layer-add-remove-child.html-disabled: Removed. |
| * compositing/tiling/huge-layer-expected.txt: |
| * compositing/tiling/huge-layer-img-expected.txt: |
| * compositing/tiling/huge-layer-img.html: Renamed from LayoutTests/compositing/tiling/huge-layer-img.html-disabled. |
| * compositing/tiling/huge-layer-resize-expected.txt: |
| * compositing/tiling/huge-layer-with-layer-children-expected.txt: |
| * compositing/tiling/huge-layer-with-layer-children-resize-expected.txt: |
| * compositing/tiling/huge-layer-with-layer-children-resize.html: Added. |
| * compositing/tiling/huge-layer-with-layer-children-resize.html-disabled: Removed. |
| * compositing/tiling/huge-layer-with-layer-children.html: Renamed from LayoutTests/compositing/tiling/huge-layer-with-layer-children.html-disabled. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/mac/compositing/tiling/backface-preserve-3d-tiled-expected.txt: Copied from LayoutTests/compositing/tiling/backface-preserve-3d-tiled-expected.txt. |
| * platform/mac/compositing/tiling/crash-reparent-tiled-layer-expected.txt: Copied from LayoutTests/compositing/tiling/crash-reparent-tiled-layer-expected.txt. |
| * platform/mac/compositing/tiling/huge-layer-add-remove-child-expected.txt: Copied from LayoutTests/compositing/tiling/huge-layer-add-remove-child-expected.txt. |
| * platform/mac/compositing/tiling/huge-layer-expected.txt: Copied from LayoutTests/compositing/tiling/huge-layer-expected.txt. |
| * platform/mac/compositing/tiling/huge-layer-img-expected.txt: Copied from LayoutTests/compositing/tiling/huge-layer-img-expected.txt. |
| * platform/mac/compositing/tiling/huge-layer-resize-expected.txt: Copied from LayoutTests/compositing/tiling/huge-layer-resize-expected.txt. |
| * platform/mac/compositing/tiling/huge-layer-with-layer-children-expected.txt: Copied from LayoutTests/compositing/tiling/huge-layer-with-layer-children-expected.txt. |
| * platform/mac/compositing/tiling/huge-layer-with-layer-children-resize-expected.txt: Copied from LayoutTests/compositing/tiling/huge-layer-with-layer-children-resize-expected.txt. |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-26 Nico Weber <thakis@chromium.org> |
| |
| [chromium] Enable fast/images/exif-orientation.html |
| https://bugs.webkit.org/show_bug.cgi?id=100534 |
| |
| Unreviewed, TestExpecations change. |
| |
| The baselines for this test landed yesterday. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-26 Florin Malita <fmalita@chromium.org> |
| |
| Crash on loading SVG filter resource on HTML element |
| https://bugs.webkit.org/show_bug.cgi?id=100491 |
| |
| Reviewed by Dirk Schulze. |
| |
| * svg/filters/filter-reference-crash-expected.txt: Added. |
| * svg/filters/filter-reference-crash.html: Added. |
| |
| 2012-10-26 Jussi Kukkonen <jussi.kukkonen@intel.com> |
| |
| [WK2] should enable two postredirect tests |
| https://bugs.webkit.org/show_bug.cgi?id=100508 |
| |
| Unreviewed gardening. |
| |
| The EFL results for these tests seem to have been wrong from the beginning. |
| Update expected results, enable tests for WK2 (based on comment in |
| TestExpectations these were skipped because efl failed). |
| |
| * platform/efl/http/tests/navigation/postredirect-basic-expected.png: |
| * platform/efl/http/tests/navigation/postredirect-basic-expected.txt: |
| * platform/efl/http/tests/navigation/postredirect-goback1-expected.png: |
| * platform/efl/http/tests/navigation/postredirect-goback1-expected.txt: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-26 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Skip a few tests which produce wrong pixel expectations. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-26 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Add custom expectation for test added in r131557. |
| |
| * platform/efl/fast/replaced/border-radius-clip-content-edge-expected.png: Added. |
| |
| 2012-10-26 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132612. |
| http://trac.webkit.org/changeset/132612 |
| https://bugs.webkit.org/show_bug.cgi?id=100512 |
| |
| Crashes fast/events/tabindex-focus-blur-all.html in debug mode |
| (Requested by pfeldman on #webkit). |
| |
| * fast/table/col-span-change-relayout-expected.txt: Removed. |
| * fast/table/col-span-change-relayout.html: Removed. |
| * fast/table/simplified-layout-table-expected.html: Removed. |
| * fast/table/simplified-layout-table.html: Removed. |
| |
| 2012-10-26 Dominik Röttsches <dominik.rottsches@intel.com> |
| |
| Unreviewed Apple Win gardening. |
| |
| * platform/win/TestExpectations: Skipping XHR timeout tests. |
| |
| 2012-10-26 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed. Removing bogus '#EOF\n' data in the listed PNG file that's |
| positioned after the IEND PNG chunk. |
| |
| * platform/qt-5.0/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: |
| |
| 2012-10-26 Kenneth Rohde Christiansen <kenneth@webkit.org> |
| |
| Printing should use use high resolution images when available |
| https://bugs.webkit.org/show_bug.cgi?id=100488 |
| |
| Reviewed by Antti Koivisto. |
| |
| The images loaded using -webkit-device-pixel-ratio depends on |
| the display type (deviceScaleFactor) and thus affects which |
| images are being used for printing. Printing should always |
| use the higher resolution images (aka 'retina' images). |
| |
| Added a test testing -webkit-device-pixel-ratio media query |
| in conjuntion with 'print' media type. |
| |
| * fast/media/mq-pixel-ratio-print-expected.txt: Added. |
| * fast/media/mq-pixel-ratio-print.html: Added. |
| |
| 2012-10-26 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] ... And another pixel rebaseline after r131941 and r131991. |
| |
| * platform/efl/http/tests/misc/slow-loading-image-in-pattern-expected.png: |
| |
| 2012-10-26 'Pavel Feldman' <pfeldman@chromium.org> |
| |
| Not reviewed: chromium baselines for selection-after-remove updated. |
| |
| * platform/chromium-mac-lion/fast/repaint/selection-after-remove-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/selection-after-remove-expected.png: |
| * platform/chromium-win/fast/repaint/selection-after-remove-expected.png: |
| |
| 2012-10-26 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132607. |
| http://trac.webkit.org/changeset/132607 |
| https://bugs.webkit.org/show_bug.cgi?id=100502 |
| |
| "SOS! More wrong paths." (Requested by kbalazs on #webkit). |
| |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-iframe-zIndex-expected.png: Removed. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-remove-ancestor-after-expected.png: Removed. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-stacking-context-expected.png: Removed. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-zIndex-after-expected.png: Removed. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-zIndex-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-appendItem-expected.png/SVGLengthList-appendItem-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-basics-expected.png/SVGLengthList-basics-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-getItem-expected.png/SVGLengthList-getItem-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-initialize-expected.png/SVGLengthList-initialize-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-insertItemBefore-expected.png/SVGLengthList-insertItemBefore-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-removeItem-expected.png/SVGLengthList-removeItem-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-replaceItem-expected.png/SVGLengthList-replaceItem-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-xml-dom-modifications-expected.png/SVGLengthList-xml-dom-modifications-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGLocatable-getCTM-svg-root-expected.png/SVGLocatable-getCTM-svg-root-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGNumberList-basics-expected.png/SVGNumberList-basics-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-appendItem-expected.png/SVGPathSegList-appendItem-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-clear-and-initialize-expected.png/SVGPathSegList-clear-and-initialize-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-insertItemBefore-expected.png/SVGPathSegList-insertItemBefore-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-removeItem-expected.png/SVGPathSegList-removeItem-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-replaceItem-expected.png/SVGPathSegList-replaceItem-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png/SVGPathSegList-xml-dom-synchronization-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGPointList-basics-expected.png/SVGPointList-basics-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGStringList-basics-expected.png/SVGStringList-basics-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/dom/SVGTransformList-basics-expected.png/SVGTransformList-basics-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/filters/feImage-animated-transform-on-target-rect-expected.png/feImage-animated-transform-on-target-rect-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/repaint/image-href-change-expected.png/image-href-change-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/repaint/image-with-clip-path-expected.png/image-with-clip-path-expected.png: Removed. |
| |
| 2012-10-26 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132604. |
| http://trac.webkit.org/changeset/132604 |
| https://bugs.webkit.org/show_bug.cgi?id=100501 |
| |
| "SOS! Wrong paths." (Requested by kbalazs on #webkit). |
| |
| * platform/qt-5.0-wk2/css3/filters/filter-empty-element-crash-expected.png: Removed. |
| * platform/qt-5.0-wk2/css3/filters/multiple-filters-invalidation-expected.png: Removed. |
| * platform/qt-5.0-wk2/css3/flexbox/repaint-expected.png: Removed. |
| * platform/qt-5.0-wk2/css3/flexbox/repaint-rtl-column-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/borders/border-shadow-large-radius-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/borders/outline-alpha-block-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/borders/outline-alpha-inline-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/box-shadow/box-shadow-clipped-slices-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/box-shadow/no-blur-multiple-offsets-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-composite-fill-repaint-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-composite-transformclip-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-empty-image-pattern-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-imageSmoothingEnabled-patterns-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-resize-after-paint-without-layout-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-resize-reset-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-transforms-during-path-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/gradient-add-second-start-end-stop-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/image-pattern-rotate-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/canvas/toDataURL-alpha-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/css/border-radius-non-negative-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/css/linear-gradient-currentcolor-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-transform-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/forms/file/file-input-pressed-state-expected.png/file-input-pressed-state-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-color-stop-units-expected.png/css3-color-stop-units-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-color-stops-expected.png/css3-color-stops-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-linear-angle-gradients-expected.png/css3-linear-angle-gradients-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-linear-right-angle-gradients-expected.png/css3-linear-right-angle-gradients-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-radial-gradients-expected.png/css3-radial-gradients-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-radial-gradients2-expected.png/css3-radial-gradients2-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-radial-gradients3-expected.png/css3-radial-gradients3-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-repeating-linear-gradients-expected.png/css3-repeating-linear-gradients-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-repeating-linear-gradients2-expected.png/css3-repeating-linear-gradients2-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/css3-repeating-radial-gradients-expected.png/css3-repeating-radial-gradients-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/gradients/gradient-after-transparent-border-expected.png/gradient-after-transparent-border-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/jpeg-with-color-profile-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/paint-subrect-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/paint-subrect-grid-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/png-suite/test-expected.png/test-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/png-with-color-profile-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/rgb-jpeg-with-adobe-marker-only-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/rgb-png-with-cmyk-color-profile-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/images/ycbcr-with-cmyk-color-profile-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/layers/scroll-with-transform-composited-layer-expected.png/scroll-with-transform-composited-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/layers/scroll-with-transform-layer-expected.png/scroll-with-transform-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/absolute-position-changed-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-and-absolute-position-scrolled-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-position-transparency-with-overflow-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/nested-iframe-scroll-inner-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/nested-iframe-scroll-outer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-auto-in-overflow-auto-scrolled-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-hide-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-scroll-in-overflow-scroll-scrolled-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-show-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-absolute-layer-with-reflection-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-layer-with-reflection-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-layer-with-transformed-parent-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-in-clipped-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-in-fixed-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-in-transformed-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-inside-table-cell-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-relative-table-inside-table-cell-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-with-transformed-parent-layer-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/table-overflow-auto-in-overflow-auto-scrolled-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/repaint/table-overflow-scroll-in-overflow-scroll-scrolled-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/replaced/outline-replaced-elements-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/scrolling/scrollbar-tickmarks-styled-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/table/table-row-focus-ring-paint-expected.png: Removed. |
| |
| 2012-10-26 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] More pixel rebaselines after r131941 and r131991. |
| |
| * platform/efl/fast/backgrounds/solid-color-context-restore-expected.png: |
| * platform/efl/fast/dynamic/containing-block-change-expected.png: |
| * platform/efl/fast/forms/listbox-clip-expected.png: |
| * platform/efl/fast/frames/inline-object-inside-frameset-expected.png: |
| * platform/efl/fast/layers/add-layer-with-nested-stacking-expected.png: Added. |
| * platform/efl/fast/layers/inline-dirty-z-order-lists-expected.png: |
| * platform/efl/fast/layers/layer-content-visibility-change-expected.png: |
| * platform/efl/fast/layers/remove-layer-with-nested-stacking-expected.png: |
| * platform/efl/fast/reflections/inline-crash-expected.png: |
| * platform/efl/fast/replaced/width100percent-textarea-expected.png: |
| * platform/efl/fast/text/font-initial-expected.png: |
| |
| 2012-10-26 Takashi Sakamoto <tasak@google.com> |
| |
| [Shadow]: removing styles in shadow dom subtree causes crash. |
| https://bugs.webkit.org/show_bug.cgi?id=100455 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/dom/shadow/remove-styles-in-shadow-crash-expected.txt: Added. |
| * fast/dom/shadow/remove-styles-in-shadow-crash.html: Added. |
| |
| 2012-10-26 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Gardening to make the bots green |
| https://bugs.webkit.org/show_bug.cgi?id=100481 |
| |
| Unreviewed EFL gardening. |
| |
| Skip failing test and also unskip tests that are |
| consistently passing. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-26 Takashi Sakamoto <tasak@google.com> |
| |
| [Shadow DOM] Needs @host rule for ShadowDOM styling |
| https://bugs.webkit.org/show_bug.cgi?id=88606 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/dom/shadow/athost-atrules-expected.txt: Added. |
| * fast/dom/shadow/athost-atrules.html: Added. |
| |
| 2012-10-26 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Fix test pixel expectation. |
| |
| * platform/efl/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png: |
| |
| 2012-10-26 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| RenderTableCol::computePreferredLogicalWidths and RenderTableCol::layout should never be called |
| https://bugs.webkit.org/show_bug.cgi?id=99861 |
| |
| Reviewed by Ojan Vafai. |
| |
| Added 2 tests: |
| - 1 to cover the code in RenderTableCol::updateFromElement. |
| - 1 to cover simplified layout on a table. |
| |
| * fast/table/col-span-change-relayout-expected.txt: Added. |
| * fast/table/col-span-change-relayout.html: Added. |
| * fast/table/simplified-layout-table-expected.html: Added. |
| * fast/table/simplified-layout-table.html: Added. |
| |
| 2012-10-26 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Added a bunch of pixel expectations for Qt-WebKit2 - part 5 (svg/dynamic-updates). |
| |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png: Added. |
| |
| 2012-10-26 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Added a bunch of pixel expectations for Qt-WebKit2 - part 4 (svg/dynamic-updates). |
| |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-baseFrequency-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-baseFrequency-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png: Added. |
| |
| 2012-10-26 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Added a bunch of pixel expectations for Qt-WebKit2 - part 4 (svg/dynamic-updates). |
| |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-baseFrequency-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-baseFrequency-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png: Added. |
| |
| 2012-10-26 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Added a bunch of pixel expectations for Qt-WebKit2 - part 3 (svg/dynamic-updates). |
| |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVG-dynamic-css-transform-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGAElement-dom-href-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGAElement-dom-target-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGAElement-svgdom-href-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGAElement-svgdom-target-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-dom-in2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-dom-mode-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-svgdom-in2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-svgdom-mode-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-type-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png: Added. |
| |
| 2012-10-26 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Added a bunch of pixel expectations for Qt-WebKit2 - part 1. |
| |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-iframe-zIndex-expected.png: Added. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-remove-ancestor-after-expected.png: Added. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-stacking-context-expected.png: Added. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-zIndex-after-expected.png: Added. |
| * platform/qt-5.0-wk2/fullscreen/fullscreen/full-screen-zIndex-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-appendItem-expected.png/SVGLengthList-appendItem-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-basics-expected.png/SVGLengthList-basics-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-getItem-expected.png/SVGLengthList-getItem-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-initialize-expected.png/SVGLengthList-initialize-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-insertItemBefore-expected.png/SVGLengthList-insertItemBefore-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-removeItem-expected.png/SVGLengthList-removeItem-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-replaceItem-expected.png/SVGLengthList-replaceItem-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLengthList-xml-dom-modifications-expected.png/SVGLengthList-xml-dom-modifications-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGLocatable-getCTM-svg-root-expected.png/SVGLocatable-getCTM-svg-root-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGNumberList-basics-expected.png/SVGNumberList-basics-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-appendItem-expected.png/SVGPathSegList-appendItem-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-clear-and-initialize-expected.png/SVGPathSegList-clear-and-initialize-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-insertItemBefore-expected.png/SVGPathSegList-insertItemBefore-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-removeItem-expected.png/SVGPathSegList-removeItem-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-replaceItem-expected.png/SVGPathSegList-replaceItem-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png/SVGPathSegList-xml-dom-synchronization-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGPointList-basics-expected.png/SVGPointList-basics-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGStringList-basics-expected.png/SVGStringList-basics-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/dom/SVGTransformList-basics-expected.png/SVGTransformList-basics-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/filters/feImage-animated-transform-on-target-rect-expected.png/feImage-animated-transform-on-target-rect-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/repaint/image-href-change-expected.png/image-href-change-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/repaint/image-with-clip-path-expected.png/image-with-clip-path-expected.png: Added. |
| |
| 2012-10-26 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Added a bunch of pixel expectations for Qt-WebKit2 - part 1. |
| |
| * platform/qt-5.0-wk2/css3/filters/filter-empty-element-crash-expected.png: Added. |
| * platform/qt-5.0-wk2/css3/filters/multiple-filters-invalidation-expected.png: Added. |
| * platform/qt-5.0-wk2/css3/flexbox/repaint-expected.png: Added. |
| * platform/qt-5.0-wk2/css3/flexbox/repaint-rtl-column-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-shadow-large-radius-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/outline-alpha-block-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/outline-alpha-inline-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/box-shadow/box-shadow-clipped-slices-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/box-shadow/no-blur-multiple-offsets-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-composite-fill-repaint-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-composite-transformclip-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-empty-image-pattern-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-imageSmoothingEnabled-patterns-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-resize-after-paint-without-layout-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-resize-reset-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-transforms-during-path-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/gradient-add-second-start-end-stop-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/image-pattern-rotate-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/toDataURL-alpha-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/css/border-radius-non-negative-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/css/linear-gradient-currentcolor-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-transform-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/forms/file/file-input-pressed-state-expected.png/file-input-pressed-state-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-color-stop-units-expected.png/css3-color-stop-units-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-color-stops-expected.png/css3-color-stops-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-linear-angle-gradients-expected.png/css3-linear-angle-gradients-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-linear-right-angle-gradients-expected.png/css3-linear-right-angle-gradients-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-radial-gradients-expected.png/css3-radial-gradients-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-radial-gradients2-expected.png/css3-radial-gradients2-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-radial-gradients3-expected.png/css3-radial-gradients3-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-repeating-linear-gradients-expected.png/css3-repeating-linear-gradients-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-repeating-linear-gradients2-expected.png/css3-repeating-linear-gradients2-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/css3-repeating-radial-gradients-expected.png/css3-repeating-radial-gradients-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/gradients/gradient-after-transparent-border-expected.png/gradient-after-transparent-border-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/jpeg-with-color-profile-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/paint-subrect-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/paint-subrect-grid-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/png-suite/test-expected.png/test-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/png-with-color-profile-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/rgb-jpeg-with-adobe-marker-only-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/rgb-png-with-cmyk-color-profile-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/ycbcr-with-cmyk-color-profile-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/layers/scroll-with-transform-composited-layer-expected.png/scroll-with-transform-composited-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/layers/scroll-with-transform-layer-expected.png/scroll-with-transform-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/absolute-position-changed-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-and-absolute-position-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-position-transparency-with-overflow-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/nested-iframe-scroll-inner-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/nested-iframe-scroll-outer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-auto-in-overflow-auto-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-hide-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-scroll-in-overflow-scroll-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/overflow-show-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-absolute-layer-with-reflection-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-layer-with-reflection-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-layer-with-transformed-parent-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-in-clipped-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-in-fixed-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-in-transformed-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-inside-table-cell-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-relative-table-inside-table-cell-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/scroll-with-transformed-parent-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/table-overflow-auto-in-overflow-auto-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/table-overflow-scroll-in-overflow-scroll-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/replaced/outline-replaced-elements-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/scrolling/scrollbar-tickmarks-styled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/table/table-row-focus-ring-paint-expected.png: Added. |
| |
| 2012-10-26 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt][WK2] Unreviewed gardening, skip a new failing test. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-26 Mihnea Ovidenie <mihnea@adobe.com> |
| |
| [CSSRegions] Add support for auto-height regions with region-breaks |
| https://bugs.webkit.org/show_bug.cgi?id=99952 |
| |
| Reviewed by David Hyatt. |
| |
| Add tests for auto logical height regions with content having region breaks. |
| |
| * fast/regions/autoheight-allregions-expected.html: Added. |
| * fast/regions/autoheight-allregions-nobreaks-expected.html: Added. |
| * fast/regions/autoheight-allregions-nobreaks.html: Added. |
| * fast/regions/autoheight-allregions.html: Added. |
| * fast/regions/autoheight-breakafteralways-maxheight-expected.html: Added. |
| * fast/regions/autoheight-breakafteralways-maxheight.html: Added. |
| * fast/regions/autoheight-breakbeforealways-expected.html: Added. |
| * fast/regions/autoheight-breakbeforealways.html: Added. |
| * fast/regions/autoheight-firstregion-breakalways-expected.html: Added. |
| * fast/regions/autoheight-firstregion-breakalways.html: Added. |
| * fast/regions/autoheight-lastregion-overflowauto-breaksignored-expected.html: Added. |
| * fast/regions/autoheight-lastregion-overflowauto-breaksignored.html: Added. |
| * fast/regions/autoheight-lastregion-overflowauto-expected.html: Added. |
| * fast/regions/autoheight-lastregion-overflowauto.html: Added. |
| * fast/regions/autoheight-middleregion-expected.html: Added. |
| * fast/regions/autoheight-middleregion.html: Added. |
| * fast/regions/autoheight-secondregion-breakoutside-expected.html: Added. |
| * fast/regions/autoheight-secondregion-breakoutside.html: Added. |
| * fast/regions/autoheight-secondregion-expected.html: Added. |
| * fast/regions/autoheight-secondregion.html: Added. |
| * fast/regions/autoheight-singleregion-breakafteralways-expected.html: Added. |
| * fast/regions/autoheight-singleregion-breakafteralways-maxheight-expected.html: Added. |
| * fast/regions/autoheight-singleregion-breakafteralways-maxheight.html: Added. |
| * fast/regions/autoheight-singleregion-breakafteralways.html: Added. |
| * fast/regions/autoheight-singleregion-breakaftermargin-expected.html: Added. |
| * fast/regions/autoheight-singleregion-breakaftermargin.html: Added. |
| * fast/regions/autoheight-singleregion-breakbeforealways-expected.html: Added. |
| * fast/regions/autoheight-singleregion-breakbeforealways-minheight-expected.html: Added. |
| * fast/regions/autoheight-singleregion-breakbeforealways-minheight.html: Added. |
| * fast/regions/autoheight-singleregion-breakbeforealways.html: Added. |
| * fast/regions/autoheight-singleregion-multiplebreaks-expected.html: Added. |
| * fast/regions/autoheight-singleregion-multiplebreaks.html: Added. |
| * fast/regions/autoheight-singleregion-overflowauto-breaksignored-expected.html: Added. |
| * fast/regions/autoheight-singleregion-overflowauto-breaksignored.html: Added. |
| * fast/regions/autoheight-singleregion-overflowauto-expected.html: Added. |
| * fast/regions/autoheight-singleregion-overflowauto.html: Added. |
| |
| 2012-10-26 Li Yin <li.yin@intel.com> |
| |
| fast/forms/file/input-file-write-files.html should cover correct setting value |
| https://bugs.webkit.org/show_bug.cgi?id=100085 |
| |
| Reviewed by Kentaro Hara. |
| |
| The test input-file-value.html is split from input-file-write-test.html. |
| And add correct setting value for files attribute, verify the files attribute |
| is writable or not. |
| |
| * fast/forms/file/input-file-value-expected.txt: Added. |
| * fast/forms/file/input-file-value.html: Added. |
| * fast/forms/file/input-file-write-files-expected.txt: |
| * fast/forms/file/input-file-write-files.html: |
| |
| 2012-10-26 Jinwoo Song <jinwoo7.song@samsung.com> |
| |
| [EFL] Gardening after bug 99824 |
| https://bugs.webkit.org/show_bug.cgi?id=100469 |
| |
| Unreviewed, EFL gardening. |
| |
| Unskip following 3 test cases after bug 99824 is resolved. |
| - fast/lists/w3-css3-list-styles-alphabetic.html |
| - fast/lists/w3-css3-list-styles-fallback-style.html |
| - fast/lists/w3-list-styles.html |
| |
| * platform/efl-wk1/TestExpectations: |
| |
| 2012-10-26 Jinwoo Song <jinwoo7.song@samsung.com> |
| |
| [EFL] Unskip svg/foreignObject/viewport-foreignobject-crash.html |
| https://bugs.webkit.org/show_bug.cgi?id=100467 |
| |
| Unreviewed, EFL gardening. |
| |
| Removing a test failure expectations, the test was fixed in r132548. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-27 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step.html fails every 3 days |
| https://bugs.webkit.org/show_bug.cgi?id=100480 |
| |
| Reviewed by Pavel Feldman. |
| |
| Because the date field in the test has step=3, the availability of |
| [Today] button depends on the current date. We make the test stable by |
| specifying max attribute. |
| |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step.html: |
| |
| 2012-10-26 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Generate less repaint calls during subtree detaching |
| https://bugs.webkit.org/show_bug.cgi?id=99741 |
| |
| Reviewed by Eric Seidel. |
| |
| * platform/chromium-linux/fast/repaint/selection-after-remove-expected.png: |
| Rebaselined this test after the change. It is progressing as we still properly repaint |
| the selection, but repaint less (ie don't repaint the top border which didn't change). |
| |
| 2012-10-26 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Test expectation update. |
| https://bugs.webkit.org/show_bug.cgi?id=100471 |
| |
| * platform/chromium/TestExpectations: |
| We should do rebaseline for time-suggestion-picker-*.html too. |
| |
| 2012-10-26 Kent Tamura <tkent@chromium.org> |
| |
| Disable ENABLE_INPUT_TYPE_WEEK on Chromium/Android |
| https://bugs.webkit.org/show_bug.cgi?id=100457 |
| |
| Reviewed by Kentaro Hara. |
| |
| * platform/chromium/TestExpectations: |
| Tests in fast/forms/week/ may fail on Android. |
| |
| 2012-10-26 Pavel Feldman <pfeldman@chromium.org> |
| |
| Not reviewed: chromiuim expectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-25 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel rebaseline. |
| |
| Adding new expectations, mark failures. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0-wk2/css3/flexbox/repaint-during-resize-no-flex-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/bgCompositeCopy-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize01-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize02-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize04-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize05-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize06-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize07-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize12-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize13-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize14-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize17-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize18-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize19-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize20-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize21-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize22-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/css/arrow-with-shadow-expected.png: Added. |
| * platform/qt/TestExpectations: |
| * platform/qt/animations/state-at-end-event-expected.png: Added. |
| * platform/qt/compositing/overflow/clipping-ancestor-with-accelerated-scrolling-ancestor-expected.png: Added. |
| * platform/qt/compositing/overflow/nested-scrolling-expected.png: Added. |
| * platform/qt/compositing/overflow/overflow-clip-with-accelerated-scrolling-ancestor-expected.png: Added. |
| * platform/qt/compositing/overflow/remove-overflow-crash2-expected.png: Added. |
| * platform/qt/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t1008-c44-ln-box-02-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t100801-c544-valgn-01-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t100801-c548-ln-ht-02-b-ag-expected.png: Added. |
| * platform/qt/css2.1/t1202-counters-04-b-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-00-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-01-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-02-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-03-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-04-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-05-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t1601-c547-indent-00-b-a-expected.png: Added. |
| * platform/qt/css2.1/t1602-c43-center-00-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t1604-c542-letter-sp-00-b-a-expected.png: Added. |
| * platform/qt/css2.1/t1604-c542-letter-sp-01-b-a-expected.png: Added. |
| * platform/qt/css2.1/t1605-c545-txttrans-00-b-ag-expected.png: Added. |
| * platform/qt/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/qt/css3/flexbox/flexbox-baseline-margins-expected.png: Added. |
| * platform/qt/css3/flexbox/repaint-during-resize-no-flex-expected.png: Added. |
| * platform/qt/fast/backgrounds/bgCompositeCopy-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize01-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize02-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize03-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize04-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize05-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize06-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize07-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize08-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize09-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize10-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize11-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize12-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize13-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize14-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize17-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize18-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize19-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize20-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize21-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize22-expected.png: Added. |
| * platform/qt/fast/block/float/009-expected.png: Added. |
| * platform/qt/fast/block/float/034-expected.png: Added. |
| * platform/qt/fast/block/float/4145535Crash-expected.png: Added. |
| * platform/qt/fast/block/float/negative-margin-clear-expected.png: Added. |
| * platform/qt/fast/block/float/nowrap-clear-min-width-expected.png: Added. |
| * platform/qt/fast/borders/border-image-scaled-gradient-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-circle-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-groove-01-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-groove-02-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-groove-03-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-valid-border-clipping-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-01-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-02-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-03-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDashed04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDashed05-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDashed06-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDotted04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDotted05-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDotted06-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble05-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble06-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble07-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble08-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble09-expected.png: Added. |
| * platform/qt/fast/borders/outline-offset-min-assert-expected.png: Added. |
| * platform/qt/fast/css/006-expected.png: Added. |
| * platform/qt/fast/css/background-clip-values-expected.png: Added. |
| * platform/qt/fast/css/bogus-color-span-expected.png: Added. |
| * platform/qt/fast/css/box-shadow-and-border-radius-expected.png: |
| * platform/qt/fast/css/content-dynamic-expected.png: Added. |
| * platform/qt/fast/css/contentDiv-expected.png: Added. |
| * platform/qt/fast/css/contentDivWithChildren-expected.png: Added. |
| * platform/qt/fast/css/contentImage-expected.png: Added. |
| * platform/qt/fast/css/pseudo-first-line-border-width-expected.png: Added. |
| * platform/qt/fast/css/replaced-element-implicit-size-expected.png: Added. |
| * platform/qt/fast/dom/attr_dead_doc-expected.png: Added. |
| * platform/qt/fast/dom/css-cached-import-rule-expected.png: Added. |
| * platform/qt/fast/dom/css-insert-import-rule-expected.png: Added. |
| * platform/qt/fast/dynamic/001-expected.png: Added. |
| * platform/qt/fast/dynamic/005-expected.png: Added. |
| * platform/qt/fast/dynamic/anonymous-block-layer-lost-expected.png: Added. |
| * platform/qt/fast/dynamic/staticY-expected.png: Added. |
| * platform/qt/fast/forms/002-expected.png: Added. |
| * platform/qt/fast/forms/003-expected.png: Added. |
| * platform/qt/fast/forms/004-expected.png: Added. |
| * platform/qt/fast/forms/005-expected.png: Added. |
| * platform/qt/fast/forms/006-expected.png: Added. |
| * platform/qt/fast/forms/007-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label01-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label02-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label03-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label04-expected.png: Added. |
| * platform/qt/fast/forms/button-submit-expected.png: Added. |
| * platform/qt/fast/forms/caret-rtl-expected.png: Added. |
| * platform/qt/fast/forms/control-clip-expected.png: Added. |
| * platform/qt/fast/forms/fieldset-with-float-expected.png: Added. |
| * platform/qt/fast/forms/form-added-to-table-expected.png: Added. |
| * platform/qt/fast/forms/form-in-malformed-markup-expected.png: Added. |
| * platform/qt/fast/forms/formmove-expected.png: Added. |
| * platform/qt/fast/forms/formmove2-expected.png: Added. |
| * platform/qt/fast/forms/image-border-expected.png: Added. |
| * platform/qt/fast/forms/indeterminate-expected.png: Added. |
| * platform/qt/fast/forms/input-align-image-expected.png: Added. |
| * platform/qt/fast/forms/input-first-letter-expected.png: Added. |
| * platform/qt/fast/forms/input-no-renderer-expected.png: Added. |
| * platform/qt/fast/forms/linebox-overflow-in-textarea-padding-expected.png: Added. |
| * platform/qt/fast/forms/menulist-deselect-update-expected.png: Added. |
| * platform/qt/fast/forms/menulist-no-overflow-expected.png: Added. |
| * platform/qt/fast/forms/option-index-expected.png: Added. |
| * platform/qt/fast/forms/option-script-expected.png: Added. |
| * platform/qt/fast/forms/option-text-clip-expected.png: Added. |
| * platform/qt/fast/forms/preserveFormDuringResidualStyle-expected.png: Added. |
| * platform/qt/fast/forms/range/thumbslider-no-parent-slider-expected.png: Added. |
| * platform/qt/fast/forms/select-align-expected.png: Added. |
| * platform/qt/fast/forms/select-change-listbox-to-popup-expected.png: Added. |
| * platform/qt/fast/forms/select-dirty-parent-pref-widths-expected.png: Added. |
| * platform/qt/fast/forms/select-disabled-appearance-expected.png: Added. |
| * platform/qt/fast/forms/select-display-none-style-resolve-expected.png: Added. |
| * platform/qt/fast/forms/select-empty-option-height-expected.png: Added. |
| * platform/qt/fast/forms/select-selected-expected.png: Added. |
| * platform/qt/fast/forms/select-size-expected.png: Added. |
| * platform/qt/fast/forms/select-style-expected.png: Added. |
| * platform/qt/fast/forms/stuff-on-my-optgroup-expected.png: Added. |
| * platform/qt/fast/forms/textfield-overflow-by-value-update-expected.png: Added. |
| * platform/qt/fast/frames/002-expected.png: Added. |
| * platform/qt/fast/frames/calculate-round-expected.png: Added. |
| * platform/qt/fast/frames/content-opacity-1-expected.png: Added. |
| * platform/qt/fast/frames/content-opacity-2-expected.png: Added. |
| * platform/qt/fast/frames/empty-cols-attribute-expected.png: Added. |
| * platform/qt/fast/frames/empty-frame-src-expected.png: Added. |
| * platform/qt/fast/frames/frame-length-fractional-expected.png: Added. |
| * platform/qt/fast/frames/frame-set-whitespace-attributes-expected.png: Added. |
| * platform/qt/fast/frames/iframe-text-contents-expected.png: Added. |
| * platform/qt/fast/frames/no-frame-borders-expected.png: Added. |
| * platform/qt/fast/gradients/border-image-gradient-expected.png: Added. |
| * platform/qt/fast/gradients/border-image-gradient-sides-and-corners-expected.png: Added. |
| * platform/qt/fast/images/embed-image-expected.png: Added. |
| * platform/qt/fast/images/favicon-as-image-expected.png: Added. |
| * platform/qt/fast/images/image-css3-content-data-expected.png: Added. |
| * platform/qt/fast/images/object-image-expected.png: Added. |
| * platform/qt/fast/images/pdf-as-image-expected.png: Added. |
| * platform/qt/fast/inline-block/004-expected.png: Added. |
| * platform/qt/fast/inline-block/005-expected.png: Added. |
| * platform/qt/fast/invalid/015-expected.png: Added. |
| * platform/qt/fast/invalid/table-residual-style-crash-expected.png: Added. |
| * platform/qt/fast/js/exception-linenums-in-html-3-expected.png: Added. |
| * platform/qt/fast/js/missing-style-end-tag-js-expected.png: Added. |
| * platform/qt/fast/js/missing-title-end-tag-js-expected.png: Added. |
| * platform/qt/fast/layers/opacity-stacking-expected.png: Added. |
| * platform/qt/fast/layers/positioned-inside-root-with-margins-expected.png: Added. |
| * platform/qt/fast/layers/zindex-ridonkulous-expected.png: Added. |
| * platform/qt/fast/media/implicit-media-all-expected.png: Added. |
| * platform/qt/fast/media/media-query-invalid-value-expected.png: Added. |
| * platform/qt/fast/media/monochrome-expected.png: Added. |
| * platform/qt/fast/media/mq-min-pixel-ratio-expected.png: Added. |
| * platform/qt/fast/overflow/position-relative-expected.png: Added. |
| * platform/qt/fast/overflow/unreachable-content-test-expected.png: Added. |
| * platform/qt/fast/parser/comment-in-script-expected.png: Added. |
| * platform/qt/fast/parser/style-script-head-test-expected.png: Added. |
| * platform/qt/fast/reflections/table-cell-expected.png: Added. |
| * platform/qt/fast/repaint/background-generated-expected.png: Added. |
| * platform/qt/fast/repaint/background-misaligned-expected.png: Added. |
| * platform/qt/fast/repaint/canvas-putImageData-expected.png: Added. |
| * platform/qt/fast/repaint/erase-overflow-expected.png: Added. |
| * platform/qt/fast/repaint/float-in-new-block-with-layout-delta-expected.png: Added. |
| * platform/qt/fast/repaint/float-new-in-block-expected.png: Added. |
| * platform/qt/fast/repaint/inline-block-resize-expected.png: Added. |
| * platform/qt/fast/repaint/intermediate-layout-position-clip-expected.png: Added. |
| * platform/qt/fast/repaint/intermediate-layout-position-expected.png: Added. |
| * platform/qt/fast/repaint/layer-full-repaint-expected.png: Added. |
| * platform/qt/fast/repaint/table-col-background-expected.png: Added. |
| * platform/qt/fast/repaint/table-outer-border-expected.png: Added. |
| * platform/qt/fast/repaint/table-row-expected.png: Added. |
| * platform/qt/fast/repaint/table-section-overflow-expected.png: Added. |
| * platform/qt/fast/replaced/008-expected.png: Added. |
| * platform/qt/fast/replaced/image-tag-expected.png: Added. |
| * platform/qt/fast/replaced/selection-rect-expected.png: Added. |
| * platform/qt/fast/table/008-expected.png: Added. |
| * platform/qt/fast/table/024-expected.png: Added. |
| * platform/qt/fast/table/031-expected.png: Added. |
| * platform/qt/fast/table/caption-relayout-expected.png: Added. |
| * platform/qt/fast/table/colspanMinWidth-vertical-expected.png: Added. |
| * platform/qt/fast/table/div-as-col-span-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-inside-percent-table-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-div-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-small-percent-width-expected.png: Added. |
| * platform/qt/fast/table/giantRowspan-expected.png: Added. |
| * platform/qt/fast/table/growCellForImageQuirk-expected.png: Added. |
| * platform/qt/fast/table/percent-widths-stretch-expected.png: Added. |
| * platform/qt/fast/table/vertical-align-baseline-readjust-expected.png: Added. |
| * platform/qt/fast/text/align-center-rtl-spill-expected.png: Added. |
| * platform/qt/fast/text/basic/013-expected.png: Added. |
| * platform/qt/fast/text/basic/015-expected.png: Added. |
| * platform/qt/fast/text/line-breaks-expected.png: Added. |
| * platform/qt/fast/text/soft-hyphen-3-expected.png: Added. |
| * platform/qt/fast/text/stripNullFromText-expected.png: Added. |
| * platform/qt/fast/text/whitespace/017-expected.png: Added. |
| * platform/qt/fast/tokenizer/missing-style-end-tag-1-expected.png: Added. |
| * platform/qt/fast/tokenizer/missing-style-end-tag-2-expected.png: Added. |
| * platform/qt/fast/tokenizer/script-after-frameset-expected.png: Added. |
| * platform/qt/fast/xsl/xslt-mismatched-tags-in-xslt-expected.png: Added. |
| * platform/qt/http/tests/security/contentSecurityPolicy/xsl-blocked-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-1-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-2-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-3-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-6-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-tiled-background-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-width-100p-as-background-expected.png: Added. |
| * platform/qt/svg/as-image/svg-as-image-expected.png: Added. |
| * platform/qt/svg/as-image/svg-as-relative-image-expected.png: Added. |
| * platform/qt/svg/css/arrow-with-shadow-expected.png: Added. |
| * platform/qt/svg/css/circle-in-mask-with-shadow-expected.png: Added. |
| * platform/qt/svg/css/path-with-shadow-expected.png: Added. |
| * platform/qt/svg/css/shadow-and-opacity-expected.png: Added. |
| * platform/qt/svg/css/shadow-with-large-radius-expected.png: Added. |
| * platform/qt/svg/css/shadow-with-negative-offset-expected.png: Added. |
| * platform/qt/svg/custom/animation-currentColor-expected.png: Added. |
| * platform/qt/svg/custom/clip-path-id-changes-expected.png: Added. |
| * platform/qt/svg/custom/createImageElement-expected.png: Added. |
| * platform/qt/svg/custom/gradient-userSpaceOnUse-with-percentage-expected.png: Added. |
| * platform/qt/svg/custom/js-repaint-rect-on-path-with-stroke-expected.png: Added. |
| * platform/qt/svg/custom/js-update-image-and-display-expected.png: Added. |
| * platform/qt/svg/custom/js-update-image-and-display2-expected.png: Added. |
| * platform/qt/svg/custom/js-update-image-and-display3-expected.png: Added. |
| * platform/qt/svg/custom/marker-opacity-expected.png: Added. |
| * platform/qt/svg/custom/marker-referencePoint-expected.png: Added. |
| * platform/qt/svg/custom/marker-strokeWidth-changes-expected.png: Added. |
| * platform/qt/svg/custom/mask-on-multiple-objects-expected.png: Added. |
| * platform/qt/svg/custom/mask-with-default-value-expected.png: Added. |
| * platform/qt/svg/custom/outer-svg-unknown-feature-expected.png: Added. |
| * platform/qt/svg/custom/pan-direction-expected.png: Added. |
| * platform/qt/svg/custom/pattern-excessive-malloc-expected.png: Added. |
| * platform/qt/svg/custom/repaint-shadow-expected.png: Added. |
| * platform/qt/svg/custom/transformedMaskFails-expected.png: Added. |
| * platform/qt/svg/custom/use-inherit-style-expected.png: Added. |
| * platform/qt/svg/custom/xhtml-no-svg-renderer-expected.png: Added. |
| * platform/qt/svg/filters/feGaussianBlur-expected.png: Added. |
| * platform/qt/svg/filters/feLighting-crash-expected.png: Added. |
| * platform/qt/svg/filters/feMerge-expected.png: Added. |
| * platform/qt/svg/filters/feMerge-wrong-input-expected.png: Added. |
| * platform/qt/svg/filters/feOffset-expected.png: Added. |
| * platform/qt/svg/filters/feTile-expected.png: Added. |
| * platform/qt/svg/filters/filter-clip-expected.png: Added. |
| * platform/qt/svg/filters/filter-rounding-issues-expected.png: Added. |
| * platform/qt/svg/filters/shadow-on-filter-expected.png: Added. |
| * platform/qt/svg/filters/shadow-on-rect-with-filter-expected.png: Added. |
| * platform/qt/svg/filters/subRegion-in-userSpace-expected.png: Added. |
| * platform/qt/svg/hixie/error/006-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/adforce_imgis_com-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug120107-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug1271-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug12908-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug12910-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug131020-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug13169-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug137388-3-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug1818-3-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug1818-6-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug196870-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug222336-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug222467-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug269566-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug277062-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug28933-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug2954-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug50695-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug56201-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug8032-2-expected.png: Added. |
| * platform/qt/tables/mozilla/core/col_widths_fix_autoFixPer-expected.png: Added. |
| * platform/qt/transitions/opacity-transition-zindex-expected.png: Added. |
| * platform/qt/transitions/transition-end-event-rendering-expected.png: Added. |
| |
| 2012-10-26 'Pavel Feldman' <pfeldman@chromium.org> |
| |
| Not reviewed: chromiuim expectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-26 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium-Win] Support shortTimeFormat |
| https://bugs.webkit.org/show_bug.cgi?id=100471 |
| |
| Reviewed by Kentaro Hara. |
| |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-26 Nandor Huszka <hnandor@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening. |
| |
| Skip a new failing test introduced in r132554 that fails on 32 bit platforms. |
| Remove another one that does not exists already. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-25 Adam Barth <abarth@webkit.org> |
| |
| Unreviewed. |
| |
| Skipping these tests again because Bug 96951 isn't actually fixed. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-25 Nico Weber <thakis@chromium.org> |
| |
| [chromium] Add expectations for fast/images/exif-orientation.html |
| https://bugs.webkit.org/show_bug.cgi?id=100434 |
| |
| Unreviewed, just baselines. |
| |
| * platform/chromium-linux/fast/images/exif-orientation-expected.png: Added. |
| * platform/chromium-mac-lion/fast/images/exif-orientation-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/images/exif-orientation-expected.png: Added. |
| * platform/chromium-mac/fast/images/exif-orientation-expected.png: Added. |
| * platform/chromium-win/fast/images/exif-orientation-expected.png: Added. |
| * platform/chromium/fast/images/exif-orientation-expected.png: Removed. |
| |
| 2012-10-25 Min Qin <qinmin@chromium.org> |
| |
| Fix a layout test crash if a TestWebkitPlugin is put inside an iframe |
| https://bugs.webkit.org/show_bug.cgi?id=100406 |
| |
| Reviewed by Adam Barth. |
| |
| Test for adding a webplugin into an iframe and make sure it doesn't crash. |
| |
| * platform/chromium/plugins/plugin-inside-iframe-expected.txt: Added. |
| * platform/chromium/plugins/plugin-inside-iframe.html: Added. |
| * platform/chromium/plugins/resources/plugin-page.html: Added. |
| |
| 2012-10-25 Tom Sepez <tsepez@chromium.org> |
| |
| Test full-block-iframe-no-inherit.php generates an invalid X-XSS-PROTECTION header. |
| https://bugs.webkit.org/show_bug.cgi?id=100423 |
| |
| Reviewed by Adam Barth. |
| |
| Changed header syntax from full-block to mode=block. |
| |
| * http/tests/security/xssAuditor/full-block-iframe-no-inherit.php: |
| |
| 2012-10-25 Filip Pizlo <fpizlo@apple.com> |
| |
| DFG Arrayify elimination should replace it with GetButterfly rather than Phantom |
| https://bugs.webkit.org/show_bug.cgi?id=100441 |
| |
| Reviewed by Oliver Hunt and Gavin Barraclough. |
| |
| * fast/js/dfg-arrayify-elimination-expected.txt: Added. |
| * fast/js/dfg-arrayify-elimination.html: Added. |
| * fast/js/jsc-test-list: |
| * fast/js/script-tests/dfg-arrayify-elimination.js: Added. |
| (foo): |
| |
| 2012-10-25 Keishi Hattori <keishi@webkit.org> |
| |
| Hide popup while transitioning from the suggestion picker to the calendar picker |
| https://bugs.webkit.org/show_bug.cgi?id=99537 |
| |
| Reviewed by Kent Tamura. |
| |
| * fast/forms/resources/picker-common.js: |
| (popupOpenCallbackWrapper): Use didOpenPicker event. |
| |
| 2012-10-25 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132514. |
| http://trac.webkit.org/changeset/132514 |
| https://bugs.webkit.org/show_bug.cgi?id=100440 |
| |
| "Broke chromium content_browsertests AccessibilityAriaMenu |
| AccessibilityInputRange AccessibilityListMarkers" (Requested |
| by scheib on #webkit). |
| |
| * accessibility/aria-checkbox-sends-notification.html: |
| * accessibility/notification-listeners.html: |
| * fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification-expected.txt: |
| * fast/forms/time-multiple-fields/time-multiple-fields-ax-value-changed-notification-expected.txt: |
| * platform/chromium/accessibility/add-to-menu-list-crashes-expected.txt: |
| * platform/chromium/accessibility/add-to-menu-list-crashes.html: |
| * platform/chromium/accessibility/is-ignored-change-sends-notification-expected.txt: Removed. |
| * platform/chromium/accessibility/is-ignored-change-sends-notification.html: Removed. |
| * platform/chromium/accessibility/other-aria-attribute-change-sends-notification-expected.txt: Removed. |
| * platform/chromium/accessibility/other-aria-attribute-change-sends-notification.html: Removed. |
| * platform/chromium/accessibility/text-change-notification-expected.txt: Removed. |
| * platform/chromium/accessibility/text-change-notification.html: Removed. |
| |
| 2012-10-25 Vincent Scheib <scheib@chromium.org> |
| |
| Unreviewed rebaseline of tests failing after 132529 rolled out 132269. |
| |
| See http://trac.webkit.org/changeset/132529 for details of the rollout. |
| |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| |
| 2012-10-25 Filip Pizlo <fpizlo@apple.com> |
| |
| REGRESSION (r131793-r131826): Crash going to wikifonia.org |
| https://bugs.webkit.org/show_bug.cgi?id=100281 |
| |
| Reviewed by Oliver Hunt. |
| |
| * fast/js/jsc-test-list: |
| * fast/js/resolve-arguments-from-scope-expected.txt: Added. |
| * fast/js/resolve-arguments-from-scope.html: Added. |
| * fast/js/script-tests/resolve-arguments-from-scope.js: Added. |
| (bar): |
| (foo): |
| |
| 2012-10-25 Simon Fraser <simon.fraser@apple.com> |
| |
| Tiled layers are missing content on zooming |
| https://bugs.webkit.org/show_bug.cgi?id=100422 |
| |
| Reviewed by Beth Dakin. |
| |
| New test for zooming with a tiled layer, and adjust an existing result. |
| |
| * compositing/tiling/tile-cache-zoomed-expected.txt: Added. |
| * compositing/tiling/tile-cache-zoomed.html: Added. |
| * platform/mac/tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt: |
| |
| 2012-10-25 Roger Fong <roger_fong@apple.com> |
| |
| Unreviewed. Add results for svg/custom/patter-scaling.svg on Windows after r132026. |
| |
| * platform/win/svg/custom/pattern-scaling-expected.txt: Added. |
| |
| 2012-10-25 Simon Fraser <simon.fraser@apple.com> |
| |
| Report the tile coverage rect in layer coords, and add some tests for tiled backing and zooming |
| https://bugs.webkit.org/show_bug.cgi?id=100416 |
| |
| Reviewed by Beth Dakin. |
| |
| New tests that exercise the page tiled backing under zooming. |
| |
| * platform/mac/tiled-drawing/tiled-drawing-zoom-expected.txt: Added. |
| * platform/mac/tiled-drawing/tiled-drawing-zoom-scrolled-expected.txt: Added. |
| * platform/mac/tiled-drawing/tiled-drawing-zoom-scrolled.html: Added. |
| * platform/mac/tiled-drawing/tiled-drawing-zoom.html: Added. |
| |
| 2012-10-25 Mariusz Grzegorczyk <mariusz.g@samsung.com> |
| |
| [EFL] Add baselines for non problematic tests in editing subcategories: deleting, inserting, selection and style. |
| https://bugs.webkit.org/show_bug.cgi?id=100126 |
| |
| Unreviewed EFL gardening. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/efl/editing/deleting/4922367-expected.png: Added. |
| * platform/efl/editing/deleting/4922367-expected.txt: Added. |
| * platform/efl/editing/deleting/5099303-expected.png: Added. |
| * platform/efl/editing/deleting/5099303-expected.txt: Added. |
| * platform/efl/editing/deleting/5126166-expected.png: Added. |
| * platform/efl/editing/deleting/5126166-expected.txt: Added. |
| * platform/efl/editing/deleting/5144139-2-expected.png: Added. |
| * platform/efl/editing/deleting/5144139-2-expected.txt: Added. |
| * platform/efl/editing/deleting/5206311-1-expected.png: Added. |
| * platform/efl/editing/deleting/5206311-1-expected.txt: Added. |
| * platform/efl/editing/deleting/5272440-expected.png: Added. |
| * platform/efl/editing/deleting/5272440-expected.txt: Added. |
| * platform/efl/editing/deleting/5369009-expected.png: Added. |
| * platform/efl/editing/deleting/5369009-expected.txt: Added. |
| * platform/efl/editing/deleting/5433862-2-expected.png: Added. |
| * platform/efl/editing/deleting/5433862-2-expected.txt: Added. |
| * platform/efl/editing/deleting/5483370-expected.png: Added. |
| * platform/efl/editing/deleting/5483370-expected.txt: Added. |
| * platform/efl/editing/deleting/collapse-whitespace-3587601-fix-expected.png: Added. |
| * platform/efl/editing/deleting/collapse-whitespace-3587601-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-3608445-fix-expected.png: Added. |
| * platform/efl/editing/deleting/delete-3608445-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-3608462-fix-expected.png: Added. |
| * platform/efl/editing/deleting/delete-3608462-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-3775172-fix-expected.png: Added. |
| * platform/efl/editing/deleting/delete-3775172-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-3857753-fix-expected.png: Added. |
| * platform/efl/editing/deleting/delete-3857753-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-3865854-fix-expected.png: Added. |
| * platform/efl/editing/deleting/delete-3865854-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-3928305-fix-expected.png: Added. |
| * platform/efl/editing/deleting/delete-3928305-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-4083333-fix-expected.png: Added. |
| * platform/efl/editing/deleting/delete-4083333-fix-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-after-span-ws-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-after-span-ws-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-after-span-ws-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-after-span-ws-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-after-span-ws-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-after-span-ws-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-and-undo-expected.png: Added. |
| * platform/efl/editing/deleting/delete-and-undo-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-004-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-004-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-005-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-005-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-006-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-006-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-007-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-007-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-008-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-008-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-009-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-009-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-010-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-010-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-011-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-paragraph-boundaries-011-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-at-start-or-end-expected.png: Added. |
| * platform/efl/editing/deleting/delete-at-start-or-end-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-contents-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-contents-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-contents-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-contents-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-contents-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-contents-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-004-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-004-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-005-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-005-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-006-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-006-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-007-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-007-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-008-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-008-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-009-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-009-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-010-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-010-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-011-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-011-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-012-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-012-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-013-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-013-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-014-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-014-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-015-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-015-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-016-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-016-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-017-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-017-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-018-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-018-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-019-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-019-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-020-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-020-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-021-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-021-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-022-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-022-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-023-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-023-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-024-expected.png: Added. |
| * platform/efl/editing/deleting/delete-block-merge-contents-024-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-004-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-004-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-005-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-005-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-006-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-006-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-007-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-007-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-008-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-008-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-009-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-009-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-010-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-010-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-br-013-expected.png: Added. |
| * platform/efl/editing/deleting/delete-br-013-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-character-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-character-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-contiguous-ws-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-contiguous-ws-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-first-list-item-expected.png: Added. |
| * platform/efl/editing/deleting/delete-first-list-item-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-hr-expected.png: Added. |
| * platform/efl/editing/deleting/delete-hr-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-image-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-image-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-image-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-image-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-image-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-image-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-image-004-expected.png: Added. |
| * platform/efl/editing/deleting/delete-image-004-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-leading-ws-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-leading-ws-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-004-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-004-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-005-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-005-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-006-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-006-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-007-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-007-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-008-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-008-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-009-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-009-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-010-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-010-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-011-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-012-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-012-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-013-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-013-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-014-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-014-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-015-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-015-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-016-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-016-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-017-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-017-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-end-ws-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-end-ws-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-line-end-ws-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-line-end-ws-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-listitem-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-listitem-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-listitem-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-listitem-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-selection-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-selection-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-tab-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-tab-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-tab-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-tab-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-tab-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-tab-004-expected.png: Added. |
| * platform/efl/editing/deleting/delete-to-select-table-expected.png: Added. |
| * platform/efl/editing/deleting/delete-to-select-table-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-trailing-ws-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-trailing-ws-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-trailing-ws-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-trailing-ws-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-001-expected.png: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-001-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-002-expected.png: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-002-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-003-expected.png: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-003-expected.txt: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-004-expected.png: Added. |
| * platform/efl/editing/deleting/delete-ws-fixup-004-expected.txt: Added. |
| * platform/efl/editing/deleting/forward-delete-expected.png: Added. |
| * platform/efl/editing/deleting/forward-delete-expected.txt: Added. |
| * platform/efl/editing/deleting/list-item-1-expected.png: Added. |
| * platform/efl/editing/deleting/list-item-1-expected.txt: Added. |
| * platform/efl/editing/deleting/merge-different-styles-expected.png: Added. |
| * platform/efl/editing/deleting/merge-different-styles-expected.txt: Added. |
| * platform/efl/editing/deleting/merge-endOfParagraph-expected.png: Added. |
| * platform/efl/editing/deleting/merge-endOfParagraph-expected.txt: Added. |
| * platform/efl/editing/deleting/merge-no-br-expected.png: Added. |
| * platform/efl/editing/deleting/merge-no-br-expected.txt: Added. |
| * platform/efl/editing/deleting/merge-unrendered-space-expected.png: Added. |
| * platform/efl/editing/deleting/merge-unrendered-space-expected.txt: Added. |
| * platform/efl/editing/deleting/merge-whitespace-pre-expected.png: Added. |
| * platform/efl/editing/deleting/merge-whitespace-pre-expected.txt: Added. |
| * platform/efl/editing/deleting/move-nodes-001-expected.png: Added. |
| * platform/efl/editing/deleting/move-nodes-001-expected.txt: Added. |
| * platform/efl/editing/deleting/non-smart-delete-expected.png: Added. |
| * platform/efl/editing/deleting/non-smart-delete-expected.txt: Added. |
| * platform/efl/editing/deleting/pruning-after-merge-2-expected.png: Added. |
| * platform/efl/editing/deleting/pruning-after-merge-2-expected.txt: Added. |
| * platform/efl/editing/deleting/smart-delete-001-expected.png: Added. |
| * platform/efl/editing/deleting/smart-delete-001-expected.txt: Added. |
| * platform/efl/editing/deleting/smart-delete-002-expected.png: Added. |
| * platform/efl/editing/deleting/table-cells-expected.png: Added. |
| * platform/efl/editing/deleting/table-cells-expected.txt: Added. |
| * platform/efl/editing/deleting/transpose-empty-expected.png: Added. |
| * platform/efl/editing/deleting/transpose-empty-expected.txt: Added. |
| * platform/efl/editing/deleting/type-delete-after-quote-expected.png: Added. |
| * platform/efl/editing/deleting/type-delete-after-quote-expected.txt: Added. |
| * platform/efl/editing/inserting/12882-expected.png: Added. |
| * platform/efl/editing/inserting/12882-expected.txt: Added. |
| * platform/efl/editing/inserting/4278698-expected.png: Added. |
| * platform/efl/editing/inserting/4278698-expected.txt: Added. |
| * platform/efl/editing/inserting/4840662-expected.png: Added. |
| * platform/efl/editing/inserting/4840662-expected.txt: Added. |
| * platform/efl/editing/inserting/4875189-1-expected.png: Added. |
| * platform/efl/editing/inserting/4875189-1-expected.txt: Added. |
| * platform/efl/editing/inserting/4875189-2-expected.png: Added. |
| * platform/efl/editing/inserting/4875189-2-expected.txt: Added. |
| * platform/efl/editing/inserting/4959067-expected.png: Added. |
| * platform/efl/editing/inserting/4959067-expected.txt: Added. |
| * platform/efl/editing/inserting/4960120-1-expected.png: Added. |
| * platform/efl/editing/inserting/4960120-1-expected.txt: Added. |
| * platform/efl/editing/inserting/4960120-2-expected.png: Added. |
| * platform/efl/editing/inserting/4960120-2-expected.txt: Added. |
| * platform/efl/editing/inserting/5002441-expected.png: Added. |
| * platform/efl/editing/inserting/5002441-expected.txt: Added. |
| * platform/efl/editing/inserting/5058163-1-expected.png: Added. |
| * platform/efl/editing/inserting/5058163-1-expected.txt: Added. |
| * platform/efl/editing/inserting/5058163-2-expected.png: Added. |
| * platform/efl/editing/inserting/5058163-2-expected.txt: Added. |
| * platform/efl/editing/inserting/5156401-2-expected.png: Added. |
| * platform/efl/editing/inserting/5156401-2-expected.txt: Added. |
| * platform/efl/editing/inserting/5418891-expected.png: Added. |
| * platform/efl/editing/inserting/5418891-expected.txt: Added. |
| * platform/efl/editing/inserting/5510537-expected.png: Added. |
| * platform/efl/editing/inserting/5510537-expected.txt: Added. |
| * platform/efl/editing/inserting/5549929-2-expected.png: Added. |
| * platform/efl/editing/inserting/5549929-2-expected.txt: Added. |
| * platform/efl/editing/inserting/5549929-3-expected.png: Added. |
| * platform/efl/editing/inserting/5549929-3-expected.txt: Added. |
| * platform/efl/editing/inserting/6703873-expected.png: Added. |
| * platform/efl/editing/inserting/6703873-expected.txt: Added. |
| * platform/efl/editing/inserting/editable-html-element-expected.png: Added. |
| * platform/efl/editing/inserting/editable-html-element-expected.txt: Added. |
| * platform/efl/editing/inserting/editable-inline-element-expected.png: Added. |
| * platform/efl/editing/inserting/editable-inline-element-expected.txt: Added. |
| * platform/efl/editing/inserting/edited-whitespace-1-expected.png: Added. |
| * platform/efl/editing/inserting/edited-whitespace-1-expected.txt: Added. |
| * platform/efl/editing/inserting/editing-empty-divs-expected.png: Added. |
| * platform/efl/editing/inserting/editing-empty-divs-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-3654864-fix-expected.png: Added. |
| * platform/efl/editing/inserting/insert-3654864-fix-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-3775316-fix-expected.png: Added. |
| * platform/efl/editing/inserting/insert-3775316-fix-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-3778059-fix-expected.png: Added. |
| * platform/efl/editing/inserting/insert-3778059-fix-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-3800346-fix-expected.png: Added. |
| * platform/efl/editing/inserting/insert-3800346-fix-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-3851164-fix-expected.png: Added. |
| * platform/efl/editing/inserting/insert-3851164-fix-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-after-delete-001-expected.png: Added. |
| * platform/efl/editing/inserting/insert-after-delete-001-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-at-end-01-expected.png: Added. |
| * platform/efl/editing/inserting/insert-at-end-01-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-at-end-02-expected.png: Added. |
| * platform/efl/editing/inserting/insert-at-end-02-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-001-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-001-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-002-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-002-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-003-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-003-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-004-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-004-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-005-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-005-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-006-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-006-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-007-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-007-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-008-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-008-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-009-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-009-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-at-tabspan-001-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-at-tabspan-001-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-at-tabspan-002-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-at-tabspan-002-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-at-tabspan-003-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-at-tabspan-003-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-001-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-001-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-002-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-002-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-003-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-003-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-004-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-004-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-005-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-005-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-006-expected.png: Added. |
| * platform/efl/editing/inserting/insert-br-quoted-006-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-001-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-001-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-002-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-002-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-003-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-003-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-004-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-004-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-005-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-005-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-006-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-006-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-007-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-007-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-008-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-008-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-009-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-009-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-010-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-010-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-011-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-011-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-012-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-012-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-013-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-013-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-014-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-014-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-015-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-015-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-016-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-016-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-017-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-017-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-018-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-018-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-019-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-019-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-020-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-020-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-022-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-022-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-023-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-023-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-024-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-024-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-025-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-025-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-026-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-026-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-div-027-expected.png: Added. |
| * platform/efl/editing/inserting/insert-div-027-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-paragraph-01-expected.png: Added. |
| * platform/efl/editing/inserting/insert-paragraph-01-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-paragraph-02-expected.png: Added. |
| * platform/efl/editing/inserting/insert-paragraph-02-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-paragraph-03-expected.png: Added. |
| * platform/efl/editing/inserting/insert-paragraph-03-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-paragraph-04-expected.png: Added. |
| * platform/efl/editing/inserting/insert-paragraph-04-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-paragraph-05-expected.png: Added. |
| * platform/efl/editing/inserting/insert-paragraph-05-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-space-in-empty-doc-expected.png: Added. |
| * platform/efl/editing/inserting/insert-space-in-empty-doc-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-tab-001-expected.png: Added. |
| * platform/efl/editing/inserting/insert-tab-001-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-tab-002-expected.png: Added. |
| * platform/efl/editing/inserting/insert-tab-002-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-tab-003-expected.png: Added. |
| * platform/efl/editing/inserting/insert-tab-003-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-tab-004-expected.png: Added. |
| * platform/efl/editing/inserting/insert-tab-004-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-text-at-tabspan-001-expected.png: Added. |
| * platform/efl/editing/inserting/insert-text-at-tabspan-001-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-text-at-tabspan-002-expected.png: Added. |
| * platform/efl/editing/inserting/insert-text-at-tabspan-002-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-text-at-tabspan-003-expected.png: Added. |
| * platform/efl/editing/inserting/insert-text-at-tabspan-003-expected.txt: Added. |
| * platform/efl/editing/inserting/insert-text-with-newlines-expected.png: Added. |
| * platform/efl/editing/inserting/insert-text-with-newlines-expected.txt: Added. |
| * platform/efl/editing/inserting/line-break-expected.png: Added. |
| * platform/efl/editing/inserting/line-break-expected.txt: Added. |
| * platform/efl/editing/inserting/multiple-lines-selected-expected.png: Added. |
| * platform/efl/editing/inserting/multiple-lines-selected-expected.txt: Added. |
| * platform/efl/editing/inserting/paragraph-separator-01-expected.png: Added. |
| * platform/efl/editing/inserting/paragraph-separator-01-expected.txt: Added. |
| * platform/efl/editing/inserting/paragraph-separator-02-expected.png: Added. |
| * platform/efl/editing/inserting/paragraph-separator-02-expected.txt: Added. |
| * platform/efl/editing/inserting/paragraph-separator-03-expected.png: Added. |
| * platform/efl/editing/inserting/paragraph-separator-03-expected.txt: Added. |
| * platform/efl/editing/inserting/paragraph-separator-in-table-1-expected.png: Added. |
| * platform/efl/editing/inserting/paragraph-separator-in-table-1-expected.txt: Added. |
| * platform/efl/editing/inserting/paragraph-separator-in-table-2-expected.png: Added. |
| * platform/efl/editing/inserting/paragraph-separator-in-table-2-expected.txt: Added. |
| * platform/efl/editing/inserting/redo-expected.png: Added. |
| * platform/efl/editing/inserting/redo-expected.txt: Added. |
| * platform/efl/editing/inserting/return-key-with-selection-001-expected.png: Added. |
| * platform/efl/editing/inserting/return-key-with-selection-001-expected.txt: Added. |
| * platform/efl/editing/inserting/return-key-with-selection-002-expected.png: Added. |
| * platform/efl/editing/inserting/return-key-with-selection-002-expected.txt: Added. |
| * platform/efl/editing/inserting/return-key-with-selection-003-expected.png: Added. |
| * platform/efl/editing/inserting/return-key-with-selection-003-expected.txt: Added. |
| * platform/efl/editing/inserting/typing-001-expected.png: Added. |
| * platform/efl/editing/inserting/typing-001-expected.txt: Added. |
| * platform/efl/editing/inserting/typing-002-expected.png: Added. |
| * platform/efl/editing/inserting/typing-002-expected.txt: Added. |
| * platform/efl/editing/inserting/typing-003-expected.png: Added. |
| * platform/efl/editing/inserting/typing-003-expected.txt: Added. |
| * platform/efl/editing/inserting/typing-around-br-001-expected.png: Added. |
| * platform/efl/editing/inserting/typing-around-br-001-expected.txt: Added. |
| * platform/efl/editing/inserting/typing-around-image-001-expected.png: Added. |
| * platform/efl/editing/inserting/typing-around-image-001-expected.txt: Added. |
| * platform/efl/editing/inserting/typing-at-end-of-line-expected.png: Added. |
| * platform/efl/editing/inserting/typing-at-end-of-line-expected.txt: Added. |
| * platform/efl/editing/selection/13804-expected.png: Added. |
| * platform/efl/editing/selection/13804-expected.txt: Added. |
| * platform/efl/editing/selection/14971-expected.png: Added. |
| * platform/efl/editing/selection/14971-expected.txt: Added. |
| * platform/efl/editing/selection/4402375-expected.png: Added. |
| * platform/efl/editing/selection/4402375-expected.txt: Added. |
| * platform/efl/editing/selection/4776665-expected.png: Added. |
| * platform/efl/editing/selection/4776665-expected.txt: Added. |
| * platform/efl/editing/selection/4818145-expected.png: Added. |
| * platform/efl/editing/selection/4818145-expected.txt: Added. |
| * platform/efl/editing/selection/4866671-expected.png: Added. |
| * platform/efl/editing/selection/4866671-expected.txt: Added. |
| * platform/efl/editing/selection/4889598-expected.png: Added. |
| * platform/efl/editing/selection/4889598-expected.txt: Added. |
| * platform/efl/editing/selection/4895428-2-expected.png: Added. |
| * platform/efl/editing/selection/4895428-2-expected.txt: Added. |
| * platform/efl/editing/selection/4932260-1-expected.png: Added. |
| * platform/efl/editing/selection/4932260-1-expected.txt: Added. |
| * platform/efl/editing/selection/4932260-2-expected.png: Added. |
| * platform/efl/editing/selection/4932260-2-expected.txt: Added. |
| * platform/efl/editing/selection/4932260-3-expected.png: Added. |
| * platform/efl/editing/selection/4932260-3-expected.txt: Added. |
| * platform/efl/editing/selection/4947387-expected.png: Added. |
| * platform/efl/editing/selection/4947387-expected.txt: Added. |
| * platform/efl/editing/selection/4960116-expected.png: Added. |
| * platform/efl/editing/selection/4960116-expected.txt: Added. |
| * platform/efl/editing/selection/4960137-expected.png: Added. |
| * platform/efl/editing/selection/4960137-expected.txt: Added. |
| * platform/efl/editing/selection/4983858-expected.png: Added. |
| * platform/efl/editing/selection/4983858-expected.txt: Added. |
| * platform/efl/editing/selection/5057506-2-expected.png: Added. |
| * platform/efl/editing/selection/5057506-2-expected.txt: Added. |
| * platform/efl/editing/selection/5076323-1-expected.png: Added. |
| * platform/efl/editing/selection/5076323-1-expected.txt: Added. |
| * platform/efl/editing/selection/5076323-2-expected.png: Added. |
| * platform/efl/editing/selection/5076323-2-expected.txt: Added. |
| * platform/efl/editing/selection/5076323-3-expected.png: Added. |
| * platform/efl/editing/selection/5076323-3-expected.txt: Added. |
| * platform/efl/editing/selection/5081257-1-expected.png: Added. |
| * platform/efl/editing/selection/5081257-1-expected.txt: Added. |
| * platform/efl/editing/selection/5081257-2-expected.png: Added. |
| * platform/efl/editing/selection/5081257-2-expected.txt: Added. |
| * platform/efl/editing/selection/5099303-expected.png: Added. |
| * platform/efl/editing/selection/5099303-expected.txt: Added. |
| * platform/efl/editing/selection/5131716-1-expected.png: Added. |
| * platform/efl/editing/selection/5131716-1-expected.txt: Added. |
| * platform/efl/editing/selection/5131716-2-expected.png: Added. |
| * platform/efl/editing/selection/5131716-2-expected.txt: Added. |
| * platform/efl/editing/selection/5131716-3-expected.png: Added. |
| * platform/efl/editing/selection/5131716-3-expected.txt: Added. |
| * platform/efl/editing/selection/5131716-4-expected.png: Added. |
| * platform/efl/editing/selection/5131716-4-expected.txt: Added. |
| * platform/efl/editing/selection/5195166-2-expected.png: Added. |
| * platform/efl/editing/selection/5195166-2-expected.txt: Added. |
| * platform/efl/editing/selection/5232159-expected.png: Added. |
| * platform/efl/editing/selection/5232159-expected.txt: Added. |
| * platform/efl/editing/selection/5234383-1-expected.png: Added. |
| * platform/efl/editing/selection/5234383-1-expected.txt: Added. |
| * platform/efl/editing/selection/5234383-2-expected.png: Added. |
| * platform/efl/editing/selection/5234383-2-expected.txt: Added. |
| * platform/efl/editing/selection/5240265-expected.png: Added. |
| * platform/efl/editing/selection/5240265-expected.txt: Added. |
| * platform/efl/editing/selection/5333725-expected.png: Added. |
| * platform/efl/editing/selection/5333725-expected.txt: Added. |
| * platform/efl/editing/selection/6476-expected.png: Added. |
| * platform/efl/editing/selection/6476-expected.txt: Added. |
| * platform/efl/editing/selection/7152-1-expected.png: Added. |
| * platform/efl/editing/selection/7152-1-expected.txt: Added. |
| * platform/efl/editing/selection/addRange-expected.png: Added. |
| * platform/efl/editing/selection/addRange-expected.txt: Added. |
| * platform/efl/editing/selection/after-line-wrap-expected.png: Added. |
| * platform/efl/editing/selection/after-line-wrap-expected.txt: Added. |
| * platform/efl/editing/selection/caret-ltr-2-expected.png: Added. |
| * platform/efl/editing/selection/caret-ltr-2-expected.txt: Added. |
| * platform/efl/editing/selection/caret-ltr-2-left-expected.png: Added. |
| * platform/efl/editing/selection/caret-ltr-2-left-expected.txt: Added. |
| * platform/efl/editing/selection/caret-ltr-expected.png: Added. |
| * platform/efl/editing/selection/caret-ltr-expected.txt: Added. |
| * platform/efl/editing/selection/caret-rtl-2-expected.png: Added. |
| * platform/efl/editing/selection/caret-rtl-2-expected.txt: Added. |
| * platform/efl/editing/selection/caret-rtl-expected.png: Added. |
| * platform/efl/editing/selection/caret-rtl-expected.txt: Added. |
| * platform/efl/editing/selection/clear-selection-expected.png: Added. |
| * platform/efl/editing/selection/clear-selection-expected.txt: Added. |
| * platform/efl/editing/selection/click-start-of-line-expected.png: Added. |
| * platform/efl/editing/selection/click-start-of-line-expected.txt: Added. |
| * platform/efl/editing/selection/contenteditable-click-inside-expected.png: Added. |
| * platform/efl/editing/selection/contenteditable-click-inside-expected.txt: Added. |
| * platform/efl/editing/selection/display-table-text-expected.png: Added. |
| * platform/efl/editing/selection/display-table-text-expected.txt: Added. |
| * platform/efl/editing/selection/drag-in-iframe-expected.png: Added. |
| * platform/efl/editing/selection/drag-in-iframe-expected.txt: Added. |
| * platform/efl/editing/selection/drag-to-contenteditable-iframe-expected.png: Added. |
| * platform/efl/editing/selection/drag-to-contenteditable-iframe-expected.txt: Added. |
| * platform/efl/editing/selection/editable-html-element-expected.png: Added. |
| * platform/efl/editing/selection/editable-html-element-expected.txt: Added. |
| * platform/efl/editing/selection/editable-links-expected.png: Added. |
| * platform/efl/editing/selection/editable-links-expected.txt: Added. |
| * platform/efl/editing/selection/editable-non-editable-crash-expected.png: Added. |
| * platform/efl/editing/selection/editable-non-editable-crash-expected.txt: Added. |
| * platform/efl/editing/selection/end-of-document-expected.png: Added. |
| * platform/efl/editing/selection/end-of-document-expected.txt: Added. |
| * platform/efl/editing/selection/expanding-selections-expected.png: Added. |
| * platform/efl/editing/selection/expanding-selections-expected.txt: Added. |
| * platform/efl/editing/selection/expanding-selections2-expected.png: Added. |
| * platform/efl/editing/selection/expanding-selections2-expected.txt: Added. |
| * platform/efl/editing/selection/extend-by-character-001-expected.png: Added. |
| * platform/efl/editing/selection/extend-by-character-001-expected.txt: Added. |
| * platform/efl/editing/selection/extend-by-character-004-expected.png: Added. |
| * platform/efl/editing/selection/extend-by-character-004-expected.txt: Added. |
| * platform/efl/editing/selection/extend-by-character-005-expected.png: Added. |
| * platform/efl/editing/selection/extend-by-character-005-expected.txt: Added. |
| * platform/efl/editing/selection/extend-by-character-006-expected.png: Added. |
| * platform/efl/editing/selection/extend-by-character-006-expected.txt: Added. |
| * platform/efl/editing/selection/extend-by-sentence-001-expected.png: Added. |
| * platform/efl/editing/selection/extend-by-sentence-001-expected.txt: Added. |
| * platform/efl/editing/selection/extend-by-word-001-expected.png: Added. |
| * platform/efl/editing/selection/extend-by-word-001-expected.txt: Added. |
| * platform/efl/editing/selection/extend-inside-transforms-forward-expected.png: Added. |
| * platform/efl/editing/selection/extend-inside-transforms-forward-expected.txt: Added. |
| * platform/efl/editing/selection/focus-body-expected.png: Added. |
| * platform/efl/editing/selection/focus-body-expected.txt: Added. |
| * platform/efl/editing/selection/focus_editable_html-expected.png: Added. |
| * platform/efl/editing/selection/focus_editable_html-expected.txt: Added. |
| * platform/efl/editing/selection/image-before-linebreak-expected.png: Added. |
| * platform/efl/editing/selection/image-before-linebreak-expected.txt: Added. |
| * platform/efl/editing/selection/inline-closest-leaf-child-expected.png: Added. |
| * platform/efl/editing/selection/inline-closest-leaf-child-expected.txt: Added. |
| * platform/efl/editing/selection/leave-requested-block-expected.png: Added. |
| * platform/efl/editing/selection/leave-requested-block-expected.txt: Added. |
| * platform/efl/editing/selection/line-wrap-1-expected.png: Added. |
| * platform/efl/editing/selection/line-wrap-1-expected.txt: Added. |
| * platform/efl/editing/selection/line-wrap-2-expected.png: Added. |
| * platform/efl/editing/selection/line-wrap-2-expected.txt: Added. |
| * platform/efl/editing/selection/mixed-editability-1-expected.png: Added. |
| * platform/efl/editing/selection/mixed-editability-1-expected.txt: Added. |
| * platform/efl/editing/selection/mixed-editability-2-expected.png: Added. |
| * platform/efl/editing/selection/mixed-editability-2-expected.txt: Added. |
| * platform/efl/editing/selection/mixed-editability-3-expected.png: Added. |
| * platform/efl/editing/selection/mixed-editability-3-expected.txt: Added. |
| * platform/efl/editing/selection/mixed-editability-4-expected.png: Added. |
| * platform/efl/editing/selection/mixed-editability-4-expected.txt: Added. |
| * platform/efl/editing/selection/mixed-editability-5-expected.png: Added. |
| * platform/efl/editing/selection/mixed-editability-5-expected.txt: Added. |
| * platform/efl/editing/selection/mixed-editability-8-expected.png: Added. |
| * platform/efl/editing/selection/mixed-editability-8-expected.txt: Added. |
| * platform/efl/editing/selection/mixed-editability-9-expected.png: Added. |
| * platform/efl/editing/selection/mixed-editability-9-expected.txt: Added. |
| * platform/efl/editing/selection/move-3875618-fix-expected.png: Added. |
| * platform/efl/editing/selection/move-3875618-fix-expected.txt: Added. |
| * platform/efl/editing/selection/move-3875641-fix-expected.png: Added. |
| * platform/efl/editing/selection/move-3875641-fix-expected.txt: Added. |
| * platform/efl/editing/selection/move-backwords-by-word-001-expected.png: Added. |
| * platform/efl/editing/selection/move-backwords-by-word-001-expected.txt: Added. |
| * platform/efl/editing/selection/move-between-blocks-no-001-expected.png: Added. |
| * platform/efl/editing/selection/move-between-blocks-no-001-expected.txt: Added. |
| * platform/efl/editing/selection/move-between-blocks-yes-001-expected.png: Added. |
| * platform/efl/editing/selection/move-between-blocks-yes-001-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-character-001-expected.png: Added. |
| * platform/efl/editing/selection/move-by-character-001-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-character-002-expected.png: Added. |
| * platform/efl/editing/selection/move-by-character-002-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-character-003-expected.png: Added. |
| * platform/efl/editing/selection/move-by-character-003-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-character-004-expected.png: Added. |
| * platform/efl/editing/selection/move-by-character-004-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-character-005-expected.png: Added. |
| * platform/efl/editing/selection/move-by-character-005-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-character-6-expected.png: Added. |
| * platform/efl/editing/selection/move-by-character-6-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-line-001-expected.png: Added. |
| * platform/efl/editing/selection/move-by-line-001-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-line-002-expected.png: Added. |
| * platform/efl/editing/selection/move-by-line-002-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-sentence-001-expected.png: Added. |
| * platform/efl/editing/selection/move-by-sentence-001-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-sentence-linebreak-expected.png: Added. |
| * platform/efl/editing/selection/move-by-sentence-linebreak-expected.txt: Added. |
| * platform/efl/editing/selection/move-by-word-001-expected.png: Added. |
| * platform/efl/editing/selection/move-by-word-001-expected.txt: Added. |
| * platform/efl/editing/selection/move-past-trailing-space-expected.png: Added. |
| * platform/efl/editing/selection/move-past-trailing-space-expected.txt: Added. |
| * platform/efl/editing/selection/node-removal-1-expected.png: Added. |
| * platform/efl/editing/selection/node-removal-1-expected.txt: Added. |
| * platform/efl/editing/selection/previous-line-position-expected.png: Added. |
| * platform/efl/editing/selection/previous-line-position-expected.txt: Added. |
| * platform/efl/editing/selection/replace-selection-1-expected.png: Added. |
| * platform/efl/editing/selection/replace-selection-1-expected.txt: Added. |
| * platform/efl/editing/selection/replaced-boundaries-1-expected.png: Added. |
| * platform/efl/editing/selection/replaced-boundaries-1-expected.txt: Added. |
| * platform/efl/editing/selection/replaced-boundaries-2-expected.png: Added. |
| * platform/efl/editing/selection/replaced-boundaries-2-expected.txt: Added. |
| * platform/efl/editing/selection/select-all-001-expected.png: Added. |
| * platform/efl/editing/selection/select-all-001-expected.txt: Added. |
| * platform/efl/editing/selection/select-all-iframe-expected.png: Added. |
| * platform/efl/editing/selection/select-all-iframe-expected.txt: Added. |
| * platform/efl/editing/selection/select-text-overflow-ellipsis-expected.png: Added. |
| * platform/efl/editing/selection/select-text-overflow-ellipsis-expected.txt: Added. |
| * platform/efl/editing/selection/selectNode-expected.png: Added. |
| * platform/efl/editing/selection/selectNode-expected.txt: Added. |
| * platform/efl/editing/selection/selectNodeContents-expected.png: Added. |
| * platform/efl/editing/selection/selectNodeContents-expected.txt: Added. |
| * platform/efl/editing/selection/selection-3748164-fix-expected.png: Added. |
| * platform/efl/editing/selection/selection-3748164-fix-expected.txt: Added. |
| * platform/efl/editing/selection/table-caret-1-expected.png: Added. |
| * platform/efl/editing/selection/table-caret-1-expected.txt: Added. |
| * platform/efl/editing/selection/table-caret-2-expected.png: Added. |
| * platform/efl/editing/selection/table-caret-2-expected.txt: Added. |
| * platform/efl/editing/selection/transformed-selection-rects-expected.png: Added. |
| * platform/efl/editing/selection/transformed-selection-rects-expected.txt: Added. |
| * platform/efl/editing/selection/triple-click-in-pre-expected.png: Added. |
| * platform/efl/editing/selection/triple-click-in-pre-expected.txt: Added. |
| * platform/efl/editing/selection/unrendered-001-expected.png: Added. |
| * platform/efl/editing/selection/unrendered-001-expected.txt: Added. |
| * platform/efl/editing/selection/unrendered-002-expected.png: Added. |
| * platform/efl/editing/selection/unrendered-002-expected.txt: Added. |
| * platform/efl/editing/selection/unrendered-003-expected.png: Added. |
| * platform/efl/editing/selection/unrendered-003-expected.txt: Added. |
| * platform/efl/editing/selection/unrendered-004-expected.png: Added. |
| * platform/efl/editing/selection/unrendered-004-expected.txt: Added. |
| * platform/efl/editing/selection/unrendered-005-expected.png: Added. |
| * platform/efl/editing/selection/unrendered-005-expected.txt: Added. |
| * platform/efl/editing/selection/unrendered-space-expected.png: Added. |
| * platform/efl/editing/selection/unrendered-space-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added. |
| * platform/efl/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Added. |
| * platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: Added. |
| * platform/efl/editing/selection/word-granularity-expected.png: Added. |
| * platform/efl/editing/selection/word-granularity-expected.txt: Added. |
| * platform/efl/editing/selection/wrapped-line-caret-1-expected.png: Added. |
| * platform/efl/editing/selection/wrapped-line-caret-1-expected.txt: Added. |
| * platform/efl/editing/selection/wrapped-line-caret-2-expected.png: Added. |
| * platform/efl/editing/selection/wrapped-line-caret-2-expected.txt: Added. |
| * platform/efl/editing/style/4916887-expected.png: Added. |
| * platform/efl/editing/style/4916887-expected.txt: Added. |
| * platform/efl/editing/style/5017613-2-expected.png: Added. |
| * platform/efl/editing/style/5017613-2-expected.txt: Added. |
| * platform/efl/editing/style/5046875-2-expected.png: Added. |
| * platform/efl/editing/style/5046875-2-expected.txt: Added. |
| * platform/efl/editing/style/5084241-expected.png: Added. |
| * platform/efl/editing/style/5084241-expected.txt: Added. |
| * platform/efl/editing/style/apple-style-editable-mix-expected.png: Added. |
| * platform/efl/editing/style/apple-style-editable-mix-expected.txt: Added. |
| * platform/efl/editing/style/block-style-001-expected.png: Added. |
| * platform/efl/editing/style/block-style-001-expected.txt: Added. |
| * platform/efl/editing/style/block-style-002-expected.png: Added. |
| * platform/efl/editing/style/block-style-002-expected.txt: Added. |
| * platform/efl/editing/style/block-style-003-expected.png: Added. |
| * platform/efl/editing/style/block-style-003-expected.txt: Added. |
| * platform/efl/editing/style/block-styles-007-expected.png: Added. |
| * platform/efl/editing/style/block-styles-007-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-001-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-001-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-002-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-002-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-003-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-003-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-004-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-004-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-005-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-005-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-006-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-006-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-007-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-007-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-008-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-008-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-009-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-009-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-010-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-010-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-011-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-011-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-012-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-012-expected.txt: Added. |
| * platform/efl/editing/style/create-block-for-style-013-expected.png: Added. |
| * platform/efl/editing/style/create-block-for-style-013-expected.txt: Added. |
| * platform/efl/editing/style/designmode-expected.png: Added. |
| * platform/efl/editing/style/designmode-expected.txt: Added. |
| * platform/efl/editing/style/highlight-expected.png: Added. |
| * platform/efl/editing/style/highlight-expected.txt: Added. |
| * platform/efl/editing/style/relative-font-size-change-001-expected.png: Added. |
| * platform/efl/editing/style/relative-font-size-change-001-expected.txt: Added. |
| * platform/efl/editing/style/relative-font-size-change-002-expected.png: Added. |
| * platform/efl/editing/style/relative-font-size-change-002-expected.txt: Added. |
| * platform/efl/editing/style/relative-font-size-change-003-expected.png: Added. |
| * platform/efl/editing/style/relative-font-size-change-003-expected.txt: Added. |
| * platform/efl/editing/style/relative-font-size-change-004-expected.png: Added. |
| * platform/efl/editing/style/relative-font-size-change-004-expected.txt: Added. |
| * platform/efl/editing/style/smoosh-styles-003-expected.png: Added. |
| * platform/efl/editing/style/style-3681552-fix-001-expected.png: Added. |
| * platform/efl/editing/style/style-3681552-fix-002-expected.png: Added. |
| * platform/efl/editing/style/style-3681552-fix-002-expected.txt: Added. |
| * platform/efl/editing/style/style-3998892-fix-expected.png: Added. |
| * platform/efl/editing/style/style-3998892-fix-expected.txt: Added. |
| * platform/efl/editing/style/style-boundary-001-expected.png: Added. |
| * platform/efl/editing/style/style-boundary-001-expected.txt: Added. |
| * platform/efl/editing/style/style-boundary-002-expected.png: Added. |
| * platform/efl/editing/style/style-boundary-003-expected.png: Added. |
| * platform/efl/editing/style/style-boundary-004-expected.png: Added. |
| * platform/efl/editing/style/style-boundary-004-expected.txt: Added. |
| * platform/efl/editing/style/table-selection-expected.png: Added. |
| * platform/efl/editing/style/table-selection-expected.txt: Added. |
| * platform/efl/editing/style/typing-style-001-expected.png: Added. |
| * platform/efl/editing/style/typing-style-002-expected.png: Added. |
| * platform/efl/editing/style/unbold-in-bold-expected.png: Added. |
| * platform/efl/editing/style/unbold-in-bold-expected.txt: Added. |
| |
| 2012-10-25 Roger Fong <roger_fong@apple.com> |
| |
| Unreviewed. Rebaselining failing expected results for fast/css/image-set-setting.html on Windows after r132388. |
| |
| * platform/win/fast/css/image-set-setting-expected.txt: |
| |
| 2012-10-25 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132269. |
| http://trac.webkit.org/changeset/132269 |
| https://bugs.webkit.org/show_bug.cgi?id=100412 |
| |
| "Speculative rollout of r132269 in hopes of fixing a |
| mysterious recalcStyle crasher" (Requested by eseidel on |
| #webkit). |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.html: Removed. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.html: Removed. |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.txt: Added. |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/pseudo-elements-expected.html: Removed. |
| * fast/forms/pseudo-elements.html: Removed. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.html: Removed. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.txt: Added. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.html: Removed. |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.txt: Added. |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements.html: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| |
| 2012-10-25 Stephen White <senorblanco@chromium.org> |
| |
| Add new layout test for reference filters. |
| https://bugs.webkit.org/show_bug.cgi?id=97715 |
| |
| Reviewed by Nate Chapin. |
| |
| * css3/filters/reference-filter-update-after-remove-expected.txt: Added. |
| * css3/filters/reference-filter-update-after-remove.html: Added. |
| |
| 2012-10-25 Simon Fraser <simon.fraser@apple.com> |
| |
| Incorrect tile size in the slow scrolling case |
| https://bugs.webkit.org/show_bug.cgi?id=100411 |
| |
| Reviewed by Beth Dakin. |
| |
| New result with better tile size. |
| |
| * platform/mac/tiled-drawing/tile-coverage-slow-scrolling-expected.txt: |
| |
| 2012-10-25 Roger Fong <roger_fong@apple.com> |
| |
| Unreviewed. Skipping inspector/elements/update-shadowdom.html. |
| Feature in https://bugs.webkit.org/show_bug.cgi?id=99567 not supported on Windows ports. |
| |
| * platform/win/TestExpectations: |
| |
| 2012-10-25 Nico Weber <thakis@chromium.org> |
| |
| Move ImageOrientation transform back in CG space (lower-left origin), adapt the skia code to work with that, turn on feature for chromium |
| https://bugs.webkit.org/show_bug.cgi?id=100319 |
| |
| Reviewed by Eric Seidel. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-25 Simon Fraser <simon.fraser@apple.com> |
| |
| Log the tile cache tile size in test output |
| https://bugs.webkit.org/show_bug.cgi?id=100409 |
| |
| Reviewed by Beth Dakin. |
| |
| New results with tile size in the output. |
| |
| * platform/mac/tiled-drawing/tile-coverage-after-scroll-expected.txt: |
| * platform/mac/tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt: |
| * platform/mac/tiled-drawing/tile-coverage-slow-scrolling-expected.txt: |
| * platform/mac/tiled-drawing/use-tiled-drawing-expected.txt: |
| |
| 2012-10-25 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Removing three fast/lists test failure expectations, the tests |
| were fixed in r132507. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-25 Roger Fong <roger_fong@apple.com> |
| |
| Unreviewed. Skip failing accessibility tests. |
| accessibility/title-ui-element-correctness.html |
| accessibility/aria-slider-value.html |
| accesibility/hidden-legend.html |
| |
| * platform/win/TestExpectations: |
| |
| 2012-10-25 Dominic Mazzoni <dmazzoni@google.com> |
| |
| AX: Notification should be sent when accessibilityIsIgnored changes |
| https://bugs.webkit.org/show_bug.cgi?id=99547 |
| |
| Reviewed by Chris Fleizach. |
| |
| Adds 3 new test to ensure: |
| 1. A "children changed" notification is fired on the parent object when an |
| object that was previously ignored becomes unignored. |
| 2. A notification is sent when an element's text (incl. title or label) changes. |
| 3. A notification is sent when another ARIA attribute changes. |
| |
| Modifies add-to-menu-list-crashes because it was too brittle; it was |
| referencing a stale object rather than retrieving its latest handle. |
| Modifies aria-checkbox-sends-notification to listen on the correct |
| object on all platforms. |
| Simplifies notification-listeners so it doesn't generate additional |
| notifications that are inconsistent between platforms now. |
| |
| * accessibility/aria-checkbox-sends-notification.html: |
| * accessibility/notification-listeners.html: |
| * platform/chromium/accessibility/add-to-menu-list-crashes-expected.txt: |
| * platform/chromium/accessibility/add-to-menu-list-crashes.html: |
| * platform/chromium/accessibility/is-ignored-change-sends-notification-expected.txt: Added. |
| * platform/chromium/accessibility/is-ignored-change-sends-notification.html: Added. |
| * platform/chromium/accessibility/other-aria-attribute-change-sends-notification-expected.txt: Added. |
| * platform/chromium/accessibility/other-aria-attribute-change-sends-notification.html: Added. |
| * platform/chromium/accessibility/text-change-notification-expected.txt: Added. |
| * platform/chromium/accessibility/text-change-notification.html: Added. |
| |
| 2012-10-25 Tom Sepez <tsepez@chromium.org> |
| |
| XSSAuditor must replace form action with about:blank when reflected action detected. |
| https://bugs.webkit.org/show_bug.cgi?id=100280 |
| |
| Reviewed by Daniel Bates. |
| |
| Update tests to log form action attribute. |
| |
| * http/tests/security/xssAuditor/form-action-expected.txt: |
| * http/tests/security/xssAuditor/form-action.html: |
| * http/tests/security/xssAuditor/resources/echo-intertag.pl: |
| |
| 2012-10-25 KwangYong Choi <ky0.choi@samsung.com> |
| |
| [EFL] Plugin test gardening |
| https://bugs.webkit.org/show_bug.cgi?id=100359 |
| |
| Unreviewed, EFL gardening. |
| |
| fast/frames/sandboxed-iframe-plugins.html and userscripts/user-script- |
| plugin-document.html are passing on WK2 now. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-25 Kevin Ellis <kevers@chromium.org> |
| |
| Touch adjustment snaps to wrong target at a plugin boundary. |
| https://bugs.webkit.org/show_bug.cgi?id=99938 |
| |
| Reviewed by Antonio Gomes. |
| |
| Test for touch adjustment at a plugin boundary. |
| Prior to the patch, plugins were not considered |
| candidates for touch adjustment. |
| |
| * touchadjustment/plugin-expected.txt: Added. |
| * touchadjustment/plugin.html: Added. |
| |
| 2012-10-25 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, skip failing tests to speedup testing. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-25 Yury Semikhatsky <yurys@chromium.org> |
| |
| Web Inspector: inspector tests failing after r132454 |
| https://bugs.webkit.org/show_bug.cgi?id=100381 |
| |
| Reviewed by Pavel Feldman. |
| |
| Enable memory instrumentation tests now that the problem is fixed. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-25 Kenneth Rohde Christiansen <kenneth@webkit.org> |
| |
| 'resolution' MQ: Printing should use use high resolution images when available |
| https://bugs.webkit.org/show_bug.cgi?id=100382 |
| |
| Reviewed by Antti Koivisto. |
| |
| Special case print to not use the dpi of the screen, but one of 300. |
| |
| Updated the resolution media query test to cover this. |
| |
| * fast/media/mq-resolution-expected.txt: |
| * fast/media/mq-resolution.html: |
| |
| 2012-10-25 Kevin Ellis <kevers@chromium.org> |
| |
| Can't easily position the cursor on an empty line in a textarea with touch if touch adjustment is enabled |
| https://bugs.webkit.org/show_bug.cgi?id=97576 |
| |
| Reviewed by Antonio Gomes. |
| |
| Add test to verify that touch adjustment is coarse for |
| editable content, being based on the bounds of the |
| editable content and not its children. |
| |
| * touchadjustment/editable-content-expected.txt: Added. |
| * touchadjustment/editable-content.html: Added. |
| |
| 2012-10-25 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, skip tests because TestRunner::overridePreference() |
| does not support the 'WebKitSupportsMultipleWindows' preference on Qt WK1. |
| |
| * platform/qt-5.0-wk1/TestExpectations: |
| |
| 2012-10-25 'Pavel Feldman' <pfeldman@chromium.org> |
| |
| Not reviewed: chromium test expectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-25 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| Add setMediaTypeOverride to window.internals.settings |
| https://bugs.webkit.org/show_bug.cgi?id=100249 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Fixed fast/media/print-restores-previous-mediatype.html to use cross-platform |
| window.internals.settings.setMediaTypeOverride. |
| Unskipped fast/media/print-restores-previous-mediatype.html for EFL, the test should also work |
| on other ports but it needs to be checked first. |
| |
| * fast/media/print-restores-previous-mediatype.html: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-22 Mikhail Naganov <mnaganov@chromium.org> |
| |
| [Chromium] Add supportMultipleWindows setting, needed for Android |
| https://bugs.webkit.org/show_bug.cgi?id=99716 |
| |
| Reviewed by Adam Barth. |
| |
| Add supportMultipleWindows settings for reusing the same view when |
| opening popups. This is required for emulating the behavior of |
| Android WebView. Adding into WebCore, as other ports might want to |
| use this setting in the future. |
| |
| * fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt: Added. |
| * fast/dom/HTMLAnchorElement/anchor-no-multiple-windows.html: Added. |
| * fast/dom/Window/window-open-no-multiple-windows-expected.txt: Added. |
| * fast/dom/Window/window-open-no-multiple-windows.html: Added. |
| * fast/forms/post-popup-no-multiple-windows-expected.txt: Added. |
| * fast/forms/post-popup-no-multiple-windows.html: Added. |
| * platform/chromium/fast/dom/HTMLAnchorElement/anchor-no-multiple-windows-expected.txt: Added. |
| * platform/chromium/fast/dom/Window/window-open-no-multiple-windows-expected.txt: Added. |
| * platform/chromium/fast/forms/post-popup-no-multiple-windows-expected.txt: Added. |
| |
| 2012-10-25 Florin Malita <fmalita@chromium.org> |
| |
| [Chromium] Unreviewed rebaseline after https://bugs.webkit.org/show_bug.cgi?id=99874. |
| |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-float-border-padding-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom/text/zoom-svg-float-border-padding-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-float-border-padding-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/text/zoom-svg-float-border-padding-expected.png: |
| * platform/chromium-mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: |
| * platform/chromium-mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-float-border-padding-expected.png: |
| * platform/chromium-win/svg/zoom/text/zoom-svg-float-border-padding-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-25 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Rebase some tests, add missing expectations, mark wrong results as image failure. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0-wk2/css3/flexbox/repaint-during-resize-no-flex-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/bgCompositeCopy-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize01-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize02-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize04-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize05-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize06-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize07-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize12-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize13-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize14-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize17-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize18-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize19-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize20-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize21-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize22-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/css/arrow-with-shadow-expected.png: Added. |
| * platform/qt/TestExpectations: |
| * platform/qt/animations/state-at-end-event-expected.png: Added. |
| * platform/qt/compositing/overflow/clipping-ancestor-with-accelerated-scrolling-ancestor-expected.png: Added. |
| * platform/qt/compositing/overflow/nested-scrolling-expected.png: Added. |
| * platform/qt/compositing/overflow/overflow-clip-with-accelerated-scrolling-ancestor-expected.png: Added. |
| * platform/qt/compositing/overflow/remove-overflow-crash2-expected.png: Added. |
| * platform/qt/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t1008-c44-ln-box-02-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t100801-c544-valgn-01-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t100801-c548-ln-ht-02-b-ag-expected.png: Added. |
| * platform/qt/css2.1/t1202-counters-04-b-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-00-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-01-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-02-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-03-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-04-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t140201-c534-bgreps-05-c-ag-expected.png: Added. |
| * platform/qt/css2.1/t1601-c547-indent-00-b-a-expected.png: Added. |
| * platform/qt/css2.1/t1602-c43-center-00-d-ag-expected.png: Added. |
| * platform/qt/css2.1/t1604-c542-letter-sp-00-b-a-expected.png: Added. |
| * platform/qt/css2.1/t1604-c542-letter-sp-01-b-a-expected.png: Added. |
| * platform/qt/css2.1/t1605-c545-txttrans-00-b-ag-expected.png: Added. |
| * platform/qt/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/qt/css3/flexbox/flexbox-baseline-margins-expected.png: Added. |
| * platform/qt/css3/flexbox/repaint-during-resize-no-flex-expected.png: Added. |
| * platform/qt/fast/backgrounds/bgCompositeCopy-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize01-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize02-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize03-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize04-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize05-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize06-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize07-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize08-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize09-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize10-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize11-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize12-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize13-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize14-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize17-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize18-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize19-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize20-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize21-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/backgroundSize22-expected.png: Added. |
| * platform/qt/fast/block/float/009-expected.png: Added. |
| * platform/qt/fast/block/float/034-expected.png: Added. |
| * platform/qt/fast/block/float/4145535Crash-expected.png: Added. |
| * platform/qt/fast/block/float/negative-margin-clear-expected.png: Added. |
| * platform/qt/fast/block/float/nowrap-clear-min-width-expected.png: Added. |
| * platform/qt/fast/borders/border-image-scaled-gradient-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-circle-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-groove-01-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-groove-02-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-groove-03-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-valid-border-clipping-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-01-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-02-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-03-expected.png: Added. |
| * platform/qt/fast/borders/border-radius-wide-border-04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDashed04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDashed05-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDashed06-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDotted04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDotted05-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDotted06-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble04-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble05-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble06-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble07-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble08-expected.png: Added. |
| * platform/qt/fast/borders/borderRadiusDouble09-expected.png: Added. |
| * platform/qt/fast/borders/outline-offset-min-assert-expected.png: Added. |
| * platform/qt/fast/css/006-expected.png: Added. |
| * platform/qt/fast/css/background-clip-values-expected.png: Added. |
| * platform/qt/fast/css/bogus-color-span-expected.png: Added. |
| * platform/qt/fast/css/box-shadow-and-border-radius-expected.png: |
| * platform/qt/fast/css/content-dynamic-expected.png: Added. |
| * platform/qt/fast/css/contentDiv-expected.png: Added. |
| * platform/qt/fast/css/contentDivWithChildren-expected.png: Added. |
| * platform/qt/fast/css/contentImage-expected.png: Added. |
| * platform/qt/fast/css/pseudo-first-line-border-width-expected.png: Added. |
| * platform/qt/fast/css/replaced-element-implicit-size-expected.png: Added. |
| * platform/qt/fast/dom/attr_dead_doc-expected.png: Added. |
| * platform/qt/fast/dom/css-cached-import-rule-expected.png: Added. |
| * platform/qt/fast/dom/css-insert-import-rule-expected.png: Added. |
| * platform/qt/fast/dynamic/001-expected.png: Added. |
| * platform/qt/fast/dynamic/005-expected.png: Added. |
| * platform/qt/fast/dynamic/anonymous-block-layer-lost-expected.png: Added. |
| * platform/qt/fast/dynamic/staticY-expected.png: Added. |
| * platform/qt/fast/forms/002-expected.png: Added. |
| * platform/qt/fast/forms/003-expected.png: Added. |
| * platform/qt/fast/forms/004-expected.png: Added. |
| * platform/qt/fast/forms/005-expected.png: Added. |
| * platform/qt/fast/forms/006-expected.png: Added. |
| * platform/qt/fast/forms/007-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label01-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label02-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label03-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label04-expected.png: Added. |
| * platform/qt/fast/forms/button-submit-expected.png: Added. |
| * platform/qt/fast/forms/caret-rtl-expected.png: Added. |
| * platform/qt/fast/forms/control-clip-expected.png: Added. |
| * platform/qt/fast/forms/fieldset-with-float-expected.png: Added. |
| * platform/qt/fast/forms/form-added-to-table-expected.png: Added. |
| * platform/qt/fast/forms/form-in-malformed-markup-expected.png: Added. |
| * platform/qt/fast/forms/formmove-expected.png: Added. |
| * platform/qt/fast/forms/formmove2-expected.png: Added. |
| * platform/qt/fast/forms/image-border-expected.png: Added. |
| * platform/qt/fast/forms/indeterminate-expected.png: Added. |
| * platform/qt/fast/forms/input-align-image-expected.png: Added. |
| * platform/qt/fast/forms/input-first-letter-expected.png: Added. |
| * platform/qt/fast/forms/input-no-renderer-expected.png: Added. |
| * platform/qt/fast/forms/linebox-overflow-in-textarea-padding-expected.png: Added. |
| * platform/qt/fast/forms/menulist-deselect-update-expected.png: Added. |
| * platform/qt/fast/forms/menulist-no-overflow-expected.png: Added. |
| * platform/qt/fast/forms/option-index-expected.png: Added. |
| * platform/qt/fast/forms/option-script-expected.png: Added. |
| * platform/qt/fast/forms/option-text-clip-expected.png: Added. |
| * platform/qt/fast/forms/preserveFormDuringResidualStyle-expected.png: Added. |
| * platform/qt/fast/forms/range/thumbslider-no-parent-slider-expected.png: Added. |
| * platform/qt/fast/forms/select-align-expected.png: Added. |
| * platform/qt/fast/forms/select-change-listbox-to-popup-expected.png: Added. |
| * platform/qt/fast/forms/select-dirty-parent-pref-widths-expected.png: Added. |
| * platform/qt/fast/forms/select-disabled-appearance-expected.png: Added. |
| * platform/qt/fast/forms/select-display-none-style-resolve-expected.png: Added. |
| * platform/qt/fast/forms/select-empty-option-height-expected.png: Added. |
| * platform/qt/fast/forms/select-selected-expected.png: Added. |
| * platform/qt/fast/forms/select-size-expected.png: Added. |
| * platform/qt/fast/forms/select-style-expected.png: Added. |
| * platform/qt/fast/forms/stuff-on-my-optgroup-expected.png: Added. |
| * platform/qt/fast/forms/textfield-overflow-by-value-update-expected.png: Added. |
| * platform/qt/fast/frames/002-expected.png: Added. |
| * platform/qt/fast/frames/calculate-round-expected.png: Added. |
| * platform/qt/fast/frames/content-opacity-1-expected.png: Added. |
| * platform/qt/fast/frames/content-opacity-2-expected.png: Added. |
| * platform/qt/fast/frames/empty-cols-attribute-expected.png: Added. |
| * platform/qt/fast/frames/empty-frame-src-expected.png: Added. |
| * platform/qt/fast/frames/frame-length-fractional-expected.png: Added. |
| * platform/qt/fast/frames/frame-set-whitespace-attributes-expected.png: Added. |
| * platform/qt/fast/frames/iframe-text-contents-expected.png: Added. |
| * platform/qt/fast/frames/no-frame-borders-expected.png: Added. |
| * platform/qt/fast/gradients/border-image-gradient-expected.png: Added. |
| * platform/qt/fast/gradients/border-image-gradient-sides-and-corners-expected.png: Added. |
| * platform/qt/fast/images/embed-image-expected.png: Added. |
| * platform/qt/fast/images/favicon-as-image-expected.png: Added. |
| * platform/qt/fast/images/image-css3-content-data-expected.png: Added. |
| * platform/qt/fast/images/object-image-expected.png: Added. |
| * platform/qt/fast/images/pdf-as-image-expected.png: Added. |
| * platform/qt/fast/inline-block/004-expected.png: Added. |
| * platform/qt/fast/inline-block/005-expected.png: Added. |
| * platform/qt/fast/invalid/015-expected.png: Added. |
| * platform/qt/fast/invalid/table-residual-style-crash-expected.png: Added. |
| * platform/qt/fast/js/exception-linenums-in-html-3-expected.png: Added. |
| * platform/qt/fast/js/missing-style-end-tag-js-expected.png: Added. |
| * platform/qt/fast/js/missing-title-end-tag-js-expected.png: Added. |
| * platform/qt/fast/layers/opacity-stacking-expected.png: Added. |
| * platform/qt/fast/layers/positioned-inside-root-with-margins-expected.png: Added. |
| * platform/qt/fast/layers/zindex-ridonkulous-expected.png: Added. |
| * platform/qt/fast/media/implicit-media-all-expected.png: Added. |
| * platform/qt/fast/media/media-query-invalid-value-expected.png: Added. |
| * platform/qt/fast/media/monochrome-expected.png: Added. |
| * platform/qt/fast/media/mq-min-pixel-ratio-expected.png: Added. |
| * platform/qt/fast/overflow/position-relative-expected.png: Added. |
| * platform/qt/fast/overflow/unreachable-content-test-expected.png: Added. |
| * platform/qt/fast/parser/comment-in-script-expected.png: Added. |
| * platform/qt/fast/parser/style-script-head-test-expected.png: Added. |
| * platform/qt/fast/reflections/table-cell-expected.png: Added. |
| * platform/qt/fast/repaint/background-generated-expected.png: Added. |
| * platform/qt/fast/repaint/background-misaligned-expected.png: Added. |
| * platform/qt/fast/repaint/canvas-putImageData-expected.png: Added. |
| * platform/qt/fast/repaint/erase-overflow-expected.png: Added. |
| * platform/qt/fast/repaint/float-in-new-block-with-layout-delta-expected.png: Added. |
| * platform/qt/fast/repaint/float-new-in-block-expected.png: Added. |
| * platform/qt/fast/repaint/inline-block-resize-expected.png: Added. |
| * platform/qt/fast/repaint/intermediate-layout-position-clip-expected.png: Added. |
| * platform/qt/fast/repaint/intermediate-layout-position-expected.png: Added. |
| * platform/qt/fast/repaint/layer-full-repaint-expected.png: Added. |
| * platform/qt/fast/repaint/table-col-background-expected.png: Added. |
| * platform/qt/fast/repaint/table-outer-border-expected.png: Added. |
| * platform/qt/fast/repaint/table-row-expected.png: Added. |
| * platform/qt/fast/repaint/table-section-overflow-expected.png: Added. |
| * platform/qt/fast/replaced/008-expected.png: Added. |
| * platform/qt/fast/replaced/image-tag-expected.png: Added. |
| * platform/qt/fast/replaced/selection-rect-expected.png: Added. |
| * platform/qt/fast/table/008-expected.png: Added. |
| * platform/qt/fast/table/024-expected.png: Added. |
| * platform/qt/fast/table/031-expected.png: Added. |
| * platform/qt/fast/table/caption-relayout-expected.png: Added. |
| * platform/qt/fast/table/colspanMinWidth-vertical-expected.png: Added. |
| * platform/qt/fast/table/div-as-col-span-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-inside-percent-table-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-div-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.png: Added. |
| * platform/qt/fast/table/fixed-table-with-small-percent-width-expected.png: Added. |
| * platform/qt/fast/table/giantRowspan-expected.png: Added. |
| * platform/qt/fast/table/growCellForImageQuirk-expected.png: Added. |
| * platform/qt/fast/table/percent-widths-stretch-expected.png: Added. |
| * platform/qt/fast/table/vertical-align-baseline-readjust-expected.png: Added. |
| * platform/qt/fast/text/align-center-rtl-spill-expected.png: Added. |
| * platform/qt/fast/text/basic/013-expected.png: Added. |
| * platform/qt/fast/text/basic/015-expected.png: Added. |
| * platform/qt/fast/text/line-breaks-expected.png: Added. |
| * platform/qt/fast/text/soft-hyphen-3-expected.png: Added. |
| * platform/qt/fast/text/stripNullFromText-expected.png: Added. |
| * platform/qt/fast/text/whitespace/017-expected.png: Added. |
| * platform/qt/fast/tokenizer/missing-style-end-tag-1-expected.png: Added. |
| * platform/qt/fast/tokenizer/missing-style-end-tag-2-expected.png: Added. |
| * platform/qt/fast/tokenizer/script-after-frameset-expected.png: Added. |
| * platform/qt/fast/xsl/xslt-mismatched-tags-in-xslt-expected.png: Added. |
| * platform/qt/http/tests/security/contentSecurityPolicy/xsl-blocked-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-1-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-2-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-3-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-6-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-background-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-as-tiled-background-expected.png: Added. |
| * platform/qt/svg/as-background-image/svg-width-100p-as-background-expected.png: Added. |
| * platform/qt/svg/as-image/svg-as-image-expected.png: Added. |
| * platform/qt/svg/as-image/svg-as-relative-image-expected.png: Added. |
| * platform/qt/svg/css/arrow-with-shadow-expected.png: Added. |
| * platform/qt/svg/css/circle-in-mask-with-shadow-expected.png: Added. |
| * platform/qt/svg/css/path-with-shadow-expected.png: Added. |
| * platform/qt/svg/css/shadow-and-opacity-expected.png: Added. |
| * platform/qt/svg/css/shadow-with-large-radius-expected.png: Added. |
| * platform/qt/svg/css/shadow-with-negative-offset-expected.png: Added. |
| * platform/qt/svg/custom/animation-currentColor-expected.png: Added. |
| * platform/qt/svg/custom/clip-path-id-changes-expected.png: Added. |
| * platform/qt/svg/custom/createImageElement-expected.png: Added. |
| * platform/qt/svg/custom/gradient-userSpaceOnUse-with-percentage-expected.png: Added. |
| * platform/qt/svg/custom/js-repaint-rect-on-path-with-stroke-expected.png: Added. |
| * platform/qt/svg/custom/js-update-image-and-display-expected.png: Added. |
| * platform/qt/svg/custom/js-update-image-and-display2-expected.png: Added. |
| * platform/qt/svg/custom/js-update-image-and-display3-expected.png: Added. |
| * platform/qt/svg/custom/marker-opacity-expected.png: Added. |
| * platform/qt/svg/custom/marker-referencePoint-expected.png: Added. |
| * platform/qt/svg/custom/marker-strokeWidth-changes-expected.png: Added. |
| * platform/qt/svg/custom/mask-on-multiple-objects-expected.png: Added. |
| * platform/qt/svg/custom/mask-with-default-value-expected.png: Added. |
| * platform/qt/svg/custom/outer-svg-unknown-feature-expected.png: Added. |
| * platform/qt/svg/custom/pan-direction-expected.png: Added. |
| * platform/qt/svg/custom/pattern-excessive-malloc-expected.png: Added. |
| * platform/qt/svg/custom/repaint-shadow-expected.png: Added. |
| * platform/qt/svg/custom/transformedMaskFails-expected.png: Added. |
| * platform/qt/svg/custom/use-inherit-style-expected.png: Added. |
| * platform/qt/svg/custom/xhtml-no-svg-renderer-expected.png: Added. |
| * platform/qt/svg/filters/feGaussianBlur-expected.png: Added. |
| * platform/qt/svg/filters/feLighting-crash-expected.png: Added. |
| * platform/qt/svg/filters/feMerge-expected.png: Added. |
| * platform/qt/svg/filters/feMerge-wrong-input-expected.png: Added. |
| * platform/qt/svg/filters/feOffset-expected.png: Added. |
| * platform/qt/svg/filters/feTile-expected.png: Added. |
| * platform/qt/svg/filters/filter-clip-expected.png: Added. |
| * platform/qt/svg/filters/filter-rounding-issues-expected.png: Added. |
| * platform/qt/svg/filters/shadow-on-filter-expected.png: Added. |
| * platform/qt/svg/filters/shadow-on-rect-with-filter-expected.png: Added. |
| * platform/qt/svg/filters/subRegion-in-userSpace-expected.png: Added. |
| * platform/qt/svg/filters/subRegion-one-effect-expected.png: Added. |
| * platform/qt/svg/filters/subRegion-two-effects-expected.png: Added. |
| * platform/qt/svg/hixie/error/006-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/adforce_imgis_com-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug120107-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug1271-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug12908-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug12910-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug131020-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug13169-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug137388-3-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug1818-3-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug1818-6-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug196870-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug222336-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug222467-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug269566-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug277062-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug28933-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug2954-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug50695-2-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug56201-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug8032-2-expected.png: Added. |
| * platform/qt/tables/mozilla/core/col_widths_fix_autoFixPer-expected.png: Added. |
| * platform/qt/transitions/opacity-transition-zindex-expected.png: Added. |
| * platform/qt/transitions/transition-end-event-rendering-expected.png: Added. |
| |
| 2012-10-25 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel gardening. |
| |
| Rebase some results for qt-5.0-wk2, mark wrong results as expected fail. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.png: |
| * platform/qt-5.0-wk2/compositing/text-on-scaled-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/text-on-scaled-surface-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/visibility/visibility-simple-video-layer-expected.png: Added. |
| * platform/qt-5.0-wk2/css3/filters/effect-drop-shadow-hw-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/css-generated-content/012-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/css-generated-content/014-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/css-generated-content/hover-style-change-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/css/compare-content-style-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/forms/box-shadow-override-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/inline-block/overflow-clip-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-in-regions-expected.png: Added. |
| * platform/qt-5.0-wk2/http/tests/navigation/javascriptlink-frames-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: Removed. |
| * platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/as-image/img-preserveAspectRatio-support-1-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/custom/js-late-pattern-and-object-creation-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Added. |
| * platform/qt/TestExpectations: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: |
| |
| 2012-10-25 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| [EFL] Gardening after r132394 |
| https://bugs.webkit.org/show_bug.cgi?id=100365 |
| |
| Unreviewed gardening. |
| |
| Skipping of newly added compositing/tiling/backface-preserve-3d-tiled.html |
| test fail on EFL port due to missing AC support. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-25 KwangYong Choi <ky0.choi@samsung.com> |
| |
| [EFL][QT] Remove test which is not exist |
| https://bugs.webkit.org/show_bug.cgi?id=100366 |
| |
| Unreviewed. fast/dom/shadow/athost-atrules.html has been removed after r132403. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-25 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| [EFL][WK2] Gardening after r132386 |
| https://bugs.webkit.org/show_bug.cgi?id=100362 |
| |
| Unreviewed gardening. |
| |
| Skipped crashing fast/dom/nested-script-exceptions.html, networkinformation/multiple-frames.html, |
| networkinformation/basic-all-types-of-events.html, networkinformation/updates.html, networkinformation/add-listener-from-callback.html, |
| networkinformation/basic-operation.html, svg/foreignObject/viewport-foreignobject-crash.html for EFL WK2. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-25 Alexander Shalamov <alexander.shalamov@intel.com> |
| |
| Layout Test fast/media/w3c/test_media_queries.html is slow on Chromium debug bots after r132352 |
| https://bugs.webkit.org/show_bug.cgi?id=100272 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Test if resolution media query is supported before identifying dpi of the media. |
| |
| * fast/media/w3c/test_media_queries.html: |
| |
| 2012-10-25 Nandor Huszka <hnandor@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening. |
| |
| Unskip tests that are not exist already. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-25 Nandor Huszka <hnandor@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening. |
| |
| Skip a new failing test introduced in r132394. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-24 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, skip a new failing test. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-24 Kent Tamura <tkent@chromium.org> |
| |
| REGRESSION(r132291): Crash in BaseMultipleFieldsDateAndTimeInputType |
| https://bugs.webkit.org/show_bug.cgi?id=100326 |
| |
| Reviewed by Eric Seidel. |
| |
| * fast/forms/time-multiple-fields/time-multiple-fields-change-type-expected.txt: Added. |
| * fast/forms/time-multiple-fields/time-multiple-fields-change-type.html: Added. |
| |
| 2012-10-24 Pavel Feldman <pfeldman@chromium.org> |
| |
| Not reviewed: updating chromium TestExpectations for the roll. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Pavel Feldman <pfeldman@chromium.org> |
| |
| Not reviewed: updating chromium TestExpectations for the roll. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Pavel Feldman <pfeldman@chromium.org> |
| |
| Not reviewed: platform/chromium/TestExpectations lint. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Kangil Han <kangil.han@samsung.com> |
| |
| Rebaseline some sputnik unicode failed cases. |
| https://bugs.webkit.org/show_bug.cgi?id=99976 |
| |
| Unreviewed rebaseline. |
| |
| According to BUG 93103, seems these four test cases have different results after libicu 4.6 version. |
| As Ubuntu 12.04 installs 4.8 and mac has same result with windows, expected results on BUG 93103 could replace common result file except chromium-mac-snowleopard. |
| |
| * platform/chromium/sputnik/Unicode/Unicode_510/S7.6_A3.1-expected.txt: Removed. |
| * platform/chromium/sputnik/Unicode/Unicode_510/S7.6_A3.2-expected.txt: Removed. |
| * platform/chromium/sputnik/Unicode/Unicode_510/S7.6_A5.3_T1-expected.txt: Removed. |
| * platform/chromium/sputnik/Unicode/Unicode_510/S7.6_A5.3_T2-expected.txt: Removed. |
| * platform/efl/TestExpectations: |
| * platform/gtk/sputnik/Unicode/Unicode_510/S7.6_A3.2-expected.txt: Removed. |
| * platform/gtk/sputnik/Unicode/Unicode_510/S7.6_A5.3_T1-expected.txt: Removed. |
| * platform/gtk/sputnik/Unicode/Unicode_510/S7.6_A5.3_T2-expected.txt: Removed. |
| * platform/mac-snowleopard/sputnik/Unicode/Unicode_510/S7.6_A3.1-expected.txt: Removed. |
| * platform/mac-snowleopard/sputnik/Unicode/Unicode_510/S7.6_A3.2-expected.txt: Removed. |
| * platform/mac-snowleopard/sputnik/Unicode/Unicode_510/S7.6_A5.3_T1-expected.txt: Removed. |
| * platform/mac-snowleopard/sputnik/Unicode/Unicode_510/S7.6_A5.3_T2-expected.txt: Removed. |
| * platform/mac/sputnik/Unicode/Unicode_510/S7.6_A3.1-expected.txt: Removed. |
| * platform/mac/sputnik/Unicode/Unicode_510/S7.6_A3.2-expected.txt: Removed. |
| * platform/mac/sputnik/Unicode/Unicode_510/S7.6_A5.3_T1-expected.txt: Removed. |
| * platform/mac/sputnik/Unicode/Unicode_510/S7.6_A5.3_T2-expected.txt: Removed. |
| * sputnik/Unicode/Unicode_510/S7.6_A3.1-expected.txt: |
| * sputnik/Unicode/Unicode_510/S7.6_A3.2-expected.txt: |
| * sputnik/Unicode/Unicode_510/S7.6_A5.3_T1-expected.txt: |
| * sputnik/Unicode/Unicode_510/S7.6_A5.3_T2-expected.txt: |
| |
| 2012-10-24 Simon Fraser <simon.fraser@apple.com> |
| |
| Add two more tiled scrolling tests |
| https://bugs.webkit.org/show_bug.cgi?id=100314 |
| |
| Reviewed by Beth Dakin. |
| |
| Two new tests for TileCache tile coverage after scrolling. |
| |
| * platform/mac/tiled-drawing/tile-coverage-after-scroll-expected.txt: Added. |
| * platform/mac/tiled-drawing/tile-coverage-after-scroll.html: Added. |
| * platform/mac/tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt: Added. |
| * platform/mac/tiled-drawing/tile-coverage-scroll-to-bottom.html: Added. |
| |
| 2012-10-24 Beth Dakin <bdakin@apple.com> |
| |
| Updated results for https://bugs.webkit.org/show_bug.cgi?id=100312 |
| I checked in results that relied on some local changes in WK2. |
| |
| * platform/mac/tiled-drawing/tile-coverage-slow-scrolling-expected.txt: |
| |
| 2012-10-24 Simon Fraser <simon.fraser@apple.com> |
| |
| Skip tiled drawing tests for WK1 |
| https://bugs.webkit.org/show_bug.cgi?id=100312 |
| |
| Reviewed by Beth Dakin. |
| |
| Skip platform/mac/tiled-drawing tests in the main TestExpections file, |
| but re-enable it in the WK2 TestExpections file. |
| |
| * platform/mac-wk2/TestExpectations: |
| * platform/mac/TestExpectations: |
| |
| 2012-10-24 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, update chromium-mac-mountainlion baselines. |
| |
| * platform/chromium-mac-lion/media/track/track-cue-rendering-horizontal-expected.png: Copied from LayoutTests/platform/chromium-mac/media/track/track-cue-rendering-horizontal-expected.png. |
| * platform/chromium-mac-lion/media/track/track-cue-rendering-horizontal-expected.txt: Copied from LayoutTests/platform/chromium-mac/media/track/track-cue-rendering-horizontal-expected.txt. |
| * platform/chromium-mac/media/track/track-cue-rendering-horizontal-expected.png: |
| * platform/chromium-mac/media/track/track-cue-rendering-horizontal-expected.txt: |
| |
| 2012-10-24 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, expectations and baseline cleanup. |
| |
| Remove some old baselines for a test that was converted to a reftest, |
| and remove entries for tests no longer failing on Chromium Mac ML. |
| |
| * platform/chromium-mac-lion/fast/forms/date/date-reset-value-expected.png: Removed. |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium-mac-snowleopard/fast/forms/date/date-reset-value-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/date/date-reset-value-expected.png: Removed. |
| |
| 2012-10-24 Beth Dakin <bdakin@apple.com> |
| |
| https://bugs.webkit.org/show_bug.cgi?id=100169 |
| We should make TileCache tiles the size of the tile coverage rect |
| when we can't do fast scrolling |
| -and- |
| <rdar://problem/12505021> |
| |
| Reviewed by Simon Fraser. |
| |
| New test. |
| * platform/mac/tiled-drawing/tile-coverage-slow-scrolling-expected.txt: Added. |
| * platform/mac/tiled-drawing/tile-coverage-slow-scrolling.html: Added. |
| |
| 2012-10-24 David Barton <dbarton@mathscribe.com> |
| |
| MathML tests trigger font cache assertions in debug bots |
| https://bugs.webkit.org/show_bug.cgi?id=100268 |
| |
| Reviewed by Eric Seidel. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Tommy Widenflycht <tommyw@google.com> |
| |
| MediaStream API: Make sure all RTCPeerConnection events are dispatched asynchronously |
| https://bugs.webkit.org/show_bug.cgi?id=100286 |
| |
| Reviewed by Adam Barth. |
| |
| RTCPeerConnection::close is the only function that dispatches an event directly so only test that. |
| |
| * fast/mediastream/RTCPeerConnection-events-expected.txt: Added. |
| * fast/mediastream/RTCPeerConnection-events.html: Added. |
| |
| 2012-10-24 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Chromium revision 163873 also made |
| platform/chromium/virtual/gpu/fast/canvas/canvas-incremental-repaint.html slow. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Max Vujovic <mvujovic@adobe.com> |
| |
| [CSS Shaders] The mesh should be specified using <column, row> order |
| https://bugs.webkit.org/show_bug.cgi?id=96285 |
| |
| Reviewed by Dean Jackson. |
| |
| Add a test verifying that WebKit interprets the CSS mesh values in column, row order. |
| Update existing tests for u_meshSize and u_tileSize to expect column, row order. |
| |
| * css3/filters/custom/custom-filter-mesh-column-row-order-expected.html: Added. |
| * css3/filters/custom/custom-filter-mesh-column-row-order.html: Added. |
| * css3/filters/resources/checkerboard.vs: Added. |
| * css3/filters/resources/u-mesh-size.fs: |
| * css3/filters/resources/u-tile-size.fs: |
| * css3/filters/resources/varying-mix-color.fs: Added. |
| |
| 2012-10-24 Tony Chang <tony@chromium.org> |
| |
| [chromium] Unreviewed, land pixel results on Win/Mac for a new repaint test. |
| |
| * platform/chromium-mac/css3/flexbox/repaint-during-resize-no-flex-expected.png: Added. |
| * platform/chromium-win/css3/flexbox/repaint-during-resize-no-flex-expected.png: Renamed from LayoutTests/platform/chromium-linux/css3/flexbox/repaint-during-resize-no-flex-expected.png. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Sailesh Agrawal <sail@chromium.org> |
| |
| Incorrect keycodes for numpad /, -, +, . |
| https://bugs.webkit.org/show_bug.cgi?id=99188 |
| |
| Reviewed by Tony Chang. |
| |
| Added test to map numpad keys to windows virtual keycodes. This test is for the Mac port only. DumpRenderTree in the chromium-mac port doesn't use Mac keycodes so this can't be tested on that platform. |
| |
| * platform/mac/fast/events/numpad-keycode-mapping-expected.txt: Added. |
| * platform/mac/fast/events/numpad-keycode-mapping.html: Added. |
| |
| 2012-10-24 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Marking the software compositing version of |
| compositing/tiling/backface-preserve-3d-tiled.html as failing as well. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Marking 2 more mathml tests as flaky crashers on debug. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Terry Anderson <tdanderson@chromium.org> |
| |
| Handle two-finger tap gestures in the same way as long-press gestures |
| https://bugs.webkit.org/show_bug.cgi?id=99947 |
| |
| Reviewed by Adam Barth. |
| |
| New layout test for dispatching context menus on a two-finger tap |
| gesture when touch adjustment is enabled. |
| |
| * touchadjustment/touch-links-two-finger-tap-expected.txt: Added. |
| * touchadjustment/touch-links-two-finger-tap.html: Added. |
| |
| 2012-10-24 Chris Fleizach <cfleizach@apple.com> |
| |
| AX:When aria-label is used, the text under an element is still appearing as the AXTitle |
| https://bugs.webkit.org/show_bug.cgi?id=98167 |
| |
| Reviewed by Beth Dakin. |
| |
| * platform/mac/accessibility/aria-label-overrides-visible-text-expected.txt: Added. |
| * platform/mac/accessibility/aria-label-overrides-visible-text.html: Added. |
| * platform/mac/accessibility/aria-labelledby-overrides-aria-label-expected.txt: |
| |
| 2012-10-24 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132303 and r132312. |
| http://trac.webkit.org/changeset/132303 |
| http://trac.webkit.org/changeset/132312 |
| https://bugs.webkit.org/show_bug.cgi?id=100287 |
| |
| Triggering crashes on many popular websites (Requested by |
| leviw|gardening on #webkit). |
| |
| * fast/dom/shadow/athost-atrules-expected.txt: Removed. |
| * fast/dom/shadow/athost-atrules.html: Removed. |
| |
| 2012-10-24 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Cursor property value identities should be preserved |
| https://bugs.webkit.org/show_bug.cgi?id=100051 |
| |
| Reviewed by Tony Chang. |
| |
| Add tests to verify identity/read-only/mutability of cursor properties. |
| |
| * storage/indexeddb/cursor-properties-expected.txt: Added. |
| * storage/indexeddb/cursor-properties.html: Added. |
| * storage/indexeddb/resources/cursor-properties.js: Added. |
| (test.request.onsuccess): |
| (test): |
| (onUpgradeNeeded): |
| (onOpenSuccess.request.onsuccess): |
| (onOpenSuccess): |
| (checkProperty): |
| |
| 2012-10-24 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Updating slow expectations for two tests following a Chromium |
| change. See https://bugs.webkit.org/show_bug.cgi?id=100287 |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Tony Chang <tony@chromium.org> |
| |
| Setting width of a flexitem causes the adjacent flex item to be displayed poorly. |
| https://bugs.webkit.org/show_bug.cgi?id=99925 |
| |
| Reviewed by Ojan Vafai. |
| |
| Add a repaint test. The render tree should be cross platform, but due to |
| slight color differences in the grey overlay, the png can't be shared. |
| |
| * css3/flexbox/repaint-during-resize-no-flex-expected.txt: Added. |
| * css3/flexbox/repaint-during-resize-no-flex.html: Added. |
| * platform/chromium-linux/css3/flexbox/repaint-during-resize-no-flex-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Simon Fraser <simon.fraser@apple.com> |
| |
| Fix CALayer hiearchy when combining tiling with preserve-3d |
| https://bugs.webkit.org/show_bug.cgi?id=100205 |
| |
| Reviewed by Dean Jackson. |
| |
| Pixel test that tests backface-visibility on a tile cache layer. Mark the test as |
| failing on Chromium. |
| |
| * compositing/tiling/backface-preserve-3d-tiled-expected.png: Added. |
| * compositing/tiling/backface-preserve-3d-tiled-expected.txt: Added. |
| * compositing/tiling/backface-preserve-3d-tiled.html: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Rick Byers <rbyers@chromium.org> |
| |
| image-set doesn't round-trip properly with cssText |
| https://bugs.webkit.org/show_bug.cgi?id=99725 |
| |
| Reviewed by Beth Dakin. |
| |
| Update image-set-setting test to expect the css text to round-trip properly. |
| |
| * fast/css/image-set-setting-expected.txt: |
| * fast/css/script-tests/image-set-setting.js: |
| (testComputedStyle): |
| (testImageSetRule): |
| |
| 2012-10-24 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Rebaselining two Video Track tests after r132349. |
| |
| * platform/gtk/media/track/track-cue-rendering-horizontal-expected.txt: |
| * platform/gtk/media/track/track-cue-rendering-vertical-expected.txt: |
| |
| 2012-10-24 Chris Fleizach <cfleizach@apple.com> |
| |
| AX: WebKit exposes abstract ARIA role range as AXSlider; should be generic AXGroup |
| https://bugs.webkit.org/show_bug.cgi?id=100204 |
| |
| Reviewed by Beth Dakin. |
| |
| Remove the aria-range.html test because the same functionality is covered in aria-slider.html |
| Rename aria-range-value to aria-slider-value and use the non-abstract role slider instead (and |
| move that to the general accessibility platform). |
| |
| * accessibility/aria-slider-value-expected.txt: Copied from LayoutTests/platform/mac/accessibility/aria-range-value-expected.txt. |
| * accessibility/aria-slider-value.html: Copied from LayoutTests/platform/mac/accessibility/aria-range-value.html. |
| * platform/mac/accessibility/aria-range-expected.txt: Removed. |
| * platform/mac/accessibility/aria-range-value-expected.txt: Removed. |
| * platform/mac/accessibility/aria-range-value.html: Removed. |
| * platform/mac/accessibility/aria-range.html: Removed. |
| |
| 2012-10-24 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Marking fast/media/w3c/test_media_queries.html as slow on |
| Chromium debug bots following r132352. It may still timeout... |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Florin Malita <fmalita@chromium.org> |
| |
| [Chromium] SVG repaint issues |
| https://bugs.webkit.org/show_bug.cgi?id=99874 |
| |
| Reviewed by Levi Weintraub. |
| |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-float-border-padding-expected.png: |
| * platform/chromium-linux/svg/zoom/text/zoom-svg-float-border-padding-expected.png: |
| * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: |
| * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Dana Jansens <danakj@chromium.org> |
| |
| Layout tests to verify scaled composited layers have crisp text |
| https://bugs.webkit.org/show_bug.cgi?id=96940 |
| |
| Reviewed by Adrienne Walker. |
| |
| Chromium bug: crbug.com/149943 |
| |
| * compositing/text-on-scaled-layer-expected.html: Added. |
| * compositing/text-on-scaled-layer.html: Added. |
| * compositing/text-on-scaled-surface-expected.html: Added. |
| * compositing/text-on-scaled-surface.html: Added. |
| * platform/chromium/TestExpectations: |
| * platform/mac/TestExpectations: |
| |
| 2012-10-24 Levi Weintraub <leviw@chromium.org> |
| |
| Unreveiewed gardening. Fixing linter, marking 2 mathml tests as flaky crashers on debug, |
| and adding passing Lion expectations for a third mathml test. |
| |
| * platform/chromium/TestExpectations: |
| * platform/chromium-mac-lion/mathml/presentation/fenced-expected.png: Modified. |
| |
| 2012-10-24 Toni Barzic <tbarzic@chromium.org> |
| |
| Crash when trying to write exception message to null console |
| https://bugs.webkit.org/show_bug.cgi?id=99658 |
| |
| Reviewed by Adam Barth. |
| |
| The test creates bunch of workers that throw an exception as soon as they are loaded and then tries to change the current document. |
| The test passes if there is no crash. |
| Unfortuantely, the test is inherently flaky and may produce some false positive results (but should never fail if there is no bug). |
| |
| * fast/workers/resources/worker-exception.js: Added. |
| * fast/workers/worker-exception-during-navigation-expected.txt: Added. |
| * fast/workers/worker-exception-during-navigation.html: Added. |
| |
| 2012-10-24 David Barton <dbarton@mathscribe.com> |
| |
| [MathML] Timeouts on linux after r132264 |
| https://bugs.webkit.org/show_bug.cgi?id=100202 |
| |
| Reviewed by Eric Seidel. |
| |
| The failing tests no longer timeout. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Alexander Shalamov <alexander.shalamov@intel.com> |
| |
| CSS3 Media Queries - add resolution tests to W3C test suite |
| https://bugs.webkit.org/show_bug.cgi?id=100231 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Resolution media feature was implemented, therefore, |
| W3C tests are added back to the test suite. |
| |
| * fast/media/w3c/test_media_queries-expected.txt: |
| * fast/media/w3c/test_media_queries.html: |
| |
| Created platform specific expectations for the platforms that have RESOLUTION_MEDIA_QUERY disabled. |
| |
| * platform/blackberry/fast/media/w3c/test_media_queries-expected.txt: Added. |
| * platform/chromium/fast/media/w3c/test_media_queries-expected.txt: Added. |
| * platform/gtk/fast/media/w3c/test_media_queries-expected.txt: Added. |
| * platform/mac/fast/media/w3c/test_media_queries-expected.txt: Added. |
| * platform/win/fast/media/w3c/test_media_queries-expected.txt: Added. |
| |
| 2012-10-24 Dominik Röttsches <dominik.rottsches@intel.com> |
| |
| [EFL] Unreviewed gardening. |
| |
| * platform/efl-wk1/TestExpectations: Marking shadow-dom failures after r132303 |
| * platform/efl-wk2/TestExpectations: Marking focus failure after r132342 and drag-select failure between r132333-r132343. |
| |
| 2012-10-24 Eric Carlson <eric.carlson@apple.com> |
| |
| Allow ports to override text track rendering style |
| https://bugs.webkit.org/show_bug.cgi?id=97800 |
| <rdar://problem/12044964> |
| |
| Reviewed by Maciej Stachowiak. |
| |
| * media/track/track-cue-rendering-expected.txt: Update results for caption css changes. |
| * media/track/track-cue-rendering.html: |
| * platform/chromium/TestExpectations: Skip tests that need to be rebaselined. |
| |
| 2012-10-24 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Introduce workspace provider as a content providing backend for project. |
| https://bugs.webkit.org/show_bug.cgi?id=100244 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/compiler-script-mapping.html: |
| * http/tests/inspector/workspace-test.js: |
| (initialize_WorkspaceTest.InspectorTest.createWorkspace): |
| (initialize_WorkspaceTest.InspectorTest.addMockUISourceCodeToWorkspace): |
| * inspector/debugger/network-uisourcecode-provider.html: |
| * inspector/debugger/script-snippet-model.html: |
| * inspector/debugger/scripts-panel.html: |
| * inspector/uisourcecode-revisions.html: |
| |
| 2012-10-24 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: UiSourceCode should rely on the workspace as a content provider. |
| https://bugs.webkit.org/show_bug.cgi?id=100216 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/compiler-script-mapping.html: |
| * inspector/debugger/breakpoint-manager.html: |
| * inspector/debugger/script-formatter-search.html: |
| * inspector/debugger/scripts-file-selector.html: |
| * inspector/debugger/scripts-panel.html: |
| * inspector/debugger/scripts-sorting.html: |
| * inspector/debugger/ui-source-code-display-name.html: |
| * inspector/debugger/ui-source-code.html: |
| * inspector/uisourcecode-revisions.html: |
| |
| 2012-10-24 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Hopefully finish rebaselining after r131941 and r131991. |
| |
| * platform/efl/compositing/clip-change-expected.png: Added. |
| * platform/efl/compositing/geometry/foreground-offset-change-expected.png: Added. |
| * platform/efl/compositing/iframes/fixed-position-iframe-expected.png: Added. |
| * platform/efl/compositing/iframes/iframe-content-flipping-expected.png: |
| * platform/efl/compositing/iframes/repaint-after-losing-scrollbars-expected.png: Added. |
| * platform/efl/compositing/iframes/scroll-fixed-transformed-element-expected.png: Added. |
| * platform/efl/compositing/iframes/scroll-grandchild-iframe-expected.png: Added. |
| * platform/efl/compositing/overflow/repaint-after-losing-scrollbars-expected.png: |
| * platform/efl/compositing/repaint/newly-composited-on-scroll-expected.png: |
| * platform/efl/compositing/repaint/newly-composited-repaint-rect-expected.png: |
| * platform/efl/compositing/repaint/shrink-layer-expected.png: Added. |
| * platform/efl/compositing/repaint/transform-style-change-expected.png: Added. |
| * platform/efl/compositing/rtl: Added. |
| * platform/efl/compositing/rtl/rtl-overflow-invalidation-expected.png: Added. |
| * platform/efl/compositing/video-page-visibility-expected.png: |
| * platform/efl/css3/flexbox/repaint-expected.png: |
| * platform/efl/fast/canvas/canvas-as-image-incremental-repaint-expected.png: Added. |
| * platform/efl/fast/canvas/canvas-composite-fill-repaint-expected.png: |
| * platform/efl/fast/canvas/canvas-incremental-repaint-2-expected.png: Added. |
| * platform/efl/fast/canvas/canvas-incremental-repaint-expected.png: Added. |
| * platform/efl/fast/canvas/canvas-resize-after-paint-without-layout-expected.png: |
| * platform/efl/fast/canvas/setWidthResetAfterForcedRender-expected.png: |
| |
| 2012-10-24 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding crash expectations for tests that started crashing after r132286. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-24 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132333. |
| http://trac.webkit.org/changeset/132333 |
| https://bugs.webkit.org/show_bug.cgi?id=100234 |
| |
| Crashes many tests on the EFL-WK2 bot. (Requested by rakuco on |
| #webkit). |
| |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/efl/editing/spelling/inline_spelling_markers-expected.txt: Removed. |
| * platform/efl/editing/spelling/spelling-expected.txt: Removed. |
| |
| 2012-10-24 Grzegorz Czajkowski <g.czajkowski@samsung.com> |
| |
| [EFL] WebKitTestRunner needs to turn on 'setContinuousSpellCheckingEnabled' |
| https://bugs.webkit.org/show_bug.cgi?id=93611 |
| |
| Reviewed by Hajime Morita. |
| |
| Unskip the spelling tests from efl-wk2/TestExpectations to run them for WebKit2-EFL. |
| Add new baselines for two spelling tests. |
| |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/efl/editing/spelling/inline_spelling_markers-expected.txt: Added. |
| * platform/efl/editing/spelling/spelling-expected.txt: Added. |
| |
| 2012-10-24 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Test expectation update |
| |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-24 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Test expectation update |
| |
| * platform/chromium/TestExpectations: |
| - exif-orientation-css.html is ImageOnlyFailure. |
| - Still need rebaseline for calendar-picker-appearance-step.html on Windows? |
| |
| 2012-10-12 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt][WK2] Skip tests that depend on disabling accelerated compositing |
| https://bugs.webkit.org/show_bug.cgi?id=99167 |
| |
| Rubber-stamped by Simon Hausmann. |
| |
| Skip those tests because we don't support the non-accelerated |
| rendering path. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-24 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Rebaseline for r132310. |
| |
| * platform/chromium/TestExpectations: |
| * platform/chromium-linux-x86/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-linux-x86/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-win-xp/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-win-xp/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-win-xp/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-win-xp/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Removed. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| |
| 2012-10-24 Nandor Huszka <hnandor@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening. |
| |
| Skipping a test because of r132303. Now ENABLE(SHADOW_DOM) is disabled on Qt. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-24 Byungwoo Lee <bw80.lee@samsung.com> |
| |
| [EFL] Unskip fast/events/tabindex-focus-blur-all.html. |
| https://bugs.webkit.org/show_bug.cgi?id=100206 |
| |
| Unreviewed, EFL gardening. |
| |
| The bug webkit.org/b/100065 is fixed and the test is passing now. |
| |
| * platform/efl-wk1/TestExpectations: |
| |
| 2012-10-24 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| Marking fast/xmlhttprequest/xmlhttprequest-recursive-sync-event.html |
| as flaky after r132143. |
| Adding baselines for tvo SVG Transforms tests required after r132121. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/svg/transforms/svg-css-transforms-clip-path-expected.png: Added. |
| * platform/gtk/svg/transforms/svg-css-transforms-clip-path-expected.txt: Added. |
| * platform/gtk/svg/transforms/svg-css-transforms-expected.png: Added. |
| * platform/gtk/svg/transforms/svg-css-transforms-expected.txt: Added. |
| |
| 2012-10-23 David Barton <dbarton@mathscribe.com> |
| |
| Unreviewed gardening. Some linux MathML tests are timing out - see webkit.org/b/100202. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-23 Kent Tamura <tkent@chromium.org> |
| |
| Multiple fields input UI: Don't use CSS properties for physical direction |
| https://bugs.webkit.org/show_bug.cgi?id=100195 |
| |
| Reviewed by Kentaro Hara. |
| |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| |
| 2012-10-23 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Rebaseline for r132291 |
| https://bugs.webkit.org/show_bug.cgi?id=100088 |
| |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win-xp/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-win-xp/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| |
| 2012-10-23 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed nightly gardening, skip new failing tests. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-23 Tony Chang <tony@chromium.org> |
| |
| [chromium] Remove duplicate platform/mac entries |
| https://bugs.webkit.org/show_bug.cgi?id=100167 |
| |
| Reviewed by Dirk Pranke. |
| |
| We intentionally don't run platform/mac tests in Chromium. Remove lines |
| that duplicate the directory WontFix. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-23 Takashi Sakamoto <tasak@google.com> |
| |
| [Shadow DOM] Needs @host rule for ShadowDOM styling |
| https://bugs.webkit.org/show_bug.cgi?id=88606 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/dom/shadow/athost-atrules-expected.txt: Added. |
| * fast/dom/shadow/athost-atrules.html: Added. |
| |
| 2012-10-23 Simon Fraser <simon.fraser@apple.com> |
| |
| Allow tests to run with a tile cache, and optionally dump the tile cache via layerTreeAsText() |
| https://bugs.webkit.org/show_bug.cgi?id=100159 |
| |
| Reviewed by Tim Horton. |
| |
| A new test that dumps tile cache data for a large page. |
| |
| * platform/mac/tiled-drawing/use-tiled-drawing-expected.txt: Added. |
| * platform/mac/tiled-drawing/use-tiled-drawing.html: Added. |
| |
| 2012-10-23 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132276. |
| http://trac.webkit.org/changeset/132276 |
| https://bugs.webkit.org/show_bug.cgi?id=100189 |
| |
| It broke the Qt-WK2 build intentionally (Requested by |
| Ossy_night on #webkit). |
| |
| * platform/mac/tiled-drawing/use-tiled-drawing-expected.txt: Removed. |
| * platform/mac/tiled-drawing/use-tiled-drawing.html: Removed. |
| |
| 2012-10-23 Noel Gordon <noel.gordon@gmail.com> |
| |
| exif-orientation tests should use dumpAsText(true) |
| https://bugs.webkit.org/show_bug.cgi?id=100076 |
| |
| Reviewed by Eric Seidel. |
| |
| * fast/images/exif-orientation-css.html: Use dumpAsText(true). |
| * fast/images/exif-orientation.html: ditto. |
| |
| 2012-10-23 Michał Pakuła vel Rutka <m.pakula@samsung.com> |
| |
| [EFL] Unreviewed EFL gardening. |
| https://bugs.webkit.org/show_bug.cgi?id=100125 |
| |
| Added pixel baselines for editing/pasteboard. |
| |
| * platform/efl/editing/pasteboard: 26 new pixel baselines. |
| |
| 2012-10-23 Kent Tamura <tkent@chromium.org> |
| |
| REGRESSION(r131421): Text baseline is not aligned in some locales |
| https://bugs.webkit.org/show_bug.cgi?id=100088 |
| |
| Reviewed by Hajime Morita. |
| |
| Add a pixel image which has notable changes. |
| Input elements in other tests have slightly small height and |
| slightly narrow width. |
| |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-23 Varun Jain <varunjain@chromium.org> |
| |
| Context menu generated from touch gestures on textareas has |
| context of the cursor position instead of the position where the event occurs. |
| https://bugs.webkit.org/show_bug.cgi?id=99520 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Send a synthetic mouse down event for context menu-summoning-gesture events so that |
| textareas can correctly set cursors before receiving the context menu event. |
| |
| * fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html: Added. |
| * platform/chromium/fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position-expected.txt: Added. |
| |
| 2012-10-23 Levi Weintraub <leviw@chromium.org> |
| |
| The rest of the baselines have landed! Should green the Mac bots for MathML after r132264. |
| |
| * platform/chromium-mac-lion/mathml: Added. |
| * platform/chromium-mac-lion/mathml/presentation: Added. |
| * platform/chromium-mac-lion/mathml/presentation/attributes-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/fenced-mi-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/fractions-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/fractions-vertical-alignment-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/mo-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/mo-stretch-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/mroot-pref-width-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/over-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/roots-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/row-alignment-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/row-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/style-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/sub-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/subsup-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/subsup-expected.txt: Added. |
| * platform/chromium-mac-lion/mathml/presentation/sup-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/tables-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/tokenElements-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/under-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/presentation/underover-expected.png: Added. |
| * platform/chromium-mac-lion/mathml/xHeight-expected.png: Added. |
| * platform/chromium-mac/mathml: Added. |
| * platform/chromium-mac/mathml/presentation: Added. |
| * platform/chromium-mac/mathml/presentation/attributes-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/fenced-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/fenced-mi-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/fractions-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/fractions-vertical-alignment-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/mo-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/mo-stretch-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/mroot-pref-width-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/over-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/roots-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/row-alignment-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/row-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/style-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/sub-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/subsup-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/subsup-expected.txt: Added. |
| * platform/chromium-mac/mathml/presentation/sup-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/tables-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/tokenElements-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/under-expected.png: Added. |
| * platform/chromium-mac/mathml/presentation/underover-expected.png: Added. |
| * platform/chromium-mac/mathml/xHeight-expected.png: Added. |
| |
| 2012-10-23 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Updating expectations after r132264. |
| |
| * platform/chromium-mac-snowleopard/mathml: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/attributes-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/attributes-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fenced-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fenced-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fenced-mi-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fenced-mi-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fractions-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fractions-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fractions-vertical-alignment-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/fractions-vertical-alignment-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/mo-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/mo-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/mo-stretch-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/mo-stretch-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/mroot-pref-width-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/mroot-pref-width-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/over-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/over-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/roots-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/roots-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/row-alignment-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/row-alignment-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/row-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/row-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/style-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/style-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/sub-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/sub-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/subsup-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/subsup-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/sup-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/sup-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/tables-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/tables-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/tokenElements-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/tokenElements-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/under-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/under-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/underover-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/presentation/underover-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/mathml/xHeight-expected.png: Added. |
| * platform/chromium-mac-snowleopard/mathml/xHeight-expected.txt: Added. |
| |
| 2012-10-23 Simon Fraser <simon.fraser@apple.com> |
| |
| Allow tests to run with a tile cache, and optionally dump the tile cache via layerTreeAsText() |
| https://bugs.webkit.org/show_bug.cgi?id=100159 |
| |
| Reviewed by Tim Horton. |
| |
| A new test that dumps tile cache data for a large page. |
| |
| * platform/mac/tiled-drawing/use-tiled-drawing-expected.txt: Added. |
| * platform/mac/tiled-drawing/use-tiled-drawing.html: Added. |
| |
| 2012-10-23 Chris Rogers <crogers@google.com> |
| |
| Change setTargetValueAtTime() to setTargetAtTime() |
| https://bugs.webkit.org/show_bug.cgi?id=100153 |
| |
| Reviewed by Adam Barth. |
| |
| * webaudio/audioparam-setTargetAtTime-expected.txt: Renamed from LayoutTests/webaudio/audioparam-setTargetValueAtTime-expected.txt. |
| * webaudio/audioparam-setTargetAtTime.html: Renamed from LayoutTests/webaudio/audioparam-setTargetValueAtTime.html. |
| * webaudio/resources/audioparam-testing.js: |
| |
| 2012-10-23 Elliott Sprehn <esprehn@chromium.org> |
| |
| Generated should not be supported for things with a shadow |
| https://bugs.webkit.org/show_bug.cgi?id=98836 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| Change all pseudos on <input> tests to be ref tests and clean up the tests. |
| They now make sure we don't support generated content on things with a shadow. |
| Also added another test for the other form control types to ensure they don't |
| support pseudos either. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/pseudo-elements-expected.html: Added. |
| * fast/forms/pseudo-elements.html: Added. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements.html: |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.html: Added. |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.txt: Removed. |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements.html: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Removed. |
| |
| 2012-10-23 Huang Dongsung <luxtella@company100.net> |
| |
| [CSS Shaders] Implement overlay, color-dodge, color-burn, hard-light, soft-light blend modes. |
| https://bugs.webkit.org/show_bug.cgi?id=98504 |
| |
| Reviewed by Dean Jackson. |
| |
| Update the test for the aforementioned blend modes. |
| |
| * css3/filters/custom/custom-filter-blend-modes-expected.html: |
| * css3/filters/custom/custom-filter-blend-modes.html: |
| |
| 2012-10-23 Huang Dongsung <luxtella@company100.net> |
| |
| [CSS Shaders] Implement all composite operators except destination and lighter. |
| https://bugs.webkit.org/show_bug.cgi?id=97859 |
| |
| Reviewed by Dean Jackson. |
| |
| Add test to check that the DOM element texture composites correctly with the css_MixColor |
| variable from the author's shader for each composite operator. |
| |
| * css3/filters/custom/custom-filter-composite-operators-expected.png: Added. |
| * css3/filters/custom/custom-filter-composite-operators-expected.txt: Added. |
| * css3/filters/custom/custom-filter-composite-operators.html: Added. |
| |
| 2012-10-23 Max Vujovic <mvujovic@adobe.com> |
| |
| [CSS Shaders] Changing the blend mode in CSS doesn't update the custom filter rendering |
| https://bugs.webkit.org/show_bug.cgi?id=99887 |
| |
| Reviewed by Dirk Schulze. |
| |
| Add a test that resolves a custom filter's style with the "multiply" blend mode and then |
| changes the blend mode to "normal". The test makes sure not to change any other parameters |
| besides the blend mode, since the other parameters can trigger style recalculations on their |
| own. |
| |
| * css3/filters/custom/custom-filter-change-blend-mode-expected.html: Added. |
| * css3/filters/custom/custom-filter-change-blend-mode.html: Added. |
| |
| 2012-10-23 David Barton <dbarton@mathscribe.com> |
| |
| [MathML] Symbol font uses greek letters for roman ones on linux and Windows |
| https://bugs.webkit.org/show_bug.cgi?id=99921 |
| |
| Reviewed by Eric Seidel. |
| |
| * mathml/presentation/mo.xhtml: |
| * platform/chromium/TestExpectations: |
| * platform/chromium/mathml/presentation/attributes-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/attributes-expected.txt: |
| * platform/chromium/mathml/presentation/fenced-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/fenced-expected.txt: |
| * platform/chromium/mathml/presentation/fenced-mi-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/fenced-mi-expected.txt: |
| * platform/chromium/mathml/presentation/fractions-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/fractions-expected.txt: |
| * platform/chromium/mathml/presentation/fractions-vertical-alignment-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/fractions-vertical-alignment-expected.txt: |
| * platform/chromium/mathml/presentation/mo-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/mo-expected.txt: |
| * platform/chromium/mathml/presentation/mo-stretch-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/mo-stretch-expected.txt: |
| * platform/chromium/mathml/presentation/mroot-pref-width-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/mroot-pref-width-expected.txt: |
| * platform/chromium/mathml/presentation/over-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/over-expected.txt: |
| * platform/chromium/mathml/presentation/roots-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/roots-expected.txt: |
| * platform/chromium/mathml/presentation/row-alignment-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/row-alignment-expected.txt: |
| * platform/chromium/mathml/presentation/row-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/row-expected.txt: |
| * platform/chromium/mathml/presentation/style-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/style-expected.txt: |
| * platform/chromium/mathml/presentation/sub-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/sub-expected.txt: |
| * platform/chromium/mathml/presentation/subsup-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/subsup-expected.txt: |
| * platform/chromium/mathml/presentation/sup-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/sup-expected.txt: |
| * platform/chromium/mathml/presentation/tables-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/tables-expected.txt: |
| * platform/chromium/mathml/presentation/tokenElements-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/tokenElements-expected.txt: |
| * platform/chromium/mathml/presentation/under-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/under-expected.txt: |
| * platform/chromium/mathml/presentation/underover-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/presentation/underover-expected.txt: |
| * platform/chromium/mathml/xHeight-expected.png: Modified property svn:mime-type. |
| * platform/chromium/mathml/xHeight-expected.txt: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| |
| 2012-10-23 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Properly skipping http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout* |
| tests, as was the author's intention. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-22 Dirk Schulze <krit@webkit.org> |
| |
| BasicShapePolygon::path takes width instead of height for boundary calculation |
| https://bugs.webkit.org/show_bug.cgi?id=99919 |
| |
| Reviewed by Darin Adler. |
| |
| Test that the correct relation is used for calculating point position of an polygon. |
| |
| * css3/masking/clip-path-polygon-percentage-expected.html: Added. |
| * css3/masking/clip-path-polygon-percentage.html: Added. |
| |
| 2012-10-23 Dirk Pranke <dpranke@chromium.org> |
| |
| Remove remaining fast/innerHTML pixel test baselines after r131960. |
| |
| Unreviewed, expectations change. |
| |
| * platform/chromium-linux/fast/innerHTML/002-expected.png: Removed. |
| * platform/chromium-linux/fast/innerHTML/003-expected.png: Removed. |
| * platform/chromium-linux/fast/innerHTML/006-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/001-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/002-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/003-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/006-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/001-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/002-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/003-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/006-expected.png: Removed. |
| * platform/chromium-win/fast/innerHTML/001-expected.png: Removed. |
| * platform/chromium-win/fast/innerHTML/001-expected.txt: Removed. |
| * platform/chromium-win/fast/innerHTML/002-expected.txt: Removed. |
| * platform/chromium-win/fast/innerHTML/003-expected.txt: Removed. |
| * platform/chromium-win/fast/innerHTML/006-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/001-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/002-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/003-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/006-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/001-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/002-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/003-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/006-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/innerHTML-iframe-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/001-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/002-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/003-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/006-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/001-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/002-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/003-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/006-expected.txt: Removed. |
| |
| 2012-10-23 Dominik Röttsches <dominik.rottsches@intel.com> |
| |
| Add timeout support to XMLHttpRequest |
| https://bugs.webkit.org/show_bug.cgi?id=74802 |
| |
| Reviewed by Nate Chapin. |
| |
| XHR2 timeout tests were initially written by Mozilla's Alex Vincent's. He granted |
| permission to reuse them under PD/BSD license |
| in https://bugzilla.mozilla.org/show_bug.cgi?id=525816#c86 - big thanks! |
| I adapted them for W3C testharness.js and split them into groups with shorter test running time |
| so that they can be used as WebKit layout tests. Each individual test should |
| complete in less than 20 seconds. |
| |
| The case of late updates to the timeout property, changing the timeout value after send() |
| is not supported yet and handled separately in bug 98156. Tests that are testing this feature |
| are commented out until this bug is tackled. |
| |
| The suffix of the html test filename matches the groups in xmlhttprequest-timeout.js which contains |
| all tests that are run. The result of assertions is reported back to testharness.js. |
| |
| For example, the "overrides" group is currently not run yet since all tests in that group are cases |
| of late updates, see above. Once late updates are supported we can add a file |
| xmlhttprequest-timeout-overrides.html to run them. |
| |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-aborted-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-aborted.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-abortedonmain-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-abortedonmain.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-overridesexpires-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-overridesexpires.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-runner.js: Added. Distinguishes which group of tests to run based on filename suffix. |
| (testResultCallbackHandler.return): |
| (groupFromLocation): |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-simple-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-simple.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-synconmain-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-synconmain.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-twice-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-twice.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-aborted-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-aborted.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-overridesexpires-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-overridesexpires.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-simple-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-simple.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-synconworker-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-synconworker.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-twice-expected.txt: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-twice.html: Added. |
| * http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout.js: Added. Contains test cases for all individual test html files. |
| (message): Wrapper for postMessage in worker and document context case. |
| (is), |
| (ok): Assertion functions. |
| (RequestTracker): Class for variations of the regular timeout case. |
| (RequestTracker.prototype.startXHR.handleEvent): |
| (RequestTracker.prototype.startXHR): |
| (RequestTracker.prototype.getMessage): |
| (RequestTracker.prototype.handleEvent): |
| (AbortedRequest): Class for testing timeout event vs. abort events. |
| (AbortedRequest.prototype.startXHR.handleEvent): |
| (AbortedRequest.prototype.startXHR.abortReq): |
| (AbortedRequest.prototype.startXHR.else): |
| (AbortedRequest.prototype.startXHR): |
| (AbortedRequest.prototype.noEventsFired): |
| (AbortedRequest.prototype.getMessage): |
| (AbortedRequest.prototype.handleEvent): |
| (SyncRequestSettingTimeoutAfterOpen.startXHR), |
| (SyncRequestSettingTimeoutBeforeOpen.startXHR): Test classes for synchronous XHR cases. |
| (TestCounter.testComplete), |
| (TestCounter.next): Used for cycling through tests. |
| * platform/chromium/TestExpectations: Skipping XHR timeout cases since setTimeoutInterval is not supported in Chromium's HTTP stack. |
| * platform/gtk/TestExpectations: Marking XHR timeout cases as slow in order to run them with a longer test timeout threshold. |
| * platform/qt/TestExpectations: Skipping XHR timeout cases since setTimeoutInterval is not supported in Chromium's HTTP stack. |
| |
| 2012-10-23 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. css3/filters/blur-filter-page-scroll-self.html is crashing |
| now as well as generating incorrect image results :( |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-23 Yael Aharon <yael.aharon@intel.com> |
| |
| [WIN7] Skip fast/media/mq-resolution.html. |
| https://bugs.webkit.org/show_bug.cgi?id=100143. |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| The feature is not yet implemented. |
| |
| * platform/win/TestExpectations: |
| |
| 2012-10-23 Christophe Dumez <christophe.dumez@intel.com> |
| |
| Possible assertion hit in WebCore::HTMLSelectElement::updateListBoxSelection() |
| https://bugs.webkit.org/show_bug.cgi?id=99967 |
| |
| Reviewed by Tony Chang. |
| |
| Added layout test to reproduce an assertion hit in |
| WebCore::HTMLSelectElement::updateListBoxSelection() when pressing the left |
| button outside a multiselect and then moving the mouse over the multiselect |
| element while holding the button down. |
| |
| * fast/dom/HTMLSelectElement/select-selectedIndex-noAnchorIndex-crash-expected.txt: Added. |
| * fast/dom/HTMLSelectElement/select-selectedIndex-noAnchorIndex-crash.html: Added. |
| |
| 2012-10-23 Pavel Feldman <pfeldman@chromium.org> |
| |
| Web Inspector: array grouping does not work for arrays with exactly 10000 elements. |
| https://bugs.webkit.org/show_bug.cgi?id=100131 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| * inspector/console/console-big-array-expected.txt: |
| * inspector/console/console-big-array.html: |
| |
| 2012-10-23 Shinya Kawanaka <shinyak@chromium.org> |
| |
| The order of resolving distribution in tree composition is wrong. |
| https://bugs.webkit.org/show_bug.cgi?id=99552 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| We also fix the existing wrong test. |
| |
| * fast/dom/shadow/content-reprojection-order-expected.html: Added. |
| * fast/dom/shadow/content-reprojection-order.html: Added. |
| * fast/dom/shadow/shadow-element-rendering-single.html: |
| |
| 2012-10-23 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding failure expectation for fast/media/mq-resolution.html, it relies |
| on the Resolution Media Query feature being enabled. |
| Adding a proper bug modifier for fast/files/workers/worker-apply-blob-url-to-xhr.html. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-23 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Move UISourceCode creation out of mappings to workspace. |
| https://bugs.webkit.org/show_bug.cgi?id=100092 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/workspace-test.js: |
| (initialize_WorkspaceTest.InspectorTest.addMockUISourceCodeToWorkspace): |
| * inspector/debugger/resource-script-mapping-expected.txt: |
| * inspector/debugger/scripts-panel.html: |
| |
| 2012-10-23 Mike West <mkwst@chromium.org> |
| |
| Web Inspector: MIME type errors should truncate long URLs. |
| https://bugs.webkit.org/show_bug.cgi?id=100083 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/network/image-as-text-loading-data-url-expected.txt: Added. |
| * http/tests/inspector/network/image-as-text-loading-data-url.html: Added. |
| |
| 2012-10-23 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: Crash when adding a keyframes rule in the Styles pane |
| https://bugs.webkit.org/show_bug.cgi?id=99826 |
| |
| Reviewed by Pavel Feldman. |
| |
| * inspector/styles/add-new-rule-invalid-selector-expected.txt: Added. |
| * inspector/styles/add-new-rule-invalid-selector.html: Added. |
| |
| 2012-10-15 Kenneth Rohde Christiansen <kenneth@webkit.org> |
| |
| Add support for resolution media query |
| https://bugs.webkit.org/show_bug.cgi?id=99077 |
| |
| Reviewed by Antti Koivisto. |
| |
| Test (resolution: x) media query to ensure compliance |
| with spec plus proposed dppx values. |
| |
| * fast/media/mq-resolution-expected.txt: Added. |
| * fast/media/mq-resolution.html: Added. |
| |
| * LayoutTests/platform/mac/TestExpectations: |
| * LayoutTests/platform/chromium/TestExpectations: |
| |
| Skip the test as the ports do not enable CSS Image Resolution. |
| |
| 2012-10-23 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt][WK2] Unreviewed gardening. |
| |
| * platform/qt-5.0-wk2/http/tests/navigation/forward-and-cancel-expected.txt: |
| |
| 2012-10-23 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed holiday gardening to paint the bots green. |
| |
| * platform/qt-5.0-wk2/http/tests/navigation/forward-and-cancel-expected.txt: Added after r132041. |
| * platform/qt-5.0-wk2/http/tests/navigation/postredirect-frames-expected.txt: Added after r132041. |
| * platform/qt-5.0-wk2/http/tests/navigation/postredirect-goback2-expected.txt: Added after r132041. |
| * platform/qt/TestExpectations: Skip new failing tests. |
| |
| 2012-10-23 Adam Klein <adamk@chromium.org> |
| |
| Always parse pasted fragments as HTML even on XHTML pages |
| https://bugs.webkit.org/show_bug.cgi?id=99880 |
| |
| Reviewed by Ojan Vafai. |
| |
| Updated existing tests to match new expected behavior. |
| |
| * editing/pasteboard/paste-noscript-xhtml-expected.txt: The HTML |
| parser leaves <script> tags in the DOM when pasting, but removes their |
| attributes and children, so this is just as safe as the previous |
| behavior. |
| * platform/mac/editing/pasteboard/paste-xml-expected.txt: Now that we |
| use the HTML parser, parsing the paste succeeds and so we insert DOM |
| instead of plain text. Similar rebaselines may be needed on other |
| platforms. |
| |
| 2012-10-23 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Fixing failure expectation for fast/sub-pixel/file-upload-control-at-fractional-offset.html, |
| the test is a reftest so the expectation should be ImageOnlyFailure. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-23 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| [WK2] [WTR] WebKitTestRunner needs testRunner.queueForwardNavigation |
| https://bugs.webkit.org/show_bug.cgi?id=99700 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipped http/tests/cache/subresource-failover-to-network.html for WK2 ports. |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-23 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] REGRESSION (r130851): fast/text/word-space-with-kerning.html fails |
| https://bugs.webkit.org/show_bug.cgi?id=98876 |
| |
| Reviewed by Simon Hausmann. |
| |
| Unskip passing word-width tests. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-23 Dongwoo Joshua Im <dw.im@samsung.com> |
| |
| viewport-128-expected.txt has been removed unexpectedly. |
| https://bugs.webkit.org/show_bug.cgi?id=100108 |
| |
| Reviewed by Gyuyoung Kim. |
| |
| viewport-128-expected.txt has been removed by http://trac.webkit.org/changeset/132186 unexpectedly. |
| |
| * fast/viewport/viewport-128-expected.txt: Added. |
| |
| 2012-10-23 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: Incorrect resolution of relative URLs containing a scheme in query parameters |
| https://bugs.webkit.org/show_bug.cgi?id=100084 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| * inspector/styles/styles-url-linkify-expected.txt: |
| * inspector/styles/styles-url-linkify.html: |
| |
| 2012-10-23 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132149. |
| http://trac.webkit.org/changeset/132149 |
| https://bugs.webkit.org/show_bug.cgi?id=100098 |
| |
| Breaks inspector profiler tests in debug mode. (Requested by |
| pfeldman1 on #webkit). |
| |
| * fast/table/col-span-change-relayout-expected.txt: Removed. |
| * fast/table/col-span-change-relayout.html: Removed. |
| |
| 2012-10-23 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed holiday gardening. |
| |
| * platform/qt/TestExpectations: Skip new tests (and sort) because ENABLE(SHADOW_DOM) is disabled. |
| |
| 2012-10-23 Kent Tamura <tkent@chromium.org> |
| |
| Support full month names in DateTimeEditElement, and use them in input[type=month] by default |
| https://bugs.webkit.org/show_bug.cgi?id=100060 |
| |
| Reviewed by Kentaro Hara. |
| |
| Note: Other affected tests are already marked in TestExpectations. |
| |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n.html: |
| Add max attributes to show appearance in typical usage. |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: |
| Updated. |
| |
| 2012-10-23 Mike West <mkwst@chromium.org> |
| |
| Viewport errors should be slightly friendlier with regard to ';'. |
| https://bugs.webkit.org/show_bug.cgi?id=100003 |
| |
| Reviewed by Adam Barth. |
| |
| * fast/viewport/viewport-128-expected.txt: |
| * fast/viewport/viewport-133-expected.txt: |
| * fast/viewport/viewport-134-expected.txt: |
| * fast/viewport/viewport-54-expected.txt: |
| * fast/viewport/viewport-65-expected.txt: |
| * fast/viewport/viewport-67-expected.txt: |
| * fast/viewport/viewport-77-expected.txt: |
| * fast/viewport/viewport-warnings-5-expected.txt: |
| Updating tests with new expectations. |
| |
| 2012-10-23 Dan Carney <dcarney@google.com> |
| |
| When blocking localStorage, Firefox throws a security exception on access, and maybe so should we |
| https://bugs.webkit.org/show_bug.cgi?id=63257 |
| |
| Reviewed by Jochen Eisinger. |
| |
| Adjust tests to handle new exceptions. |
| |
| * fast/storage/storage-detached-iframe-expected.txt: |
| * fast/storage/storage-detached-iframe.html: |
| * platform/chromium/permissionclient/storage-permission-expected.txt: |
| * platform/chromium/permissionclient/storage-permission.html: |
| |
| 2012-10-23 Mark Lam <mark.lam@apple.com> |
| |
| Make topCallFrame reliable. |
| https://bugs.webkit.org/show_bug.cgi?id=98928. |
| |
| Reviewed by Geoffrey Garen. |
| |
| - Re-baseline some tests to match the new stack dump results. |
| |
| * http/tests/inspector/console-resource-errors-expected.txt: |
| * http/tests/inspector/stacktraces/csp-injected-content-warning-contains-stacktrace-expected.txt: |
| * http/tests/inspector/stacktraces/csp-inline-warning-contains-stacktrace-expected.txt: |
| |
| 2012-10-22 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Removing failure for an accessibility test that's already passing. |
| Updating and adding expectations for subpixel tests to reflect |
| the current situation. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-22 Kangil Han <kangil.han@samsung.com> |
| |
| [EFL] Skip fast/events/tabindex-focus-blur-all.html case. |
| https://bugs.webkit.org/show_bug.cgi?id=100067 |
| |
| Unreviewed, EFL gardening. |
| |
| fast/events/tabindex-focus-blur-all.html case has been crashed due to ASSERT in hashtable. |
| Please refer to BUG 100065 for crash details. |
| |
| * platform/efl-wk1/TestExpectations: |
| |
| 2012-10-22 MORITA Hajime <morrita@google.com> |
| |
| Assertion failed at WebCore::toInsertionPoint / WebCore::ContentDistributor::distribute |
| https://bugs.webkit.org/show_bug.cgi?id=100038 |
| |
| Reviewed by Kent Tamura. |
| |
| * fast/dom/shadow/insertion-points-with-shadow-disabled-expected.txt: Added. |
| * fast/dom/shadow/insertion-points-with-shadow-disabled.html: Added. |
| |
| 2012-10-22 Dongwoo Joshua Im <dw.im@samsung.com> |
| |
| Include path in the repaint-text-decoration-style.html should be changed. |
| https://bugs.webkit.org/show_bug.cgi?id=100063 |
| |
| Unreviewed gardening. |
| |
| The include path is differentiated by http://trac.webkit.org/changeset/132043 |
| |
| * fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style.html: |
| |
| 2012-10-22 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Shadow] Fallback content should also be reprojection. |
| https://bugs.webkit.org/show_bug.cgi?id=99750 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/content-reprojection-fallback-expected.html: Added. |
| * fast/dom/shadow/content-reprojection-fallback-reprojection-expected.html: Added. |
| * fast/dom/shadow/content-reprojection-fallback-reprojection.html: Added. |
| * fast/dom/shadow/content-reprojection-fallback.html: Added. |
| |
| 2012-10-22 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, more Chromium ML expectation updating. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-22 Tony Chang <tony@chromium.org> |
| |
| margin-top/bottom has no effect for child nodes of flex items |
| https://bugs.webkit.org/show_bug.cgi?id=99923 |
| |
| Reviewed by Ojan Vafai. |
| |
| Add a test to make sure we don't collapse margins in flex items. |
| |
| * css3/flexbox/flexitem-no-margin-collapsing-expected.txt: Added. |
| * css3/flexbox/flexitem-no-margin-collapsing.html: Added. |
| * css3/flexbox/repaint.html: |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium win rebaselines. |
| |
| * platform/chromium-win/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-win/fast/speech/input-appearance-searchandspeech-expected.txt: |
| |
| 2012-10-22 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, more Chromium ML expectation updating. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-22 Michael Saboff <msaboff@apple.com> |
| |
| Regression(r131655): Crash in StringImpl::findIgnoringCase |
| https://bugs.webkit.org/show_bug.cgi?id=99753 |
| |
| Reviewed by Geoffrey Garen. |
| |
| New regression test. |
| |
| * fast/js/find-ignoring-case-regress-99753-expected.txt: Added. |
| * fast/js/find-ignoring-case-regress-99753.html: Added. |
| |
| 2012-10-22 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, land render tree results for css3/flexbox pixel test that |
| landed earlier this morning. The results were pulled from the bots. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/css3/flexbox/flexbox-baseline-margins-expected.txt: Added. |
| * platform/mac/TestExpectations: |
| * platform/mac/css3/flexbox/flexbox-baseline-margins-expected.txt: Added. |
| * platform/qt/TestExpectations: |
| * platform/qt/css3/flexbox/flexbox-baseline-margins-expected.txt: Added. |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline another test after r131941 and r131991. |
| |
| * platform/efl/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line-expected.png: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Add some missing SVG expectations. |
| |
| * platform/efl/svg/transforms/svg-css-transforms-clip-path-expected.txt: Added. |
| * platform/efl/svg/transforms/svg-css-transforms-expected.txt: Added. |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 11. |
| |
| Finally finish rebaselining the SVG tests! |
| |
| * platform/efl/svg/filters/animate-fill-expected.png: |
| * platform/efl/svg/filters/feImage-animated-transform-on-target-rect-expected.png: |
| * platform/efl/svg/filters/feImage-change-target-id-expected.png: |
| * platform/efl/svg/filters/feImage-multiple-targets-id-change-expected.png: |
| * platform/efl/svg/filters/feImage-reference-invalidation-expected.png: |
| * platform/efl/svg/filters/feImage-remove-target-expected.png: |
| * platform/efl/svg/filters/feImage-target-add-to-document-expected.png: |
| * platform/efl/svg/filters/feImage-target-attribute-change-expected.png: |
| * platform/efl/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.png: |
| * platform/efl/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.png: |
| * platform/efl/svg/filters/feImage-target-changes-id-expected.png: |
| * platform/efl/svg/filters/feImage-target-id-change-expected.png: |
| * platform/efl/svg/filters/feImage-target-inline-style-change-expected.png: |
| * platform/efl/svg/filters/feImage-target-property-change-expected.png: |
| * platform/efl/svg/filters/feImage-target-reappend-to-document-expected.png: |
| * platform/efl/svg/filters/feImage-target-remove-from-document-expected.png: |
| * platform/efl/svg/filters/feImage-target-style-change-expected.png: |
| * platform/efl/svg/filters/filter-refresh-expected.png: |
| * platform/efl/svg/filters/filter-width-update-expected.png: Added. |
| * platform/efl/svg/filters/invalidate-on-child-layout-expected.png: |
| * platform/efl/svg/hixie/perf/001-expected.png: |
| * platform/efl/svg/hixie/perf/002-expected.png: |
| * platform/efl/svg/hixie/perf/003-expected.png: |
| * platform/efl/svg/hixie/perf/004-expected.png: |
| * platform/efl/svg/hixie/perf/005-expected.png: |
| * platform/efl/svg/hixie/perf/006-expected.png: |
| * platform/efl/svg/hixie/perf/007-expected.png: |
| * platform/efl/svg/repaint/filter-child-repaint-expected.png: |
| * platform/efl/svg/repaint/image-href-change-expected.png: |
| * platform/efl/svg/repaint/image-with-clip-path-expected.png: |
| * platform/efl/svg/repaint/inner-svg-change-viewBox-contract-expected.png: |
| * platform/efl/svg/repaint/inner-svg-change-viewBox-expected.png: |
| * platform/efl/svg/repaint/inner-svg-change-viewPort-relative-expected.png: |
| * platform/efl/svg/repaint/mask-clip-target-transform-expected.png: |
| * platform/efl/svg/repaint/repainting-after-animation-element-removal-expected.png: |
| * platform/efl/svg/repaint/text-mask-update-expected.png: |
| * platform/efl/svg/text/append-text-node-to-tspan-expected.png: |
| * platform/efl/svg/text/ems-display-none-expected.png: |
| * platform/efl/svg/text/exs-display-none-expected.png: |
| * platform/efl/svg/text/modify-text-node-in-tspan-expected.png: |
| * platform/efl/svg/text/remove-text-node-from-tspan-expected.png: |
| * platform/efl/svg/text/remove-tspan-from-text-expected.png: |
| * platform/efl/svg/text/text-rescale-expected.png: |
| * platform/efl/svg/text/text-text-05-t-expected.png: |
| * platform/efl/svg/text/text-viewbox-rescale-expected.png: |
| * platform/efl/svg/text/tspan-dynamic-positioning-expected.png: |
| * platform/efl/svg/transforms/animated-path-inside-transformed-html-expected.png: |
| * platform/efl/svg/transforms/text-with-pattern-with-svg-transform-expected.png: |
| * platform/efl/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.png: |
| * platform/efl/svg/zoom/page/relative-sized-document-scrollbars-expected.png: |
| * platform/efl/svg/zoom/page/zoom-mask-with-percentages-expected.png: |
| * platform/efl/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.png: |
| * platform/efl/svg/zoom/text/absolute-sized-document-scrollbars-expected.png: |
| * platform/efl/svg/zoom/text/relative-sized-document-scrollbars-expected.png: |
| * platform/efl/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png: |
| * platform/efl/svg/zoom/text/zoom-foreignObject-expected.png: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 10. |
| |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-lengthAdjust-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-textLength-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-lengthAdjust-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-textLength-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGUseElement-dom-href1-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGUseElement-dom-href2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGUseElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGUseElement-svgdom-href1-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGUseElement-svgdom-href2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: |
| |
| 2012-10-22 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| RenderTableCol::computePreferredLogicalWidths and RenderTableCol::layout should never be called |
| https://bugs.webkit.org/show_bug.cgi?id=99861 |
| |
| Reviewed by Ojan Vafai. |
| |
| Added this test as the code in RenderTableCol::updateFromElement wasn't properly covered. |
| |
| * fast/table/col-span-change-relayout-expected.txt: Added. |
| * fast/table/col-span-change-relayout.html: Added. |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 9. |
| |
| * platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 8. |
| |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-baseFrequency-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png: |
| |
| 2012-10-22 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, update more Chromium ML expectations. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-22 Mark Lam <mark.lam@apple.com> |
| |
| Change stack recursion checks to be based on stack availability. |
| https://bugs.webkit.org/show_bug.cgi?id=99872. |
| |
| Reviewed by Filip Pizlo and Geoffrey Garen. |
| |
| Updated test baseline. |
| |
| * fast/js/global-recursion-on-full-stack-expected.txt: |
| * fast/xmlhttprequest/xmlhttprequest-recursive-sync-event-expected.txt: |
| |
| 2012-10-22 Andreas Kling <kling@webkit.org> |
| |
| REGRESSION(r131104): Heap-use-after-free in WebCore::Element::attributeChanged |
| <http://webkit.org/b/99937> |
| |
| Reviewed by Anders Carlsson. |
| |
| * fast/html/input-type-change-crash-expected.txt: Added. |
| * fast/html/input-type-change-crash.html: Added. |
| |
| 2012-10-22 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Bounds check for IDBCursor.advance() incorrect |
| https://bugs.webkit.org/show_bug.cgi?id=100014 |
| |
| Reviewed by Tony Chang. |
| |
| Assert that advance(2^32) throws and advance(2^32-1) does not, per WebIDL. |
| |
| * storage/indexeddb/cursor-advance-expected.txt: |
| * storage/indexeddb/resources/cursor-advance.js: |
| (testBadAdvance.advanceBadly): |
| (testBadAdvance): |
| (testEdges.request.onsuccess): |
| (testEdges): |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 7. |
| |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-baseFrequency-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png: |
| |
| 2012-10-22 Tony Chang <tony@chromium.org> |
| |
| WebKit does not support 'flex-wrap: nowrap' |
| https://bugs.webkit.org/show_bug.cgi?id=99924 |
| |
| Reviewed by Ojan Vafai. |
| |
| Update expectations (find and replace none with nowrap). |
| |
| * css3/flexbox/css-properties-expected.txt: |
| * css3/flexbox/css-properties.html: |
| * fast/css/getComputedStyle/computed-style-expected.txt: |
| * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: |
| * svg/css/getComputedStyle-basic-expected.txt: |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium windows gardening. |
| |
| * platform/chromium-linux/compositing/shadows/shadow-drawing-expected.txt: Removed. |
| * platform/chromium-linux/css1/text_properties/vertical_align-expected.txt: Removed. |
| * platform/chromium-linux/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Removed. |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.txt: Removed. |
| * platform/chromium-linux/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: Removed. |
| * platform/chromium-linux/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.txt: Removed. |
| * platform/chromium-linux/fast/css/acid2-expected.txt: Removed. |
| * platform/chromium-linux/fast/css/acid2-pixel-expected.txt: Removed. |
| * platform/chromium-linux/fast/forms/007-expected.txt: Removed. |
| * platform/chromium-linux/fast/forms/placeholder-position-expected.txt: Removed. |
| * platform/chromium-linux/fast/forms/search-vertical-alignment-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-child-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-child-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-details-child-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-details-child-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-10-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-3-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-4-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-5-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-6-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-7-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-8-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-9-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-child-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-add-summary-child-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-marker-style-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-nested-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-nested-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-no-summary1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-no-summary2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-no-summary3-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-no-summary4-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-open-javascript-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-open1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-open2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-open3-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-open4-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-open5-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-open6-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-position-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-child-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-child-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-3-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-4-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-5-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-6-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-child-1-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-remove-summary-child-2-expected.txt: Removed. |
| * platform/chromium-linux/fast/html/details-writing-mode-expected.txt: Removed. |
| * platform/chromium-linux/fast/images/imagemap-focus-ring-zoom-expected.txt: Removed. |
| * platform/chromium-linux/fast/inline/002-expected.txt: Removed. |
| * platform/chromium-linux/fast/multicol/table-vertical-align-expected.txt: Removed. |
| * platform/chromium-linux/fast/writing-mode/fieldsets-expected.txt: Removed. |
| * platform/chromium-linux/http/tests/misc/acid2-expected.txt: Removed. |
| * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.txt: Removed. |
| * platform/chromium-linux/platform/chromium/virtual/softwarecompositing/shadows: Removed. |
| * platform/chromium-linux/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.txt: Removed. |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-2-expected.txt: Removed. |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-expected.txt: Removed. |
| * platform/chromium-linux/svg/transforms/svg-css-transforms-clip-path-expected.txt: Removed. |
| * platform/chromium-linux/svg/transforms/svg-css-transforms-expected.txt: Removed. |
| * platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Removed. |
| * platform/chromium-linux/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: Removed. |
| * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Removed. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: Removed. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: Removed. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: Removed. |
| * platform/chromium-linux/tables/mozilla/bugs/bug30692-expected.txt: Removed. |
| * platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.txt: Removed. |
| * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.txt: Removed. |
| * platform/chromium-linux/tables/mozilla/bugs/bug6404-expected.txt: Removed. |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: Removed. |
| * platform/chromium-linux/transforms/svg-vs-css-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/css/acid2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/css/acid2-pixel-expected.png: Added. |
| * platform/chromium-mac-lion/fast/inline/002-expected.png: Added. |
| * platform/chromium-mac-lion/fast/multicol: Added. |
| * platform/chromium-mac-lion/fast/multicol/table-vertical-align-expected.png: Added. |
| * platform/chromium-mac-lion/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Added. |
| * platform/chromium-mac-lion/fast/repaint/repaint-across-writing-mode-boundary-expected.txt: Added. |
| * platform/chromium-mac-lion/http/tests/misc: Added. |
| * platform/chromium-mac-lion/http/tests/misc/acid2-expected.png: Added. |
| * platform/chromium-mac-lion/http/tests/misc/acid2-pixel-expected.png: Added. |
| * platform/chromium-mac-lion/svg/transforms/svg-css-transforms-clip-path-expected.png: Added. |
| * platform/chromium-mac-lion/svg/transforms/svg-css-transforms-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug14323-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug43854-2-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug4427-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug6404-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug1647-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Added. |
| * platform/chromium-mac-lion/transforms: Added. |
| * platform/chromium-mac-lion/transforms/svg-vs-css-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/css/acid2-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/css/acid2-pixel-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/http/tests/misc/acid2-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/http/tests/misc/acid2-pixel-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/svg/transforms/svg-css-transforms-clip-path-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/svg/transforms/svg-css-transforms-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/transforms/svg-vs-css-expected.png: Removed. |
| * platform/chromium-win-xp/fast/inline: Added. |
| * platform/chromium-win-xp/fast/inline-block/contenteditable-baseline-expected.txt: |
| * platform/chromium-win-xp/fast/inline/vertical-align-text-bottom-expected.txt: Added. |
| * platform/chromium-win-xp/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-win-xp/http/tests/misc/acid2-pixel-expected.txt: Added. |
| * platform/chromium-win-xp/svg/transforms: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Removed. |
| * platform/chromium-win-xp/tables/mozilla/bugs/bug14323-expected.txt: Added. |
| * platform/chromium-win-xp/tables/mozilla_expected_failures/bugs: Added. |
| * platform/chromium-win-xp/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Added. |
| * platform/chromium-win-xp/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: Added. |
| * platform/chromium-win/compositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-win/css1/text_properties/vertical_align-expected.png: |
| * platform/chromium-win/css1/text_properties/vertical_align-expected.txt: |
| * platform/chromium-win/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: |
| * platform/chromium-win/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.txt: |
| * platform/chromium-win/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: |
| * platform/chromium-win/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.txt: Removed. |
| * platform/chromium-win/fast/css/acid2-expected.txt: |
| * platform/chromium-win/fast/css/acid2-pixel-expected.txt: |
| * platform/chromium-win/fast/dom/HTMLProgressElement/progress-element-expected.png: |
| * platform/chromium-win/fast/forms/007-expected.png: |
| * platform/chromium-win/fast/forms/007-expected.txt: |
| * platform/chromium-win/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-win/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-win/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-win/fast/forms/placeholder-position-expected.txt: |
| * platform/chromium-win/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-win/fast/forms/search-vertical-alignment-expected.txt: |
| * platform/chromium-win/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-win/fast/forms/searchfield-heights-expected.txt: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-details-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-details-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-10-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-3-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-4-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-5-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-6-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-7-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-8-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-9-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-marker-style-expected.png: |
| * platform/chromium-win/fast/html/details-marker-style-expected.txt: |
| * platform/chromium-win/fast/html/details-nested-1-expected.png: |
| * platform/chromium-win/fast/html/details-nested-1-expected.txt: |
| * platform/chromium-win/fast/html/details-nested-2-expected.png: |
| * platform/chromium-win/fast/html/details-nested-2-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary1-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary2-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary3-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary4-expected.txt: |
| * platform/chromium-win/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-win/fast/html/details-open-javascript-expected.txt: |
| * platform/chromium-win/fast/html/details-open1-expected.png: |
| * platform/chromium-win/fast/html/details-open1-expected.txt: |
| * platform/chromium-win/fast/html/details-open2-expected.png: |
| * platform/chromium-win/fast/html/details-open2-expected.txt: |
| * platform/chromium-win/fast/html/details-open3-expected.png: |
| * platform/chromium-win/fast/html/details-open3-expected.txt: |
| * platform/chromium-win/fast/html/details-open4-expected.png: |
| * platform/chromium-win/fast/html/details-open4-expected.txt: |
| * platform/chromium-win/fast/html/details-open5-expected.png: |
| * platform/chromium-win/fast/html/details-open5-expected.txt: |
| * platform/chromium-win/fast/html/details-open6-expected.png: |
| * platform/chromium-win/fast/html/details-open6-expected.txt: |
| * platform/chromium-win/fast/html/details-position-expected.png: |
| * platform/chromium-win/fast/html/details-position-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-2-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-3-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-4-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-5-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-6-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-win/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-win/fast/html/details-replace-text-expected.png: |
| * platform/chromium-win/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-win/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-win/fast/html/details-writing-mode-expected.txt: |
| * platform/chromium-win/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-win/fast/images/imagemap-focus-ring-zoom-expected.txt: |
| * platform/chromium-win/fast/inline-block/contenteditable-baseline-expected.txt: |
| * platform/chromium-win/fast/inline/002-expected.txt: |
| * platform/chromium-win/fast/inline/vertical-align-text-bottom-expected.png: |
| * platform/chromium-win/fast/inline/vertical-align-text-bottom-expected.txt: |
| * platform/chromium-win/fast/multicol/table-vertical-align-expected.txt: |
| * platform/chromium-win/fast/repaint/4774354-expected.png: |
| * platform/chromium-win/fast/repaint/4776765-expected.png: |
| * platform/chromium-win/fast/repaint/caret-outside-block-expected.png: |
| * platform/chromium-win/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-win/fast/repaint/selection-rl-expected.png: |
| * platform/chromium-win/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-win/fast/writing-mode/fieldsets-expected.txt: |
| * platform/chromium-win/http/tests/misc/acid2-expected.txt: |
| * platform/chromium-win/http/tests/misc/acid2-pixel-expected.txt: |
| * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.png: Added. |
| * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.txt: Added. |
| * platform/chromium-win/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-2-expected.txt: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-expected.txt: |
| * platform/chromium-win/svg/transforms/svg-css-transforms-clip-path-expected.txt: |
| * platform/chromium-win/svg/transforms/svg-css-transforms-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug14323-expected.png: |
| * platform/chromium-win/tables/mozilla/bugs/bug14323-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug30692-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.png: |
| * platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug4427-expected.png: |
| * platform/chromium-win/tables/mozilla/bugs/bug4427-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug6404-expected.png: |
| * platform/chromium-win/tables/mozilla/bugs/bug6404-expected.txt: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1647-expected.png: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug56024-expected.png: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: |
| * platform/chromium-win/transforms/svg-vs-css-expected.txt: |
| |
| 2012-10-22 Tony Chang <tony@chromium.org> |
| |
| [chromium] Unreviewed, Win and Mac baselines for css3/flexbox/flexbox-baseline-margins.html. |
| |
| * platform/chromium-mac-lion/css3/flexbox/flexbox-baseline-margins-expected.png: Added. |
| * platform/chromium-mac-snowleopard/css3/flexbox/flexbox-baseline-margins-expected.png: Added. |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-margins-expected.png: Added. |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-margins-expected.txt: Added. |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-margins-expected.png: Added. |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-margins-expected.txt: Renamed from LayoutTests/platform/chromium-linux/css3/flexbox/flexbox-baseline-margins-expected.txt. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 6. |
| |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 5. |
| |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEBlendElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEBlendElement-dom-in2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEBlendElement-dom-mode-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEBlendElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEBlendElement-svgdom-in2-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEBlendElement-svgdom-mode-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-type-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png: |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium test expectations update. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-22 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r132119. |
| http://trac.webkit.org/changeset/132119 |
| https://bugs.webkit.org/show_bug.cgi?id=100019 |
| |
| Fails its own test on Mac platforms. (Requested by leviw on |
| #webkit). |
| |
| * fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html: Removed. |
| * platform/chromium/fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position-expected.txt: Removed. |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-mac-lion/editing/selection/3690703-2-expected.txt: Removed. |
| * platform/chromium-mac-lion/editing/selection/3690703-expected.txt: Removed. |
| * platform/chromium-mac-lion/editing/selection/3690719-expected.txt: Removed. |
| * platform/chromium-mac-lion/editing/selection/4397952-expected.txt: Removed. |
| * platform/chromium-mac-lion/editing/selection/5240265-expected.txt: Removed. |
| * platform/chromium-mac-lion/editing/selection/selection-button-text-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/block/float/032-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/block/float/float-avoidance-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/css/continuationCrash-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/css/margin-top-bottom-dynamic-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/css/rtl-ordering-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/001-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/blankbuttons-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/box-shadow-override-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/button-sizes-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/button-style-color-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/button-text-transform-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/control-restrict-line-height-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-direction-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-disabled-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/file/input-file-re-render-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/form-element-geometry-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/formmove3-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/input-appearance-height-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/input-button-sizes-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/input-value-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/menulist-clip-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/targeted-frame-submission-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/forms/validation-message-appearance-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/overflow/scrollRevealButton-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/replaced/replaced-breaking-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/replaced/width100percent-button-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/text/textIteratorNilRenderer-expected.txt: Removed. |
| * platform/chromium-mac-lion/http/tests/navigation/javascriptlink-frames-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1188-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1318-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug138725-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug18359-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-2-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-3-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-4-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug26178-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug28928-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug33855-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug39209-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug4429-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-1-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-2-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51037-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51727-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug60749-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug7342-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/dom/tableDom-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla/other/move_row-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: Removed. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/fast/css/acid2-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/css/acid2-pixel-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/input-appearance-height-expected.png: |
| * platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Added. |
| * platform/chromium-mac-snowleopard/http/tests/misc/acid2-expected.png: Added. |
| * platform/chromium-mac-snowleopard/http/tests/misc/acid2-pixel-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/transforms/svg-css-transforms-clip-path-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/transforms/svg-css-transforms-expected.png: Added. |
| * platform/chromium-mac-snowleopard/transforms/svg-vs-css-expected.png: Added. |
| * platform/chromium-mac/editing/selection/3690703-2-expected.png: |
| * platform/chromium-mac/editing/selection/3690703-2-expected.txt: |
| * platform/chromium-mac/editing/selection/3690703-expected.png: |
| * platform/chromium-mac/editing/selection/3690703-expected.txt: |
| * platform/chromium-mac/editing/selection/3690719-expected.png: |
| * platform/chromium-mac/editing/selection/3690719-expected.txt: |
| * platform/chromium-mac/editing/selection/4397952-expected.png: |
| * platform/chromium-mac/editing/selection/4397952-expected.txt: |
| * platform/chromium-mac/editing/selection/5240265-expected.png: |
| * platform/chromium-mac/editing/selection/5240265-expected.txt: |
| * platform/chromium-mac/editing/selection/selection-button-text-expected.png: |
| * platform/chromium-mac/editing/selection/selection-button-text-expected.txt: |
| * platform/chromium-mac/fast/block/float/032-expected.txt: |
| * platform/chromium-mac/fast/block/float/float-avoidance-expected.png: |
| * platform/chromium-mac/fast/block/float/float-avoidance-expected.txt: |
| * platform/chromium-mac/fast/css/continuationCrash-expected.png: |
| * platform/chromium-mac/fast/css/continuationCrash-expected.txt: |
| * platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.txt: |
| * platform/chromium-mac/fast/css/rtl-ordering-expected.png: |
| * platform/chromium-mac/fast/css/rtl-ordering-expected.txt: |
| * platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: |
| * platform/chromium-mac/fast/forms/001-expected.png: |
| * platform/chromium-mac/fast/forms/001-expected.txt: |
| * platform/chromium-mac/fast/forms/blankbuttons-expected.png: |
| * platform/chromium-mac/fast/forms/blankbuttons-expected.txt: |
| * platform/chromium-mac/fast/forms/box-shadow-override-expected.png: |
| * platform/chromium-mac/fast/forms/box-shadow-override-expected.txt: |
| * platform/chromium-mac/fast/forms/button-sizes-expected.png: |
| * platform/chromium-mac/fast/forms/button-sizes-expected.txt: |
| * platform/chromium-mac/fast/forms/button-style-color-expected.png: |
| * platform/chromium-mac/fast/forms/button-style-color-expected.txt: |
| * platform/chromium-mac/fast/forms/button-table-styles-expected.png: |
| * platform/chromium-mac/fast/forms/button-table-styles-expected.txt: |
| * platform/chromium-mac/fast/forms/button-text-transform-expected.png: |
| * platform/chromium-mac/fast/forms/button-text-transform-expected.txt: |
| * platform/chromium-mac/fast/forms/control-restrict-line-height-expected.png: |
| * platform/chromium-mac/fast/forms/control-restrict-line-height-expected.txt: |
| * platform/chromium-mac/fast/forms/file/file-input-direction-expected.png: |
| * platform/chromium-mac/fast/forms/file/file-input-direction-expected.txt: |
| * platform/chromium-mac/fast/forms/file/file-input-disabled-expected.png: |
| * platform/chromium-mac/fast/forms/file/file-input-disabled-expected.txt: |
| * platform/chromium-mac/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/chromium-mac/fast/forms/file/input-file-re-render-expected.png: |
| * platform/chromium-mac/fast/forms/file/input-file-re-render-expected.txt: |
| * platform/chromium-mac/fast/forms/form-element-geometry-expected.png: |
| * platform/chromium-mac/fast/forms/form-element-geometry-expected.txt: |
| * platform/chromium-mac/fast/forms/formmove3-expected.png: |
| * platform/chromium-mac/fast/forms/formmove3-expected.txt: |
| * platform/chromium-mac/fast/forms/input-appearance-height-expected.png: |
| * platform/chromium-mac/fast/forms/input-appearance-height-expected.txt: |
| * platform/chromium-mac/fast/forms/input-button-sizes-expected.png: |
| * platform/chromium-mac/fast/forms/input-button-sizes-expected.txt: |
| * platform/chromium-mac/fast/forms/input-value-expected.png: |
| * platform/chromium-mac/fast/forms/input-value-expected.txt: |
| * platform/chromium-mac/fast/forms/menulist-clip-expected.png: |
| * platform/chromium-mac/fast/forms/menulist-clip-expected.txt: |
| * platform/chromium-mac/fast/forms/targeted-frame-submission-expected.png: |
| * platform/chromium-mac/fast/forms/targeted-frame-submission-expected.txt: |
| * platform/chromium-mac/fast/forms/validation-message-appearance-expected.png: |
| * platform/chromium-mac/fast/forms/validation-message-appearance-expected.txt: |
| * platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: |
| * platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt: |
| * platform/chromium-mac/fast/overflow/scrollRevealButton-expected.png: |
| * platform/chromium-mac/fast/overflow/scrollRevealButton-expected.txt: |
| * platform/chromium-mac/fast/replaced/replaced-breaking-expected.png: |
| * platform/chromium-mac/fast/replaced/replaced-breaking-expected.txt: |
| * platform/chromium-mac/fast/replaced/width100percent-button-expected.png: |
| * platform/chromium-mac/fast/replaced/width100percent-button-expected.txt: |
| * platform/chromium-mac/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-mac/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-mac/fast/text/textIteratorNilRenderer-expected.png: |
| * platform/chromium-mac/fast/text/textIteratorNilRenderer-expected.txt: |
| * platform/chromium-mac/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/chromium-mac/http/tests/navigation/javascriptlink-frames-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-4-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.txt: |
| * platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.png: |
| * platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: |
| * platform/chromium-mac/tables/mozilla/dom/tableDom-expected.png: |
| * platform/chromium-mac/tables/mozilla/dom/tableDom-expected.txt: |
| * platform/chromium-mac/tables/mozilla/other/move_row-expected.png: |
| * platform/chromium-mac/tables/mozilla/other/move_row-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: |
| |
| 2012-10-22 Hans Muller <hmuller@adobe.com> |
| |
| [CSS Exclusions] Points on the bottom and right edges of an exclusion shape should be classified as "outside" |
| https://bugs.webkit.org/show_bug.cgi?id=98967 |
| |
| Reviewed by Dirk Schulze. |
| |
| Verify that a exclusion shape-inside overlaps lines whose top is less than the |
| shape bounds' top+height but not equal to the shape bounds' top+height. |
| |
| * fast/exclusions/shape-inside/shape-inside-bottom-edge-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-bottom-edge.html: Added. |
| |
| 2012-10-22 Chris Rogers <crogers@google.com> |
| |
| Update some AudioContext create() method names to latest Web Audio spec |
| https://bugs.webkit.org/show_bug.cgi?id=99888 |
| |
| Reviewed by Adam Barth. |
| |
| * webaudio/delaynode-expected.txt: |
| * webaudio/delaynode.html: |
| * webaudio/gain.html: |
| * webaudio/javascriptaudionode-expected.txt: |
| * webaudio/javascriptaudionode.html: |
| |
| 2012-10-22 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Baselines following r132112. |
| |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 4. |
| |
| * platform/efl/svg/as-background-image/svg-background-partial-redraw-expected.png: |
| * platform/efl/svg/as-image/animated-svg-as-image-expected.png: |
| * platform/efl/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png: |
| * platform/efl/svg/as-image/animated-svg-as-image-same-image-expected.png: |
| * platform/efl/svg/as-image/svg-image-change-content-size-expected.png: |
| * platform/efl/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: |
| * platform/efl/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: |
| * platform/efl/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png: |
| * platform/efl/svg/as-object/embedded-svg-size-changes-expected.png: |
| * platform/efl/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.png: |
| * platform/efl/svg/as-object/nested-embedded-svg-size-changes-expected.png: |
| * platform/efl/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: |
| * platform/efl/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: |
| * platform/efl/svg/carto.net/tabgroup-expected.png: |
| * platform/efl/svg/carto.net/window-expected.png: |
| * platform/efl/svg/css/shadow-changes-expected.png: |
| * platform/efl/svg/dom/SVGPathSegList-segment-modification-expected.png: |
| * platform/efl/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png: |
| * platform/efl/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png: |
| * platform/efl/svg/dom/SVGRectElement/rect-modify-rx-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png: |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening. |
| |
| * css1/text_properties/vertical_align-expected.txt: Added. |
| * fast/multicol/table-vertical-align-expected.png: Added. |
| * fast/multicol/table-vertical-align-expected.txt: Added. |
| * fast/repaint/caret-outside-block-expected.png: Added. |
| * http/tests/misc/acid2-expected.png: Added. |
| * platform/chromium-linux-x86/fast/inline: Added. |
| * platform/chromium-linux-x86/fast/inline-block/contenteditable-baseline-expected.txt: |
| * platform/chromium-linux-x86/fast/inline/vertical-align-text-bottom-expected.txt: Added. |
| * platform/chromium-linux-x86/fast/multicol/table-vertical-align-expected.txt: Removed. |
| * platform/chromium-linux-x86/http/tests/misc/acid2-pixel-expected.txt: Added. |
| * platform/chromium-linux-x86/svg/transforms: Removed. |
| * platform/chromium-linux-x86/tables/mozilla/bugs/bug14323-expected.txt: Added. |
| * platform/chromium-linux-x86/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Added. |
| * platform/chromium-linux-x86/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: Added. |
| * platform/chromium-linux/compositing/shadows/shadow-drawing-expected.txt: Added. |
| * platform/chromium-linux/css1/text_properties/vertical_align-expected.png: |
| * platform/chromium-linux/css1/text_properties/vertical_align-expected.txt: Added. |
| * platform/chromium-linux/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Added. |
| * platform/chromium-linux/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.txt: Added. |
| * platform/chromium-linux/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: Added. |
| * platform/chromium-linux/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.txt: Added. |
| * platform/chromium-linux/fast/css/acid2-expected.txt: Added. |
| * platform/chromium-linux/fast/css/acid2-pixel-expected.txt: Added. |
| * platform/chromium-linux/fast/dom/HTMLProgressElement/progress-element-expected.png: |
| * platform/chromium-linux/fast/forms/007-expected.png: |
| * platform/chromium-linux/fast/forms/007-expected.txt: Added. |
| * platform/chromium-linux/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-linux/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-linux/fast/forms/input-baseline-expected.txt: |
| * platform/chromium-linux/fast/forms/input-placeholder-paint-order-expected.png: |
| * platform/chromium-linux/fast/forms/placeholder-position-expected.txt: Added. |
| * platform/chromium-linux/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-linux/fast/forms/search-vertical-alignment-expected.txt: Added. |
| * platform/chromium-linux/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-linux/fast/forms/searchfield-heights-expected.txt: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-child-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-child-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-details-child-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-details-child-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-10-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-3-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-4-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-5-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-6-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-7-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-8-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-9-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-child-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-child-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-marker-style-expected.png: |
| * platform/chromium-linux/fast/html/details-marker-style-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-nested-1-expected.png: |
| * platform/chromium-linux/fast/html/details-nested-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-nested-2-expected.png: |
| * platform/chromium-linux/fast/html/details-nested-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary3-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary4-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-linux/fast/html/details-open-javascript-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-open1-expected.png: |
| * platform/chromium-linux/fast/html/details-open1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-open2-expected.png: |
| * platform/chromium-linux/fast/html/details-open2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-open3-expected.png: |
| * platform/chromium-linux/fast/html/details-open3-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-open4-expected.png: |
| * platform/chromium-linux/fast/html/details-open4-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-open5-expected.png: |
| * platform/chromium-linux/fast/html/details-open5-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-open6-expected.png: |
| * platform/chromium-linux/fast/html/details-open6-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-position-expected.png: |
| * platform/chromium-linux/fast/html/details-position-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-child-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-child-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-3-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-4-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-5-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-6-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-child-1-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-child-2-expected.txt: Added. |
| * platform/chromium-linux/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-linux/fast/html/details-replace-text-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-linux/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-linux/fast/html/details-writing-mode-expected.txt: Added. |
| * platform/chromium-linux/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-linux/fast/images/imagemap-focus-ring-zoom-expected.txt: Added. |
| * platform/chromium-linux/fast/inline-block/contenteditable-baseline-expected.txt: |
| * platform/chromium-linux/fast/inline/002-expected.txt: Added. |
| * platform/chromium-linux/fast/inline/vertical-align-text-bottom-expected.png: |
| * platform/chromium-linux/fast/inline/vertical-align-text-bottom-expected.txt: Added. |
| * platform/chromium-linux/fast/multicol/table-vertical-align-expected.txt: |
| * platform/chromium-linux/fast/repaint/4774354-expected.png: |
| * platform/chromium-linux/fast/repaint/4776765-expected.png: |
| * platform/chromium-linux/fast/repaint/caret-outside-block-expected.png: |
| * platform/chromium-linux/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-linux/fast/repaint/selection-rl-expected.png: |
| * platform/chromium-linux/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-linux/fast/speech/input-appearance-searchandspeech-expected.txt: |
| * platform/chromium-linux/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-linux/fast/writing-mode/fieldsets-expected.txt: Added. |
| * platform/chromium-linux/http/tests/misc/acid2-expected.txt: Added. |
| * platform/chromium-linux/http/tests/misc/acid2-pixel-expected.txt: Added. |
| * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.png: Added. |
| * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.txt: Added. |
| * platform/chromium-linux/platform/chromium/virtual/softwarecompositing: Added. |
| * platform/chromium-linux/platform/chromium/virtual/softwarecompositing/shadows: Added. |
| * platform/chromium-linux/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.txt: Added. |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-2-expected.txt: Added. |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-expected.txt: Added. |
| * platform/chromium-linux/svg/transforms/svg-css-transforms-clip-path-expected.txt: Added. |
| * platform/chromium-linux/svg/transforms/svg-css-transforms-expected.txt: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.txt: Added. |
| * platform/chromium-linux/tables/mozilla/bugs/bug30692-expected.txt: Added. |
| * platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.txt: Added. |
| * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.txt: Added. |
| * platform/chromium-linux/tables/mozilla/bugs/bug6404-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug6404-expected.txt: Added. |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: Added. |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1647-expected.png: |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Added. |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug56024-expected.png: |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: Added. |
| * platform/chromium-linux/transforms/svg-vs-css-expected.txt: Added. |
| * platform/chromium-mac-lion/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-mac-lion/fast/forms/007-expected.png: |
| * platform/chromium-mac-lion/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-mac-lion/fast/forms/datalist: Added. |
| * platform/chromium-mac-lion/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-mac-lion/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-marker-style-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-nested-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-nested-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-open1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-open2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-open3-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-open4-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-open5-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-open6-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-position-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-replace-text-expected.png: |
| * platform/chromium-mac-lion/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-mac-lion/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-mac-lion/fast/inline: Added. |
| * platform/chromium-mac-lion/fast/inline/vertical-align-text-bottom-expected.png: Added. |
| * platform/chromium-mac-lion/fast/inline/vertical-align-text-bottom-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/repaint: Added. |
| * platform/chromium-mac-lion/fast/repaint/4774354-expected.png: Added. |
| * platform/chromium-mac-lion/fast/repaint/4776765-expected.png: Added. |
| * platform/chromium-mac-lion/fast/repaint/caret-outside-block-expected.png: Added. |
| * platform/chromium-mac-lion/fast/repaint/selection-rl-expected.png: Added. |
| * platform/chromium-mac-lion/fast/speech/input-appearance-searchandspeech-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.png: Added. |
| * platform/chromium-mac-lion/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-mac-lion/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac-snowleopard/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/007-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-nested-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-nested-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-position-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-replace-text-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-mac-snowleopard/fast/inline/vertical-align-text-bottom-expected.png: |
| * platform/chromium-mac-snowleopard/fast/inline/vertical-align-text-bottom-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/fast/multicol/table-vertical-align-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/fast/repaint/4774354-expected.png: |
| * platform/chromium-mac-snowleopard/fast/repaint/4776765-expected.png: |
| * platform/chromium-mac-snowleopard/fast/repaint/caret-outside-block-expected.png: |
| * platform/chromium-mac-snowleopard/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/compositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: |
| * platform/chromium-mac/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.txt: |
| * platform/chromium-mac/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: |
| * platform/chromium-mac/fast/css/acid2-expected.png: Added. |
| * platform/chromium-mac/fast/css/acid2-pixel-expected.png: |
| * platform/chromium-mac/fast/dom/HTMLProgressElement/progress-element-expected.png: Added. |
| * platform/chromium-mac/fast/dom/HTMLProgressElement/progress-element-expected.txt: Added. |
| * platform/chromium-mac/fast/forms/007-expected.png: |
| * platform/chromium-mac/fast/forms/007-expected.txt: |
| * platform/chromium-mac/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-mac/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-mac/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-mac/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-mac/fast/forms/search-vertical-alignment-expected.txt: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-details-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-details-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-10-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-3-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-4-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-5-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-6-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-7-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-8-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-9-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-marker-style-expected.png: |
| * platform/chromium-mac/fast/html/details-marker-style-expected.txt: |
| * platform/chromium-mac/fast/html/details-nested-1-expected.png: |
| * platform/chromium-mac/fast/html/details-nested-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-nested-2-expected.png: |
| * platform/chromium-mac/fast/html/details-nested-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary1-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary2-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary3-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary4-expected.txt: |
| * platform/chromium-mac/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-mac/fast/html/details-open-javascript-expected.txt: |
| * platform/chromium-mac/fast/html/details-open1-expected.png: |
| * platform/chromium-mac/fast/html/details-open1-expected.txt: |
| * platform/chromium-mac/fast/html/details-open2-expected.png: |
| * platform/chromium-mac/fast/html/details-open2-expected.txt: |
| * platform/chromium-mac/fast/html/details-open3-expected.png: |
| * platform/chromium-mac/fast/html/details-open3-expected.txt: |
| * platform/chromium-mac/fast/html/details-open4-expected.png: |
| * platform/chromium-mac/fast/html/details-open4-expected.txt: |
| * platform/chromium-mac/fast/html/details-open5-expected.png: |
| * platform/chromium-mac/fast/html/details-open5-expected.txt: |
| * platform/chromium-mac/fast/html/details-open6-expected.png: |
| * platform/chromium-mac/fast/html/details-open6-expected.txt: |
| * platform/chromium-mac/fast/html/details-position-expected.png: |
| * platform/chromium-mac/fast/html/details-position-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-mac/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-mac/fast/html/details-replace-text-expected.png: |
| * platform/chromium-mac/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-mac/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-mac/fast/html/details-writing-mode-expected.txt: |
| * platform/chromium-mac/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-mac/fast/images/imagemap-focus-ring-zoom-expected.txt: |
| * platform/chromium-mac/fast/inline/002-expected.png: |
| * platform/chromium-mac/fast/inline/vertical-align-text-bottom-expected.png: |
| * platform/chromium-mac/fast/inline/vertical-align-text-bottom-expected.txt: |
| * platform/chromium-mac/fast/multicol/table-vertical-align-expected.png: |
| * platform/chromium-mac/fast/multicol/table-vertical-align-expected.txt: |
| * platform/chromium-mac/fast/repaint/4774354-expected.png: |
| * platform/chromium-mac/fast/repaint/4776765-expected.png: |
| * platform/chromium-mac/fast/repaint/caret-outside-block-expected.png: |
| * platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.txt: |
| * platform/chromium-mac/fast/repaint/selection-rl-expected.png: |
| * platform/chromium-mac/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-mac/fast/speech/input-appearance-searchandspeech-expected.txt: |
| * platform/chromium-mac/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-mac/fast/writing-mode/fieldsets-expected.txt: |
| * platform/chromium-mac/http/tests/misc/acid2-expected.png: Added. |
| * platform/chromium-mac/http/tests/misc/acid2-pixel-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zoom-expected.txt: Added. |
| * platform/chromium-mac/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-2-expected.txt: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-expected.txt: |
| * platform/chromium-mac/svg/transforms/svg-css-transforms-clip-path-expected.png: |
| * platform/chromium-mac/svg/transforms/svg-css-transforms-clip-path-expected.txt: |
| * platform/chromium-mac/svg/transforms/svg-css-transforms-expected.png: |
| * platform/chromium-mac/svg/transforms/svg-css-transforms-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug14323-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug43854-2-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug4427-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug6404-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1647-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug56024-expected.png: |
| * platform/chromium-mac/transforms/svg-vs-css-expected.png: |
| * platform/chromium-mac/transforms/svg-vs-css-expected.txt: |
| * platform/chromium-win-xp/fast/multicol/table-vertical-align-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Added. |
| * platform/chromium-win-xp/tables/mozilla/bugs/bug43854-2-expected.png: Removed. |
| * platform/chromium-win/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.txt: Added. |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.txt: Replaced. |
| * platform/chromium/fast/css/acid2-expected.png: Removed. |
| * platform/chromium/http/tests/misc/acid2-expected.png: Removed. |
| * platform/efl/css1/text_properties/vertical_align-expected.txt: Removed. |
| * platform/efl/fast/multicol/table-vertical-align-expected.png: Removed. |
| * platform/efl/fast/multicol/table-vertical-align-expected.txt: Removed. |
| * platform/efl/fast/repaint/caret-outside-block-expected.png: Removed. |
| * platform/efl/http/tests/misc/acid2-expected.png: Removed. |
| * platform/efl/svg/transforms/svg-css-transforms-clip-path-expected.txt: Removed. |
| * platform/efl/svg/transforms/svg-css-transforms-expected.txt: Removed. |
| * platform/efl/tables/mozilla/bugs/bug43854-2-expected.txt: Removed. |
| * platform/efl/tables/mozilla/bugs/bug4427-expected.txt: Removed. |
| * platform/efl/tables/mozilla/bugs/bug6404-expected.txt: Removed. |
| * platform/gtk/css1/text_properties/vertical_align-expected.txt: Removed. |
| * platform/gtk/fast/multicol/table-vertical-align-expected.png: Removed. |
| * platform/gtk/fast/multicol/table-vertical-align-expected.txt: Removed. |
| * platform/gtk/fast/repaint/caret-outside-block-expected.png: Removed. |
| * platform/gtk/http/tests/misc/acid2-expected.png: Removed. |
| * platform/gtk/svg/transforms/svg-css-transforms-clip-path-expected.txt: Removed. |
| * platform/gtk/svg/transforms/svg-css-transforms-expected.txt: Removed. |
| |
| 2012-10-22 Anders Carlsson <andersca@apple.com> |
| |
| [WK2] Regression(r131990): plugins/npruntime/remove-property.html started failing |
| https://bugs.webkit.org/show_bug.cgi?id=99977 |
| |
| Reviewed by Alexey Proskuryakov. |
| |
| Remove now passing test. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-22 Varun Jain <varunjain@chromium.org> |
| |
| Context menu generated from touch gestures on textareas has |
| context of the cursor position instead of the position where the event occurs. |
| https://bugs.webkit.org/show_bug.cgi?id=99520 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Send a synthetic mouse down event for context menu-summoning-gesture events so that |
| textareas can correctly set cursors before receiving the context menu event. |
| |
| * fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html: Added. |
| * platform/chromium/fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position-expected.txt: Added. |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-mac-lion/editing/selection/3690703-2-expected.png: |
| * platform/chromium-mac-lion/editing/selection/3690703-2-expected.txt: Added. |
| * platform/chromium-mac-lion/editing/selection/3690703-expected.png: |
| * platform/chromium-mac-lion/editing/selection/3690703-expected.txt: Added. |
| * platform/chromium-mac-lion/editing/selection/3690719-expected.png: |
| * platform/chromium-mac-lion/editing/selection/3690719-expected.txt: Added. |
| * platform/chromium-mac-lion/editing/selection/4397952-expected.png: |
| * platform/chromium-mac-lion/editing/selection/4397952-expected.txt: Added. |
| * platform/chromium-mac-lion/editing/selection/5240265-expected.png: |
| * platform/chromium-mac-lion/editing/selection/5240265-expected.txt: Added. |
| * platform/chromium-mac-lion/editing/selection/selection-button-text-expected.png: |
| * platform/chromium-mac-lion/editing/selection/selection-button-text-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/block/float/032-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/block/float/float-avoidance-expected.png: |
| * platform/chromium-mac-lion/fast/block/float/float-avoidance-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/css/continuationCrash-expected.png: |
| * platform/chromium-mac-lion/fast/css/continuationCrash-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/chromium-mac-lion/fast/css/margin-top-bottom-dynamic-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/css/rtl-ordering-expected.png: |
| * platform/chromium-mac-lion/fast/css/rtl-ordering-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/chromium-mac-lion/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/001-expected.png: |
| * platform/chromium-mac-lion/fast/forms/001-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/blankbuttons-expected.png: |
| * platform/chromium-mac-lion/fast/forms/blankbuttons-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/box-shadow-override-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/box-shadow-override-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/button-sizes-expected.png: |
| * platform/chromium-mac-lion/fast/forms/button-sizes-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/button-style-color-expected.png: |
| * platform/chromium-mac-lion/fast/forms/button-style-color-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/button-table-styles-expected.png: |
| * platform/chromium-mac-lion/fast/forms/button-text-transform-expected.png: |
| * platform/chromium-mac-lion/fast/forms/button-text-transform-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/control-restrict-line-height-expected.png: |
| * platform/chromium-mac-lion/fast/forms/control-restrict-line-height-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields: Added. |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-direction-expected.png: |
| * platform/chromium-mac-lion/fast/forms/file/file-input-direction-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-disabled-expected.png: |
| * platform/chromium-mac-lion/fast/forms/file/file-input-disabled-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/chromium-mac-lion/fast/forms/file/input-file-re-render-expected.png: |
| * platform/chromium-mac-lion/fast/forms/file/input-file-re-render-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/form-element-geometry-expected.png: |
| * platform/chromium-mac-lion/fast/forms/form-element-geometry-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/formmove3-expected.png: |
| * platform/chromium-mac-lion/fast/forms/formmove3-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/input-button-sizes-expected.png: |
| * platform/chromium-mac-lion/fast/forms/input-button-sizes-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/input-value-expected.png: |
| * platform/chromium-mac-lion/fast/forms/input-value-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/menulist-clip-expected.png: |
| * platform/chromium-mac-lion/fast/forms/menulist-clip-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/targeted-frame-submission-expected.png: |
| * platform/chromium-mac-lion/fast/forms/targeted-frame-submission-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields: Added. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/validation-message-appearance-expected.png: |
| * platform/chromium-mac-lion/fast/forms/validation-message-appearance-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields: Added. |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium-mac-lion/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: |
| * platform/chromium-mac-lion/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/overflow/scrollRevealButton-expected.png: |
| * platform/chromium-mac-lion/fast/overflow/scrollRevealButton-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/replaced/replaced-breaking-expected.png: |
| * platform/chromium-mac-lion/fast/replaced/replaced-breaking-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/replaced/width100percent-button-expected.png: |
| * platform/chromium-mac-lion/fast/replaced/width100percent-button-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/speech/input-appearance-searchandspeech-expected.png: Added. |
| * platform/chromium-mac-lion/fast/speech/input-appearance-searchandspeech-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/text/international/text-spliced-font-expected.png: Added. |
| * platform/chromium-mac-lion/fast/text/international/text-spliced-font-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-mac-lion/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-mac-lion/fast/text/textIteratorNilRenderer-expected.png: |
| * platform/chromium-mac-lion/fast/text/textIteratorNilRenderer-expected.txt: Added. |
| * platform/chromium-mac-lion/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/chromium-mac-lion/http/tests/navigation/javascriptlink-frames-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1188-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1318-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1318-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug138725-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug138725-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug18359-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-2-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-2-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-3-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-4-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug26178-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug26178-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug28928-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug33855-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug33855-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug39209-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug39209-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug4429-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug4429-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-1-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-1-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-2-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-2-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51037-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51037-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51727-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51727-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug60749-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug60749-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug7342-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug7342-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/collapsing_borders/bug41262-4-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/dom/tableDom-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/dom/tableDom-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla/other/move_row-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla/other/move_row-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug1725-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/3690703-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/3690719-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/selection-button-text-expected.png: |
| * platform/chromium-mac-snowleopard/fast/block/float/float-avoidance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.png: |
| * platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/001-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/box-shadow-override-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-direction-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-disabled-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/input-file-re-render-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/form-element-geometry-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-value-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/menulist-clip-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/validation-message-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: |
| * platform/chromium-mac-snowleopard/fast/overflow/scrollRevealButton-expected.png: |
| * platform/chromium-mac-snowleopard/fast/replaced/replaced-breaking-expected.png: |
| * platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/international/text-spliced-font-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/international/text-spliced-font-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-mac-snowleopard/fast/text/textIteratorNilRenderer-expected.png: |
| * platform/chromium-mac-snowleopard/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: |
| * platform/chromium-win-xp/fast/text/international/text-spliced-font-expected.png: Removed. |
| |
| 2012-10-22 Aaron Colwell <acolwell@chromium.org> |
| |
| webkitsourceopen event doesn't always fire |
| https://bugs.webkit.org/show_bug.cgi?id=99868 |
| |
| Reviewed by Adam Barth. |
| |
| Added a test that verifies the webkitsourceopen event still fires |
| even if the MediaSource variable goes out of scope and garbage |
| collection occurs. |
| |
| * http/tests/media/media-source/video-media-source-garbage-collection-before-sourceopen-expected.txt: Added. |
| * http/tests/media/media-source/video-media-source-garbage-collection-before-sourceopen.html: Added. |
| |
| 2012-10-22 Jer Noble <jer.noble@apple.com> |
| |
| Unreviewed, further Apple Mac baselines for shadow DOM changes to RenderSlider. |
| |
| * platform/mac/fast/forms/input-appearance-height-expected.txt: |
| * platform/mac/media/controls-without-preload-expected.txt: |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Change baselinePosition and maxAscent/maxDescent to int |
| https://bugs.webkit.org/show_bug.cgi?id=99767 |
| |
| Reviewed by Levi Weintraub. |
| |
| Add test for alignment of replaced elements. Update existing |
| tests to account for rounding differences in alignment. |
| |
| * fast/sub-pixel/replaced-element-baseline-expected.txt: Added. |
| * fast/sub-pixel/replaced-element-baseline.html: Added. |
| * platform/chromium-linux/css1/text_properties/vertical_align-expected.png: |
| * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-linux/fast/inline/vertical-align-text-bottom-expected.png: |
| * platform/chromium-linux/fast/multicol/table-vertical-align-expected.txt: |
| * platform/chromium-linux/fast/repaint/4774354-expected.png: |
| * platform/chromium-linux/fast/repaint/4776765-expected.png: |
| * platform/chromium-linux/fast/repaint/caret-outside-block-expected.png: |
| * platform/chromium-linux/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-linux/fast/repaint/selection-rl-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug6404-expected.png: |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1647-expected.png: |
| * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug56024-expected.png: |
| * platform/chromium-win/css1/text_properties/vertical_align-expected.txt: |
| * platform/chromium-win/fast/css/acid2-expected.txt: |
| * platform/chromium-win/fast/css/acid2-pixel-expected.txt: |
| * platform/chromium-win/fast/inline/002-expected.txt: |
| * platform/chromium-win/fast/inline/vertical-align-text-bottom-expected.txt: |
| * platform/chromium-win/http/tests/misc/acid2-expected.txt: |
| * platform/chromium-win/http/tests/misc/acid2-pixel-expected.txt: |
| * platform/chromium-win/svg/transforms/svg-css-transforms-clip-path-expected.txt: |
| * platform/chromium-win/svg/transforms/svg-css-transforms-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug14323-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug4427-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug6404-expected.txt: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: |
| * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: |
| * platform/chromium-win/transforms/svg-vs-css-expected.txt: |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening, marking fast/sub-pixel/file-upload-control-at-fractional-offset.html as failing on LION for now. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-22 Tony Chang <tony@chromium.org> |
| |
| Fix some baseline flexbox alignment |
| https://bugs.webkit.org/show_bug.cgi?id=99879 |
| |
| Reviewed by Ojan Vafai. |
| |
| Additional test cases for baseline aligning flexbox. |
| |
| * css3/flexbox/flexbox-baseline-margins.html: Added. |
| * css3/flexbox/resources/flexbox.css: |
| (.flex-one): New cross browser value. |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-margins-expected.png: Added. |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-margins-expected.txt: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-22 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, updating skipped tests that moved. |
| |
| * platform/win/TestExpectations: |
| |
| 2012-10-22 Mario Sanchez Prada <msanchez@igalia.com> |
| |
| [GTK] Don't use deprecated AccessibilityObject methods after r99502 |
| https://bugs.webkit.org/show_bug.cgi?id=99985 |
| |
| Reviewed by Chris Fleizach. |
| |
| Update test and expectations to reflect the changes in the |
| accessible title (now it's the localized one) being returned. |
| |
| * platform/gtk/accessibility/media-controls-panel-title-expected.txt: Updated. |
| * platform/gtk/accessibility/media-controls-panel-title.html: Updated. |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Convert fast/sub-pixel/file-upload-control-at-fractional-offset-expected.html to ref test |
| https://bugs.webkit.org/show_bug.cgi?id=99869 |
| |
| Reviewed by Eric Seidel. |
| |
| fast/sub-pixel/file-upload-control-at-fractional-offset-expected.html is currently a pixel test, convert it to a ref test instead. |
| |
| * fast/sub-pixel/file-upload-control-at-fractional-offset-expected.html: Added. |
| * platform/chromium-linux/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: Removed. |
| * platform/chromium-linux/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.txt: Removed. |
| * platform/chromium-mac-lion/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: Removed. |
| * platform/chromium-mac/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: Removed. |
| * platform/chromium-mac/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.txt: Removed. |
| * platform/chromium-win/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: Removed. |
| * platform/chromium-win/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.txt: Removed. |
| * platform/gtk/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: Removed. |
| * platform/gtk/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.txt: Removed. |
| |
| 2012-10-16 Andrey Kosyakov <caseq@chromium.org> |
| |
| Web Inspector: add timeline instrumentation for scrolling of a layer |
| https://bugs.webkit.org/show_bug.cgi?id=99461 |
| |
| Reviewed by Pavel Feldman. |
| |
| - added Scroll record type; |
| |
| * inspector/timeline/timeline-enum-stability-expected.txt: |
| |
| 2012-10-22 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Prepare mappings to moving uiSourceCodes creation out of them to workspace. |
| https://bugs.webkit.org/show_bug.cgi?id=99997 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/compiler-script-mapping.html: |
| |
| 2012-10-22 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Fixing expectations for fast/dom/gc-acid3.html to pass the linting. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-22 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Treat dynamic anonymous scripts as other anonymous and fix anonymous script editing and breakpoints. |
| https://bugs.webkit.org/show_bug.cgi?id=99989 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector-enabled/dynamic-scripts-expected.txt: |
| * http/tests/inspector/debugger-test.js: |
| (initialize_DebuggerTest): |
| * inspector/debugger/dynamic-script-tag-expected.txt: |
| * inspector/debugger/dynamic-scripts-expected.txt: |
| * inspector/debugger/live-edit-breakpoints-expected.txt: |
| * inspector/debugger/live-edit-breakpoints.html: |
| * inspector/debugger/resource-script-mapping-expected.txt: |
| * inspector/debugger/resource-script-mapping.html: |
| |
| 2012-10-22 Emil A Eklund <eae@chromium.org> |
| |
| Convert fast/sub-pixel/float-containing-block-with-margin.html to text test |
| https://bugs.webkit.org/show_bug.cgi?id=99866 |
| |
| Reviewed by Eric Seidel. |
| |
| fast/sub-pixel/float-containing-block-with-margin.html doesn't |
| need to be a pixel test, convert it to a text one. |
| |
| * fast/sub-pixel/float-containing-block-with-margin-expected.txt: |
| * fast/sub-pixel/float-containing-block-with-margin.html: |
| * platform/chromium-linux/fast/sub-pixel/float-containing-block-with-margin-expected.png: Removed. |
| * platform/chromium-mac-lion/fast/sub-pixel: Removed. |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/float-containing-block-with-margin-expected.png: Removed. |
| * platform/chromium-mac/fast/sub-pixel/float-containing-block-with-margin-expected.png: Removed. |
| * platform/chromium-win/fast/sub-pixel/float-containing-block-with-margin-expected.png: Removed. |
| |
| 2012-10-22 Bruno de Oliveira Abinader <bruno.abinader@basyskom.com> |
| |
| [css3-text] Add rendering support for -webkit-text-decoration-style |
| https://bugs.webkit.org/show_bug.cgi?id=94094 |
| |
| Reviewed by Julien Chaffraix. |
| |
| Added paint and repaint layout tests for CSS3 text-decoration-style |
| property. Pixel results are not included due to missing platform support |
| for some decoration styles (handled on bug 93507). These are going |
| to be added when platform support is complete. |
| |
| * fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style-expected.txt: Added. |
| * fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style.html: Added. |
| * fast/css3-text/css3-text-decoration/text-decoration-style-expected.txt: Added. |
| * fast/css3-text/css3-text-decoration/text-decoration-style.html: Added. |
| |
| 2012-10-22 Erik Arvidsson <arv@chromium.org> |
| |
| HTMLBaseElement href attribute binding returns wrong URL |
| https://bugs.webkit.org/show_bug.cgi?id=98184 |
| |
| Reviewed by Ojan Vafai. |
| |
| Resolve the href attribute binding relative to the document URL instead of resolving it to the |
| base element itself. If there is no href attribute this should return the fallback base URL. |
| |
| http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-base-element |
| |
| * fast/dom/HTMLAnchorElement/set-href-attribute-rebase-expected.txt: Added. |
| * fast/dom/HTMLAnchorElement/set-href-attribute-rebase.html: Added. |
| * fast/dom/HTMLBaseElement/href-attribute-resolves-with-respect-to-document-expected.txt: Added. |
| * fast/dom/HTMLBaseElement/href-attribute-resolves-with-respect-to-document.html: Added. |
| * fast/dom/element-attribute-js-null-expected.txt: |
| * fast/dom/element-attribute-js-null.html: |
| |
| 2012-10-22 Florin Malita <fmalita@chromium.org> |
| |
| Incorrect embedded SVG image sizing on first load |
| https://bugs.webkit.org/show_bug.cgi?id=99489 |
| |
| Reviewed by Nikolas Zimmermann. |
| |
| * svg/custom/svg-image-initial-size-expected.html: Added. |
| * svg/custom/svg-image-initial-size.html: Added. |
| |
| 2012-10-22 Christophe Dumez <christophe.dumez@intel.com> |
| |
| [EFL][WK2] Skip plugins/npruntime/remove-property.html |
| https://bugs.webkit.org/show_bug.cgi?id=99978 |
| |
| Unreviewed EFL gardening. |
| |
| Skip plugins/npruntime/remove-property.html which started |
| failing after r131990. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-22 Dongwoo Joshua Im <dw.im@samsung.com> |
| |
| Change the path of the include files in the text decoration test cases. |
| https://bugs.webkit.org/show_bug.cgi?id=99974 |
| |
| Reviewed by Gyuyoung Kim. |
| |
| The include path is differentiated by http://trac.webkit.org/changeset/132043 |
| |
| * fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line.html: |
| * fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style.html: |
| * fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line.html: |
| |
| 2012-10-22 Zan Dobersek <zandobersek@gmail.com> |
| |
| [GTK] Enable Microdata DOM API |
| https://bugs.webkit.org/show_bug.cgi?id=99033 |
| |
| Reviewed by Martin Robinson. |
| |
| Unskip the Microdata tests, they all pass now that the feature has been enabled. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-22 Zan Dobersek <zandobersek@gmail.com> |
| |
| [GTK] Enable CSP 1.1 |
| https://bugs.webkit.org/show_bug.cgi?id=99064 |
| |
| Reviewed by Martin Robinson. |
| |
| Unskip the CSP 1.1 layout tests as they all pass with the feature enabled. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-22 Keishi Hattori <keishi@webkit.org> |
| |
| Test date-suggestion-picker-reset-value-after-reload.html will timeout when running with other tests |
| https://bugs.webkit.org/show_bug.cgi?id=99969 |
| |
| Reviewed by Kent Tamura. |
| |
| When running with other tests the iframe onload event seems to fire before the script tag is parsed. |
| |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-reset-value-after-reload.html: |
| |
| 2012-10-22 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] Handle GET of blob URLs. |
| https://bugs.webkit.org/show_bug.cgi?id=99053 |
| |
| Reviewed by Simon Hausmann. |
| |
| Unskip tests working after we handle GET of Blob URLs. Unfortunately they require beginDragWithFiles, |
| and thus only work in DRT. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/files/workers/worker-read-blob-async-actual.txt: Added. |
| |
| 2012-10-22 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] Basic gesture event handling |
| https://bugs.webkit.org/show_bug.cgi?id=66173 |
| |
| Reviewed by Simon Hausmann. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/events/touch/gesture/gesture-click-expected.txt: Added. |
| |
| 2012-10-22 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Shadow] ASSERT triggered when we try reprojecting fallback elements. |
| https://bugs.webkit.org/show_bug.cgi?id=99815 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/dom/shadow/content-reprojection-fallback-crash-expected.txt: Added. |
| * fast/dom/shadow/content-reprojection-fallback-crash.html: Added. |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 3. |
| |
| * platform/efl/fast/repaint/scroll-fixed-layer-with-reflection-expected.png: |
| * platform/efl/fast/repaint/scroll-fixed-layer-with-transformed-parent-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-fixed-reflected-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-in-clipped-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-in-fixed-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-in-transformed-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-inside-table-cell-expected.png: |
| * platform/efl/fast/repaint/scroll-relative-table-inside-table-cell-expected.png: |
| * platform/efl/fast/repaint/scroll-with-transformed-parent-layer-expected.png: |
| * platform/efl/fast/repaint/search-field-cancel-expected.png: |
| * platform/efl/fast/repaint/select-option-background-color-expected.png: |
| * platform/efl/fast/repaint/selected-replaced-expected.png: |
| * platform/efl/fast/repaint/selection-after-delete-expected.png: |
| * platform/efl/fast/repaint/selection-after-remove-expected.png: |
| * platform/efl/fast/repaint/selection-gap-overflow-scroll-2-expected.png: |
| * platform/efl/fast/repaint/selection-gap-overflow-scroll-expected.png: |
| * platform/efl/fast/repaint/selection-rl-expected.png: |
| * platform/efl/fast/repaint/stacked-diacritics-expected.png: |
| * platform/efl/fast/repaint/static-to-positioned-expected.png: |
| * platform/efl/fast/repaint/subtree-layoutstate-transform-expected.png: |
| * platform/efl/fast/repaint/subtree-root-clip-2-expected.png: Added. |
| * platform/efl/fast/repaint/subtree-root-clip-3-expected.png: Added. |
| * platform/efl/fast/repaint/subtree-root-clip-expected.png: Added. |
| * platform/efl/fast/repaint/subtree-root-skipped-expected.png: |
| * platform/efl/fast/repaint/table-cell-collapsed-border-expected.png: |
| * platform/efl/fast/repaint/table-cell-move-expected.png: |
| * platform/efl/fast/repaint/table-col-background-expected.png: |
| * platform/efl/fast/repaint/table-collapsed-border-expected.png: |
| * platform/efl/fast/repaint/table-extra-bottom-grow-expected.png: |
| * platform/efl/fast/repaint/table-outer-border-expected.png: |
| * platform/efl/fast/repaint/table-overflow-auto-in-overflow-auto-scrolled-expected.png: |
| * platform/efl/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled-expected.png: |
| * platform/efl/fast/repaint/table-overflow-scroll-in-overflow-scroll-scrolled-expected.png: |
| * platform/efl/fast/repaint/table-row-expected.png: |
| * platform/efl/fast/repaint/table-section-overflow-expected.png: |
| * platform/efl/fast/repaint/table-section-repaint-expected.png: |
| * platform/efl/fast/repaint/table-two-pass-layout-overpaint-expected.png: |
| * platform/efl/fast/repaint/text-append-dirty-lines-expected.png: |
| * platform/efl/fast/repaint/text-selection-rect-in-overflow-2-expected.png: |
| * platform/efl/fast/repaint/text-selection-rect-in-overflow-expected.png: |
| * platform/efl/fast/repaint/textarea-set-disabled-expected.png: |
| * platform/efl/fast/repaint/transform-absolute-child-expected.png: |
| * platform/efl/fast/repaint/transform-absolute-in-positioned-container-expected.png: |
| * platform/efl/fast/repaint/transform-disable-layoutstate-expected.png: |
| * platform/efl/fast/repaint/transform-layout-repaint-expected.png: |
| * platform/efl/fast/repaint/transform-relative-position-expected.png: |
| * platform/efl/fast/repaint/transform-repaint-descendants-expected.png: |
| * platform/efl/fast/repaint/transform-replaced-shadows-expected.png: |
| * platform/efl/fast/repaint/transform-rotate-and-remove-expected.png: |
| * platform/efl/fast/repaint/transform-translate-expected.png: |
| * platform/efl/fast/table/border-collapsing/cached-69296-expected.png: |
| * platform/efl/fast/table/border-collapsing/cached-change-cell-sl-border-color-expected.png: Added. |
| * platform/efl/fast/table/border-collapsing/cached-change-row-border-width-expected.png: Added. |
| * platform/efl/fast/table/border-collapsing/cached-change-tbody-border-width-expected.png: Added. |
| * platform/efl/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Added. |
| |
| 2012-10-22 Dongwoo Joshua Im <dw.im@samsung.com> |
| |
| Move LayoutTests/fast/css3-text-decoration directory into LayoutTests/fast/css3-text directory. |
| https://bugs.webkit.org/show_bug.cgi?id=99948 |
| |
| Reviewed by Hajime Morita. |
| |
| css3-text-decoration is one of the feature under the ENABLE_CSS3_TEXT flag, |
| it should be maintained in the css3-text directory with other features under the same flag. |
| |
| * fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line-expected.txt: Renamed from LayoutTests/fast/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line-expected.txt. |
| * fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line.html: Renamed from LayoutTests/fast/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line.html. |
| * fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt: Renamed from LayoutTests/fast/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt. |
| * fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style.html: Renamed from LayoutTests/fast/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style.html. |
| * fast/css3-text/css3-text-decoration/getComputedStyle/script-tests/getComputedStyle-text-decoration-line.js: Renamed from LayoutTests/fast/css3-text-decoration/getComputedStyle/script-tests/getComputedStyle-text-decoration-line.js. |
| (testElementStyle): |
| (testComputedStyle): |
| * fast/css3-text/css3-text-decoration/getComputedStyle/script-tests/getComputedStyle-text-decoration-style.js: Renamed from LayoutTests/fast/css3-text-decoration/getComputedStyle/script-tests/getComputedStyle-text-decoration-style.js. |
| (testElementStyle): |
| (testComputedStyleValue): |
| (testValue): |
| * fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line-expected.png: Renamed from LayoutTests/fast/css3-text-decoration/repaint/repaint-text-decoration-line-expected.png. |
| * fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line-expected.txt: Renamed from LayoutTests/fast/css3-text-decoration/repaint/repaint-text-decoration-line-expected.txt. |
| * fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line.html: Renamed from LayoutTests/fast/css3-text-decoration/repaint/repaint-text-decoration-line.html. |
| * fast/css3-text/css3-text-decoration/text-decoration-line-expected.html: Renamed from LayoutTests/fast/css3-text-decoration/text-decoration-line-expected.html. |
| * fast/css3-text/css3-text-decoration/text-decoration-line.html: Renamed from LayoutTests/fast/css3-text-decoration/text-decoration-line.html. |
| * platform/chromium/TestExpectations: |
| * platform/efl/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line-expected.png: Renamed from LayoutTests/platform/efl/fast/css3-text-decoration/repaint/repaint-text-decoration-line-expected.png. |
| * platform/mac/TestExpectations: |
| * platform/qt-4.8/TestExpectations: |
| * platform/qt-mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line-expected.txt: Renamed from LayoutTests/platform/win/fast/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line-expected.txt. |
| * platform/win/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt: Renamed from LayoutTests/platform/win/fast/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style-expected.txt. |
| |
| 2012-10-22 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| WebKitTestRunner needs testRunner.queueLoadingScript and testRunner.queueNonLoadingScript |
| https://bugs.webkit.org/show_bug.cgi?id=42675 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipped corresponding test cases for WK2. Put those which still fail to appropriate |
| groups. |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 2. |
| |
| * platform/efl/fast/repaint/body-background-image-expected.png: |
| * platform/efl/fast/repaint/layout-state-only-positioned-expected.png: |
| * platform/efl/fast/repaint/layout-state-relative-expected.png: |
| * platform/efl/fast/repaint/layout-state-scrolloffset-expected.png: |
| * platform/efl/fast/repaint/layout-state-scrolloffset2-expected.png: |
| * platform/efl/fast/repaint/layout-state-scrolloffset3-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-1-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-10-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-2-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-3-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-4-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-5-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-6-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-7-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-8-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-9-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-in-regions-expected.png: |
| * platform/efl/fast/repaint/line-in-scrolled-clipped-block-expected.png: |
| * platform/efl/fast/repaint/line-overflow-expected.png: |
| * platform/efl/fast/repaint/lines-with-layout-delta-expected.png: |
| * platform/efl/fast/repaint/list-marker-2-expected.png: |
| * platform/efl/fast/repaint/make-children-non-inline-expected.png: |
| * platform/efl/fast/repaint/moving-shadow-on-path-expected.png: |
| * platform/efl/fast/repaint/multicol-repaint-expected.png: |
| * platform/efl/fast/repaint/nested-iframe-scroll-inner-expected.png: |
| * platform/efl/fast/repaint/nested-iframe-scroll-outer-expected.png: |
| * platform/efl/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.png: |
| * platform/efl/fast/repaint/opacity-change-on-overflow-float-expected.png: |
| * platform/efl/fast/repaint/outline-child-repaint-expected.png: |
| * platform/efl/fast/repaint/outline-inset-expected.png: |
| * platform/efl/fast/repaint/outline-repaint-glitch-expected.png: |
| * platform/efl/fast/repaint/outline-shrinking-expected.png: |
| * platform/efl/fast/repaint/overflow-auto-in-overflow-auto-scrolled-expected.png: |
| * platform/efl/fast/repaint/overflow-clip-subtree-layout-expected.png: Added. |
| * platform/efl/fast/repaint/overflow-delete-line-expected.png: |
| * platform/efl/fast/repaint/overflow-flipped-writing-mode-block-in-regions-expected.png: |
| * platform/efl/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled-expected.png: |
| * platform/efl/fast/repaint/overflow-hide-expected.png: |
| * platform/efl/fast/repaint/overflow-into-content-expected.png: |
| * platform/efl/fast/repaint/overflow-outline-repaint-expected.png: |
| * platform/efl/fast/repaint/overflow-scroll-delete-expected.png: |
| * platform/efl/fast/repaint/overflow-scroll-in-overflow-scroll-scrolled-expected.png: |
| * platform/efl/fast/repaint/overflow-show-expected.png: |
| * platform/efl/fast/repaint/reflection-redraw-expected.png: |
| * platform/efl/fast/repaint/reflection-repaint-test-expected.png: |
| * platform/efl/fast/repaint/region-painting-invalidation-expected.png: |
| * platform/efl/fast/repaint/region-painting-via-layout-expected.png: |
| * platform/efl/fast/repaint/rel-positioned-inline-with-overflow-expected.png: |
| * platform/efl/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png: |
| * platform/efl/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/efl/fast/repaint/repaint-during-scroll-expected.png: |
| * platform/efl/fast/repaint/repaint-during-scroll-with-zoom-expected.png: |
| * platform/efl/fast/repaint/repaint-resized-overflow-expected.png: |
| * platform/efl/fast/repaint/scroll-absolute-layer-with-reflection-expected.png: |
| * platform/efl/fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.png: |
| |
| 2012-10-22 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations after r131941 and r131991, part 1. |
| |
| * platform/efl/fast/repaint/4774354-expected.png: |
| * platform/efl/fast/repaint/4776765-expected.png: |
| * platform/efl/fast/repaint/absolute-position-changed-expected.png: |
| * platform/efl/fast/repaint/add-table-overpaint-expected.png: Removed. |
| * platform/efl/fast/repaint/background-generated-expected.png: |
| * platform/efl/fast/repaint/background-misaligned-expected.png: |
| * platform/efl/fast/repaint/backgroundSizeRepaint-expected.png: |
| * platform/efl/fast/repaint/block-layout-inline-children-float-positioned-expected.png: |
| * platform/efl/fast/repaint/block-layout-inline-children-replaced-expected.png: |
| * platform/efl/fast/repaint/block-no-inflow-children-expected.png: |
| * platform/efl/fast/repaint/block-selection-gap-in-composited-layer-expected.png: |
| * platform/efl/fast/repaint/block-selection-gap-in-table-cell-expected.png: |
| * platform/efl/fast/repaint/block-selection-gap-stale-cache-2-expected.png: |
| * platform/efl/fast/repaint/block-selection-gap-stale-cache-expected.png: |
| * platform/efl/fast/repaint/border-fit-lines-expected.png: |
| * platform/efl/fast/repaint/border-radius-repaint-expected.png: |
| * platform/efl/fast/repaint/border-repaint-glitch-expected.png: |
| * platform/efl/fast/repaint/box-shadow-dynamic-expected.png: |
| * platform/efl/fast/repaint/box-shadow-inset-repaint-expected.png: |
| * platform/efl/fast/repaint/bugzilla-3509-expected.png: |
| * platform/efl/fast/repaint/bugzilla-5699-expected.png: |
| * platform/efl/fast/repaint/bugzilla-6278-expected.png: |
| * platform/efl/fast/repaint/bugzilla-6388-expected.png: |
| * platform/efl/fast/repaint/bugzilla-6473-expected.png: |
| * platform/efl/fast/repaint/bugzilla-7235-expected.png: |
| * platform/efl/fast/repaint/button-spurious-layout-hint-expected.png: |
| * platform/efl/fast/repaint/canvas-putImageData-expected.png: |
| * platform/efl/fast/repaint/caret-outside-block-expected.png: |
| * platform/efl/fast/repaint/change-transform-expected.png: |
| * platform/efl/fast/repaint/clip-with-layout-delta-expected.png: |
| * platform/efl/fast/repaint/clipped-relative-expected.png: |
| * platform/efl/fast/repaint/containing-block-position-change-expected.png: |
| * platform/efl/fast/repaint/content-into-overflow-expected.png: |
| * platform/efl/fast/repaint/continuation-after-outline-expected.png: |
| * platform/efl/fast/repaint/control-clip-expected.png: |
| * platform/efl/fast/repaint/create-layer-repaint-expected.png: |
| * platform/efl/fast/repaint/delete-into-nested-block-expected.png: |
| * platform/efl/fast/repaint/dynamic-table-vertical-alignment-change-expected.png: |
| * platform/efl/fast/repaint/erase-overflow-expected.png: |
| * platform/efl/fast/repaint/fixed-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-and-absolute-position-scrolled-expected.png: |
| * platform/efl/fast/repaint/fixed-child-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-expected.png: |
| * platform/efl/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-position-transparency-with-overflow-expected.png: |
| * platform/efl/fast/repaint/fixed-scale-expected.png: |
| * platform/efl/fast/repaint/fixed-scroll-simple-expected.png: |
| * platform/efl/fast/repaint/fixed-table-cell-expected.png: |
| * platform/efl/fast/repaint/fixed-table-overflow-expected.png: |
| * platform/efl/fast/repaint/fixed-table-overflow-zindex-expected.png: |
| * platform/efl/fast/repaint/fixed-tranformed-expected.png: |
| * platform/efl/fast/repaint/float-in-new-block-with-layout-delta-expected.png: |
| * platform/efl/fast/repaint/float-move-during-layout-expected.png: |
| * platform/efl/fast/repaint/float-new-in-block-expected.png: |
| * platform/efl/fast/repaint/float-overflow-expected.png: Added. |
| * platform/efl/fast/repaint/float-overflow-right-expected.png: Added. |
| * platform/efl/fast/repaint/gradients-em-stops-repaint-expected.png: |
| * platform/efl/fast/repaint/iframe-scroll-repaint-expected.png: |
| * platform/efl/fast/repaint/inline-block-resize-expected.png: |
| * platform/efl/fast/repaint/inline-color-change-expected.png: |
| * platform/efl/fast/repaint/inline-horizontal-bt-overflow-expected.png: |
| * platform/efl/fast/repaint/inline-outline-repaint-expected.png: |
| * platform/efl/fast/repaint/inline-vertical-lr-overflow-expected.png: |
| * platform/efl/fast/repaint/inline-vertical-rl-overflow-expected.png: |
| * platform/efl/fast/repaint/intermediate-layout-position-clip-expected.png: |
| * platform/efl/fast/repaint/intermediate-layout-position-expected.png: |
| * platform/efl/fast/repaint/invisible-objects-expected.png: |
| * platform/efl/fast/repaint/japanese-rl-selection-clear-expected.png: |
| * platform/efl/fast/repaint/japanese-rl-selection-repaint-expected.png: |
| * platform/efl/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.png: |
| * platform/efl/fast/repaint/layer-full-repaint-expected.png: |
| * platform/efl/fast/repaint/layer-hide-when-needs-layout-expected.png: |
| * platform/efl/fast/repaint/layer-visibility-expected.png: |
| |
| 2012-10-22 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding flaky crashing expectations for fast/dom/gc-acid3.html |
| and http/tests/misc/acid3.html. |
| Removing timeout expectations for tests that were fixed in r131942. |
| Reclassifying svg/animations/animate-css-xml-attributeType.html |
| as a non-flaky failure. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-22 Anton Muhin <antonm@chromium.org> |
| |
| Unreviewed Chromium rebaselines. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, suppressing failure until I can figure out what's going on. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-21 Keishi Hattori <keishi@webkit.org> |
| |
| Refactor picker tests to fix flakiness and share code |
| https://bugs.webkit.org/show_bug.cgi?id=99671 |
| |
| Reviewed by Kent Tamura. |
| |
| Refactored so picker tests share code and structure. |
| |
| * fast/forms/resources/picker-common.js: Shared by all picker tests. Requires js-test-pre.js. Sets up an asynchronous test. |
| (openPicker): Opens the picker for the given input and calls the callback when the picker did open. |
| (popupOpenCallbackWrapper): |
| (sendKey): |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium/TestExpectations: Marked all tests as not flaky. Marked all pixel tests as need rebaseline. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.txt: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.txt: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step.html: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance.html: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-mouse-operations.html: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-pre-100-year.html: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-with-step-expected.txt: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-with-step.html: |
| * platform/chromium/fast/forms/calendar-picker/resources/calendar-picker-common.js: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-appearance-expected.txt: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-appearance.html: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-one-row-appearance-expected.txt: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-one-row-appearance.html: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-two-row-appearance-expected.txt: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-two-row-appearance.html: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-with-scrollbar-appearance-expected.txt: |
| * platform/chromium/fast/forms/color/color-suggestion-picker-with-scrollbar-appearance.html: |
| * platform/chromium/fast/forms/page-popup/page-popup-adjust-rect.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-key-operations-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-key-operations.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-min-max-attribute.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-reset-value-after-reload.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-step-attribute-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-step-attribute.html: |
| * platform/chromium/fast/forms/suggestion-picker/resources/suggestion-picker-common.js: Moved to resource directory like all other js files. |
| (valueForEntry): |
| (highlightedEntry): |
| (entryValues): |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-key-operations.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute.html: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, could've sworn this was in the previous patch ... |
| |
| * platform/chromium-win-xp/fast/hidpi/gradient-with-scaled-ancestor-expected.png: Removed. |
| * platform/chromium-win/fast/hidpi/gradient-with-scaled-ancestor-expected.png: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed. More chromium baseline cleanup after r132022. |
| |
| * platform/chromium-mac-lion/editing/selection/iframe-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/move-by-line-001-expected.png: Added. |
| * platform/chromium-mac-lion/svg/custom/pattern-scaling-expected.png: Removed. |
| * platform/chromium-mac-lion/svg/custom/pattern-scaling-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/svg/custom/pattern-scaling-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/svg/custom/pattern-scaling-expected.txt: Removed. |
| * platform/chromium-mac/svg/custom/pattern-scaling-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/custom/pattern-scaling-expected.png: Removed. |
| * platform/chromium-win-xp/svg/custom/pattern-scaling-expected.txt: Removed. |
| * platform/chromium-win/svg/custom/pattern-scaling-expected.png: Renamed from LayoutTests/platform/chromium-linux/svg/custom/pattern-scaling-expected.png. |
| * platform/chromium/svg/custom/pattern-scaling-expected.txt: Renamed from LayoutTests/platform/chromium-linux/svg/custom/pattern-scaling-expected.txt. |
| |
| 2012-10-21 Shinya Kawanaka <shinyak@chromium.org> |
| |
| Web Inspector: Shadow DOM: Node removal doesn't reflect. |
| https://bugs.webkit.org/show_bug.cgi?id=99567 |
| |
| Reviewed by Pavel Feldman. |
| |
| * inspector/elements/update-shadowdom-expected.txt: Added. |
| * inspector/elements/update-shadowdom.html: Added. |
| * platform/mac/TestExpectations: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, more Chromium ML baselining minor cleanups. |
| |
| * platform/chromium-mac-lion/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png. |
| * platform/chromium-mac/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png: |
| * platform/chromium-mac/editing/selection/iframe-expected.png: |
| * platform/chromium-mac/editing/selection/move-by-line-001-expected.png: |
| * platform/chromium-win-xp/fast/hidpi/gradient-with-scaled-ancestor-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, rebaseline remaining Chromium ML editing tests. |
| |
| (long list of new baselines omitted). |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, new Chromium ML expectations for editing/inserting and editing/pasteboard. |
| |
| (long list of new baselines omitted). |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, new Chromium ML baselines for editing/deleting, editing/execCommand, and editing/selection |
| |
| (long list of new baselines omitted). |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, new Chromium ML baselines for platform/chromium/virtual/gpu/fast/hidpi. |
| |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/canvas-bg-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-bg-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/canvas-composite-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-composite-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/canvas-text-alignment-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-text-alignment-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/canvas-text-baseline-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-text-baseline-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/canvas-transforms-during-path-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-transforms-during-path-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/fillrect-gradient-zero-stops-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/fillrect-gradient-zero-stops-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/fillrect_gradient-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/fillrect_gradient-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/image-object-in-canvas-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/image-object-in-canvas-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/image-pattern-rotate-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/image-pattern-rotate-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/patternfill-repeat-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/patternfill-repeat-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/quadraticCurveTo-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/quadraticCurveTo-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/setWidthResetAfterForcedRender-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/setWidthResetAfterForcedRender-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-4-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-4-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-5-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-5-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-6-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-6-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-7-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-7-expected.png. |
| * platform/chromium-mac-lion/platform/chromium/virtual/gpu/fast/hidpi/video-controls-in-hidpi-expected.png: Copied from LayoutTests/platform/chromium-mac/platform/chromium/virtual/gpu/fast/hidpi/video-controls-in-hidpi-expected.png. |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-bg-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-composite-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-text-alignment-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-text-baseline-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/canvas-transforms-during-path-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/fillrect-gradient-zero-stops-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/fillrect_gradient-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/image-object-in-canvas-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/image-pattern-rotate-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/patternfill-repeat-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/quadraticCurveTo-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/setWidthResetAfterForcedRender-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-4-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-5-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-6-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/canvas/shadow-offset-7-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/hidpi/video-controls-in-hidpi-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, add Chromium ML baselines for fast/hidpi. |
| |
| * platform/chromium-mac-lion/fast/hidpi/clip-text-in-hidpi-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/clip-text-in-hidpi-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/gradient-with-scaled-ancestor-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/gradient-with-scaled-ancestor-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-as-background-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-as-background-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-background-dynamic-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-background-dynamic-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-background-repeat-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-background-repeat-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-background-repeat-without-size-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-background-repeat-without-size-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-border-image-comparison-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-border-image-comparison-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-border-image-dynamic-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-border-image-dynamic-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-border-image-simple-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-border-image-simple-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-in-content-dynamic-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-in-content-dynamic-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-out-of-order-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-out-of-order-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-simple-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-simple-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/image-set-without-specified-width-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/image-set-without-specified-width-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/resize-corner-hidpi-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/resize-corner-hidpi-expected.png. |
| * platform/chromium-mac-lion/fast/hidpi/video-controls-in-hidpi-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/video-controls-in-hidpi-expected.png. |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium-mac/fast/hidpi/clip-text-in-hidpi-expected.png: |
| * platform/chromium-mac/fast/hidpi/gradient-with-scaled-ancestor-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-as-background-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-background-dynamic-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-background-repeat-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-background-repeat-without-size-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-border-image-comparison-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-border-image-dynamic-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-border-image-simple-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-in-content-dynamic-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-out-of-order-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-simple-expected.png: |
| * platform/chromium-mac/fast/hidpi/image-set-without-specified-width-expected.png: |
| * platform/chromium-mac/fast/hidpi/resize-corner-hidpi-expected.png: |
| * platform/chromium-mac/fast/hidpi/video-controls-in-hidpi-expected.png: |
| * platform/chromium-win/fast/hidpi/gradient-with-scaled-ancestor-expected.png: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, re-adjust Chromium Mac expectations. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, new Chromium ML baselines for fast/canvas. |
| |
| * fast/canvas/canvas-incremental-repaint-expected.png: Renamed from LayoutTests/platform/efl/fast/canvas/canvas-incremental-repaint-expected.png. |
| * fast/canvas/canvas-size-change-after-layout-expected.png: Renamed from LayoutTests/platform/mac/fast/canvas/canvas-size-change-after-layout-expected.png. |
| * fast/canvas/canvasDrawingIntoSelf-expected.png: Renamed from LayoutTests/platform/mac/fast/canvas/canvasDrawingIntoSelf-expected.png. |
| * fast/canvas/drawImage-expected.png: Renamed from LayoutTests/platform/mac/fast/canvas/drawImage-expected.png. |
| * fast/canvas/shadow-offset-1-expected.png: Renamed from LayoutTests/platform/mac/fast/canvas/shadow-offset-1-expected.png. |
| * fast/canvas/shadow-offset-2-expected.png: Renamed from LayoutTests/platform/mac/fast/canvas/shadow-offset-2-expected.png. |
| * fast/canvas/shadow-offset-3-expected.png: Renamed from LayoutTests/platform/mac/fast/canvas/shadow-offset-3-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/arc360-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/arc360-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-before-css-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-before-css-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-bg-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-bg-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-composite-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-composite-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-incremental-repaint-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-incremental-repaint-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-resize-reset-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-resize-reset-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-size-change-after-layout-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-size-change-after-layout-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-text-alignment-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-text-alignment-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-text-baseline-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-text-baseline-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-transforms-during-path-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-transforms-during-path-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvas-zoom-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvas-zoom-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/canvasDrawingIntoSelf-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/canvasDrawingIntoSelf-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/check-stale-putImageData-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/check-stale-putImageData-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/drawImage-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/drawImage-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/drawImage-with-globalAlpha-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/drawImage-with-globalAlpha-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/fill-stroke-clip-reset-path-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/fill-stroke-clip-reset-path-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/fillrect-gradient-zero-stops-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/fillrect-gradient-zero-stops-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/fillrect_gradient-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/fillrect_gradient-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/image-object-in-canvas-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/image-object-in-canvas-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/image-pattern-rotate-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/image-pattern-rotate-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/patternfill-repeat-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/patternfill-repeat-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/quadraticCurveTo-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/quadraticCurveTo-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/setWidthResetAfterForcedRender-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/setWidthResetAfterForcedRender-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/shadow-offset-1-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/shadow-offset-1-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/shadow-offset-2-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/shadow-offset-2-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/shadow-offset-3-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/shadow-offset-3-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/shadow-offset-4-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/shadow-offset-4-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/shadow-offset-5-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/shadow-offset-5-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/shadow-offset-6-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/shadow-offset-6-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/shadow-offset-7-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/shadow-offset-7-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/toDataURL-alpha-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/toDataURL-alpha-expected.png. |
| * platform/chromium-mac-lion/fast/canvas/zero-size-fill-rect-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/canvas/zero-size-fill-rect-expected.png. |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium-mac/fast/canvas/arc360-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-before-css-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-bg-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-composite-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-incremental-repaint-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-resize-reset-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-size-change-after-layout-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-text-alignment-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-text-baseline-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-transforms-during-path-expected.png: |
| * platform/chromium-mac/fast/canvas/canvas-zoom-expected.png: |
| * platform/chromium-mac/fast/canvas/canvasDrawingIntoSelf-expected.png: |
| * platform/chromium-mac/fast/canvas/check-stale-putImageData-expected.png: |
| * platform/chromium-mac/fast/canvas/drawImage-expected.png: |
| * platform/chromium-mac/fast/canvas/drawImage-with-globalAlpha-expected.png: |
| * platform/chromium-mac/fast/canvas/fill-stroke-clip-reset-path-expected.png: |
| * platform/chromium-mac/fast/canvas/fillrect-gradient-zero-stops-expected.png: |
| * platform/chromium-mac/fast/canvas/fillrect_gradient-expected.png: |
| * platform/chromium-mac/fast/canvas/image-object-in-canvas-expected.png: |
| * platform/chromium-mac/fast/canvas/image-pattern-rotate-expected.png: |
| * platform/chromium-mac/fast/canvas/patternfill-repeat-expected.png: |
| * platform/chromium-mac/fast/canvas/quadraticCurveTo-expected.png: |
| * platform/chromium-mac/fast/canvas/setWidthResetAfterForcedRender-expected.png: |
| * platform/chromium-mac/fast/canvas/shadow-offset-1-expected.png: |
| * platform/chromium-mac/fast/canvas/shadow-offset-2-expected.png: |
| * platform/chromium-mac/fast/canvas/shadow-offset-3-expected.png: |
| * platform/chromium-mac/fast/canvas/shadow-offset-4-expected.png: |
| * platform/chromium-mac/fast/canvas/shadow-offset-5-expected.png: |
| * platform/chromium-mac/fast/canvas/shadow-offset-6-expected.png: |
| * platform/chromium-mac/fast/canvas/shadow-offset-7-expected.png: |
| * platform/chromium-mac/fast/canvas/toDataURL-alpha-expected.png: |
| * platform/chromium-mac/fast/canvas/zero-size-fill-rect-expected.png: |
| * platform/chromium/TestExpectations: |
| * platform/gtk/fast/canvas/canvas-incremental-repaint-expected.png: Removed. |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, expectations update for Chromium. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, update Chromium ML baselines for LayoutTests/css1 and optimize. |
| |
| * css1/formatting_model/floating_elements-expected.png: Renamed from LayoutTests/platform/efl/css1/formatting_model/floating_elements-expected.png. |
| * platform/chromium-linux-x86/css1/basic/class_as_selector-expected.png: Removed. |
| * platform/chromium-linux-x86/css1/basic/id_as_selector-expected.png: Removed. |
| * platform/chromium-linux-x86/css1/box_properties/border_bottom-expected.png: Removed. |
| * platform/chromium-linux-x86/css1/box_properties/margin_left-expected.png: Removed. |
| * platform/chromium-linux-x86/css1/box_properties/padding_right-expected.png: Removed. |
| * platform/chromium-linux-x86/css1/pseudo/anchor-expected.png: Removed. |
| * platform/chromium-mac-lion/css1/basic/class_as_selector-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/basic/class_as_selector-expected.png. |
| * platform/chromium-mac-lion/css1/basic/comments-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/basic/comments-expected.png. |
| * platform/chromium-mac-lion/css1/basic/containment-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/basic/containment-expected.png. |
| * platform/chromium-mac-lion/css1/basic/contextual_selectors-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/basic/contextual_selectors-expected.png. |
| * platform/chromium-mac-lion/css1/basic/grouping-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/basic/grouping-expected.png. |
| * platform/chromium-mac-lion/css1/basic/id_as_selector-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/basic/id_as_selector-expected.png. |
| * platform/chromium-mac-lion/css1/basic/inheritance-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/basic/inheritance-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/acid_test-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/acid_test-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_bottom-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_bottom-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_bottom_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_bottom_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_bottom_width-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_bottom_width-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_bottom_width_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_bottom_width_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_color-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_color-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_color_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_color_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_left-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_left-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_left_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_left_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_left_width-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_left_width-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_left_width_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_left_width_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_right-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_right-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_right_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_right_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_right_width-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_right_width-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_right_width_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_right_width_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_style-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_style-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_style_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_style_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_top-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_top-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_top_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_top_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_top_width-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_top_width-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_top_width_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_top_width_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_width-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_width-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/border_width_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/border_width_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/clear-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/clear-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/clear_float-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/clear_float-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/float-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/float-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/float_elements_in_series-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/float_elements_in_series-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/float_margin-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/float_margin-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/float_on_text_elements-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/height-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/height-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_bottom-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_bottom-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_bottom_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_bottom_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_left-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_left-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_left_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_left_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_right-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_right-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_right_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_right_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_top-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_top-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/margin_top_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/margin_top_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_bottom-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_bottom-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_bottom_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_bottom_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_left-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_left-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_left_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_left_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_right-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_right-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_right_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_right_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_top-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_top-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/padding_top_inline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/padding_top_inline-expected.png. |
| * platform/chromium-mac-lion/css1/box_properties/width-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/box_properties/width-expected.png. |
| * platform/chromium-mac-lion/css1/cascade/cascade_order-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/cascade/cascade_order-expected.png. |
| * platform/chromium-mac-lion/css1/cascade/important-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/cascade/important-expected.png. |
| * platform/chromium-mac-lion/css1/classification/display-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/classification/display-expected.png. |
| * platform/chromium-mac-lion/css1/classification/list_style-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/classification/list_style-expected.png. |
| * platform/chromium-mac-lion/css1/classification/list_style_image-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/classification/list_style_image-expected.png. |
| * platform/chromium-mac-lion/css1/classification/list_style_position-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/classification/list_style_position-expected.png. |
| * platform/chromium-mac-lion/css1/classification/list_style_type-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/classification/list_style_type-expected.png. |
| * platform/chromium-mac-lion/css1/classification/white_space-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/classification/white_space-expected.png. |
| * platform/chromium-mac-lion/css1/color_and_background/background-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/color_and_background/background-expected.png. |
| * platform/chromium-mac-lion/css1/color_and_background/background_attachment-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/color_and_background/background_attachment-expected.png. |
| * platform/chromium-mac-lion/css1/color_and_background/background_color-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/color_and_background/background_color-expected.png. |
| * platform/chromium-mac-lion/css1/color_and_background/background_image-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/color_and_background/background_image-expected.png. |
| * platform/chromium-mac-lion/css1/color_and_background/background_position-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/color_and_background/background_position-expected.png. |
| * platform/chromium-mac-lion/css1/color_and_background/background_repeat-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/color_and_background/background_repeat-expected.png. |
| * platform/chromium-mac-lion/css1/color_and_background/color-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/color_and_background/color-expected.png. |
| * platform/chromium-mac-lion/css1/conformance/forward_compatible_parsing-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/conformance/forward_compatible_parsing-expected.png. |
| * platform/chromium-mac-lion/css1/font_properties/font-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/font_properties/font-expected.png. |
| * platform/chromium-mac-lion/css1/font_properties/font_family-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/font_properties/font_family-expected.png. |
| * platform/chromium-mac-lion/css1/font_properties/font_size-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/font_properties/font_size-expected.png. |
| * platform/chromium-mac-lion/css1/font_properties/font_style-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/font_properties/font_style-expected.png. |
| * platform/chromium-mac-lion/css1/font_properties/font_variant-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/font_properties/font_variant-expected.png. |
| * platform/chromium-mac-lion/css1/font_properties/font_weight-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/font_properties/font_weight-expected.png. |
| * platform/chromium-mac-lion/css1/formatting_model/canvas-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/formatting_model/canvas-expected.png. |
| * platform/chromium-mac-lion/css1/formatting_model/floating_elements-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/formatting_model/floating_elements-expected.png. |
| * platform/chromium-mac-lion/css1/formatting_model/height_of_lines-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/formatting_model/height_of_lines-expected.png. |
| * platform/chromium-mac-lion/css1/formatting_model/horizontal_formatting-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/formatting_model/horizontal_formatting-expected.png. |
| * platform/chromium-mac-lion/css1/formatting_model/inline_elements-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/formatting_model/inline_elements-expected.png. |
| * platform/chromium-mac-lion/css1/formatting_model/replaced_elements-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/formatting_model/replaced_elements-expected.png. |
| * platform/chromium-mac-lion/css1/formatting_model/vertical_formatting-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/formatting_model/vertical_formatting-expected.png. |
| * platform/chromium-mac-lion/css1/pseudo/anchor-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/pseudo/anchor-expected.png. |
| * platform/chromium-mac-lion/css1/pseudo/firstletter-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/pseudo/firstletter-expected.png. |
| * platform/chromium-mac-lion/css1/pseudo/firstline-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/pseudo/firstline-expected.png. |
| * platform/chromium-mac-lion/css1/pseudo/multiple_pseudo_elements-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/pseudo/multiple_pseudo_elements-expected.png. |
| * platform/chromium-mac-lion/css1/pseudo/pseudo_elements_in_selectors-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/pseudo/pseudo_elements_in_selectors-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/letter_spacing-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/letter_spacing-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/line_height-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/line_height-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/text_align-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/text_align-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/text_decoration-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/text_decoration-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/text_indent-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/text_indent-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/text_transform-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/text_transform-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/vertical_align-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/vertical_align-expected.png. |
| * platform/chromium-mac-lion/css1/text_properties/word_spacing-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/text_properties/word_spacing-expected.png. |
| * platform/chromium-mac-lion/css1/units/color_units-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/units/color_units-expected.png. |
| * platform/chromium-mac-lion/css1/units/length_units-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/units/length_units-expected.png. |
| * platform/chromium-mac-lion/css1/units/percentage_units-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/units/percentage_units-expected.png. |
| * platform/chromium-mac-lion/css1/units/urls-expected.png: Copied from LayoutTests/platform/chromium-mac/css1/units/urls-expected.png. |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium-mac/css1/basic/class_as_selector-expected.png: |
| * platform/chromium-mac/css1/basic/comments-expected.png: |
| * platform/chromium-mac/css1/basic/containment-expected.png: |
| * platform/chromium-mac/css1/basic/contextual_selectors-expected.png: |
| * platform/chromium-mac/css1/basic/grouping-expected.png: |
| * platform/chromium-mac/css1/basic/id_as_selector-expected.png: |
| * platform/chromium-mac/css1/basic/inheritance-expected.png: |
| * platform/chromium-mac/css1/box_properties/acid_test-expected.png: |
| * platform/chromium-mac/css1/box_properties/border-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_bottom-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_bottom_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_bottom_width-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_bottom_width_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_color-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_color_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_left-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_left_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_left_width-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_left_width_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_right-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_right_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_right_width-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_right_width_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_style-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_style_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_top-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_top_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_top_width-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_top_width_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_width-expected.png: |
| * platform/chromium-mac/css1/box_properties/border_width_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/clear-expected.png: |
| * platform/chromium-mac/css1/box_properties/clear_float-expected.png: |
| * platform/chromium-mac/css1/box_properties/float-expected.png: |
| * platform/chromium-mac/css1/box_properties/float_elements_in_series-expected.png: |
| * platform/chromium-mac/css1/box_properties/float_margin-expected.png: |
| * platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.png: |
| * platform/chromium-mac/css1/box_properties/height-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_bottom-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_bottom_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_left-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_left_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_right-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_right_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_top-expected.png: |
| * platform/chromium-mac/css1/box_properties/margin_top_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_bottom-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_bottom_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_left-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_left_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_right-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_right_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_top-expected.png: |
| * platform/chromium-mac/css1/box_properties/padding_top_inline-expected.png: |
| * platform/chromium-mac/css1/box_properties/width-expected.png: |
| * platform/chromium-mac/css1/cascade/cascade_order-expected.png: |
| * platform/chromium-mac/css1/cascade/important-expected.png: |
| * platform/chromium-mac/css1/classification/display-expected.png: |
| * platform/chromium-mac/css1/classification/list_style-expected.png: |
| * platform/chromium-mac/css1/classification/list_style_image-expected.png: |
| * platform/chromium-mac/css1/classification/list_style_position-expected.png: |
| * platform/chromium-mac/css1/classification/list_style_type-expected.png: |
| * platform/chromium-mac/css1/classification/white_space-expected.png: |
| * platform/chromium-mac/css1/color_and_background/background-expected.png: |
| * platform/chromium-mac/css1/color_and_background/background_attachment-expected.png: |
| * platform/chromium-mac/css1/color_and_background/background_color-expected.png: |
| * platform/chromium-mac/css1/color_and_background/background_image-expected.png: |
| * platform/chromium-mac/css1/color_and_background/background_position-expected.png: |
| * platform/chromium-mac/css1/color_and_background/background_repeat-expected.png: |
| * platform/chromium-mac/css1/color_and_background/color-expected.png: |
| * platform/chromium-mac/css1/conformance/forward_compatible_parsing-expected.png: |
| * platform/chromium-mac/css1/font_properties/font-expected.png: |
| * platform/chromium-mac/css1/font_properties/font_family-expected.png: |
| * platform/chromium-mac/css1/font_properties/font_size-expected.png: |
| * platform/chromium-mac/css1/font_properties/font_style-expected.png: |
| * platform/chromium-mac/css1/font_properties/font_variant-expected.png: |
| * platform/chromium-mac/css1/font_properties/font_weight-expected.png: |
| * platform/chromium-mac/css1/formatting_model/canvas-expected.png: |
| * platform/chromium-mac/css1/formatting_model/floating_elements-expected.png: |
| * platform/chromium-mac/css1/formatting_model/height_of_lines-expected.png: |
| * platform/chromium-mac/css1/formatting_model/horizontal_formatting-expected.png: |
| * platform/chromium-mac/css1/formatting_model/inline_elements-expected.png: |
| * platform/chromium-mac/css1/formatting_model/replaced_elements-expected.png: |
| * platform/chromium-mac/css1/formatting_model/vertical_formatting-expected.png: |
| * platform/chromium-mac/css1/pseudo/anchor-expected.png: |
| * platform/chromium-mac/css1/pseudo/firstletter-expected.png: |
| * platform/chromium-mac/css1/pseudo/firstline-expected.png: |
| * platform/chromium-mac/css1/pseudo/multiple_pseudo_elements-expected.png: |
| * platform/chromium-mac/css1/pseudo/pseudo_elements_in_selectors-expected.png: |
| * platform/chromium-mac/css1/text_properties/letter_spacing-expected.png: |
| * platform/chromium-mac/css1/text_properties/line_height-expected.png: |
| * platform/chromium-mac/css1/text_properties/text_align-expected.png: |
| * platform/chromium-mac/css1/text_properties/text_decoration-expected.png: |
| * platform/chromium-mac/css1/text_properties/text_indent-expected.png: |
| * platform/chromium-mac/css1/text_properties/text_transform-expected.png: |
| * platform/chromium-mac/css1/text_properties/vertical_align-expected.png: |
| * platform/chromium-mac/css1/text_properties/word_spacing-expected.png: |
| * platform/chromium-mac/css1/units/color_units-expected.png: |
| * platform/chromium-mac/css1/units/length_units-expected.png: |
| * platform/chromium-mac/css1/units/percentage_units-expected.png: |
| * platform/chromium-mac/css1/units/urls-expected.png: |
| * platform/chromium-win-xp/css1/basic/class_as_selector-expected.png: Removed. |
| * platform/chromium-win-xp/css1/basic/containment-expected.png: Removed. |
| * platform/chromium-win-xp/css1/basic/id_as_selector-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/border_bottom-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/border_left-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/border_right_inline-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/border_top-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/clear_float-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/margin_left-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/margin_right-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/padding_left-expected.png: Removed. |
| * platform/chromium-win-xp/css1/box_properties/padding_right-expected.png: Removed. |
| * platform/chromium-win-xp/css1/cascade/cascade_order-expected.png: Removed. |
| * platform/chromium-win-xp/css1/classification/list_style_type-expected.png: Removed. |
| * platform/chromium-win-xp/css1/formatting_model/floating_elements-expected.png: Removed. |
| * platform/chromium-win-xp/css1/pseudo/anchor-expected.png: Removed. |
| * platform/gtk/css1/formatting_model/floating_elements-expected.png: Removed. |
| |
| 2012-10-21 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, chromium expectations update to remove passing tests. |
| |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-08 Robert Hogan <robert@webkit.org> |
| |
| In some float situations, the original layout is wrong and only corrects itself on repaint |
| https://bugs.webkit.org/show_bug.cgi?id=18939 |
| |
| Reviewed by Levi Weintraub. |
| |
| * fast/block/br-with-clearance-after-collapsing-space-expected.html: Added. |
| * fast/block/br-with-clearance-after-collapsing-space.html: Added. |
| |
| 2012-10-08 Robert Hogan <robert@webkit.org> |
| |
| floated element with negative margin causes text wrap bug |
| https://bugs.webkit.org/show_bug.cgi?id=94825 |
| |
| Reviewed by Levi Weintraub. |
| |
| * fast/block/float/float-on-line-obeys-container-padding.html: Added. |
| * fast/block/float/float-on-line-obeys-container-padding-expected.html: Added. |
| |
| 2012-10-20 Dan Bernstein <mitz@apple.com> |
| |
| <rdar://problem/12512710> [mac] Text with zero font size renders as 12px sometimes |
| https://bugs.webkit.org/show_bug.cgi?id=99918 |
| |
| Reviewed by Geoff Garen. |
| |
| * fast/text/zero-font-size-2-expected.html: Added. |
| * fast/text/zero-font-size-2.html: Added. |
| |
| 2012-10-20 Florin Malita <fmalita@chromium.org> |
| |
| [Chromium] Unreviewed rebaselines after http://trac.webkit.org/changeset/131974, take two. |
| |
| * platform/chromium-linux-x86/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: Copied from LayoutTests/platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt. |
| * platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: Copied from LayoutTests/platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt. |
| * platform/chromium-mac-lion/svg/custom/pattern-scaling-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/svg/custom/pattern-scaling-expected.txt: Added. |
| * platform/chromium-mac/svg/custom/pattern-scaling-expected.txt: Added. |
| * platform/chromium-win-xp/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: Removed. |
| * platform/chromium-win-xp/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: Copied from LayoutTests/platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt. |
| * platform/chromium-win-xp/svg/custom/js-late-pattern-creation-expected.png: Removed. |
| * platform/chromium-win-xp/svg/custom/pattern-scaling-expected.txt: Added. |
| * platform/chromium-win-xp/svg/custom/pattern-with-transformation-expected.png: Removed. |
| * platform/chromium-win-xp/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: Removed. |
| * platform/chromium-win-xp/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Removed. |
| * platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: |
| * platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: |
| * platform/chromium-win/svg/custom/js-late-pattern-creation-expected.png: |
| * platform/chromium-win/svg/custom/pattern-with-transformation-expected.png: |
| * platform/chromium-win/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: |
| * platform/chromium-win/svg/transforms/text-with-pattern-with-svg-transform-expected.png: |
| |
| 2012-10-20 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Add missing expectations for some tests in svg/custom. |
| |
| * platform/efl/svg/custom/js-late-pattern-creation-expected.png: Added. |
| * platform/efl/svg/custom/js-late-pattern-creation-expected.txt: Added. |
| * platform/efl/svg/custom/pattern-skew-transformed-expected.png: Added. |
| * platform/efl/svg/custom/pattern-with-transformation-expected.png: Added. |
| * platform/efl/svg/custom/pattern-with-transformation-expected.txt: Added. |
| |
| 2012-10-20 Florin Malita <fmalita@chromium.org> |
| |
| Unreviewed rebaseline after http://trac.webkit.org/changeset/131974. |
| |
| * platform/chromium-linux-x86/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Removed. |
| * platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: |
| * platform/chromium-mac-lion/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: Added. |
| * platform/chromium-mac-lion/svg/custom/js-late-pattern-creation-expected.png: Added. |
| * platform/chromium-mac-lion/svg/custom/pattern-scaling-expected.png: Added. |
| * platform/chromium-mac-lion/svg/custom/pattern-with-transformation-expected.png: Added. |
| * platform/chromium-mac-lion/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: Added. |
| * platform/chromium-mac-lion/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/custom/pattern-scaling-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/custom/pattern-with-transformation-expected.png: |
| * platform/chromium-mac-snowleopard/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: |
| * platform/chromium-mac-snowleopard/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Removed. |
| * platform/chromium-mac/svg/custom/pattern-scaling-expected.png: Added. |
| * platform/chromium-mac/svg/custom/pattern-skew-transformed-expected.png: |
| * platform/chromium-win-xp/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: Added. |
| * platform/chromium-win-xp/svg/custom/js-late-pattern-creation-expected.png: Added. |
| * platform/chromium-win-xp/svg/custom/pattern-scaling-expected.png: Added. |
| * platform/chromium-win-xp/svg/custom/pattern-with-transformation-expected.png: Added. |
| * platform/chromium-win-xp/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: |
| * platform/chromium-win-xp/svg/transforms/text-with-pattern-with-svg-transform-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-20 Mike West <mkwst@chromium.org> |
| |
| Cleanup: Move stacktrace tests to a subdirectory. |
| https://bugs.webkit.org/show_bug.cgi?id=99857 |
| |
| Reviewed by Pavel Feldman. |
| |
| I plan on adding more than a few tests checking that stacktraces are |
| associated with console logs. This patch simply moves the four existing |
| tests into a subdirectory so that I don't spam http/tests/inspector with |
| stacktrace tests. |
| |
| * http/tests/inspector/stacktraces/csp-injected-content-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/http/tests/inspector/csp-injected-content-warning-contains-stacktrace-expected.txt. |
| * http/tests/inspector/stacktraces/csp-injected-content-warning-contains-stacktrace.html: Renamed from LayoutTests/http/tests/inspector/csp-injected-content-warning-contains-stacktrace.html. |
| * http/tests/inspector/stacktraces/csp-inline-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/http/tests/inspector/csp-inline-warning-contains-stacktrace-expected.txt. |
| * http/tests/inspector/stacktraces/csp-inline-warning-contains-stacktrace.html: Renamed from LayoutTests/http/tests/inspector/csp-inline-warning-contains-stacktrace.html. |
| * http/tests/inspector/stacktraces/csp-setInterval-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/http/tests/inspector/csp-setInterval-warning-contains-stacktrace-expected.txt. |
| * http/tests/inspector/stacktraces/csp-setInterval-warning-contains-stacktrace.html: Renamed from LayoutTests/http/tests/inspector/csp-setInterval-warning-contains-stacktrace.html. |
| * http/tests/inspector/stacktraces/csp-setTimeout-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/http/tests/inspector/csp-setTimeout-warning-contains-stacktrace-expected.txt. |
| * http/tests/inspector/stacktraces/csp-setTimeout-warning-contains-stacktrace.html: Renamed from LayoutTests/http/tests/inspector/csp-setTimeout-warning-contains-stacktrace.html. |
| * http/tests/inspector/stacktraces/resources/csp-inline-test.js: Renamed from LayoutTests/http/tests/inspector/resources/csp-inline-test.js. |
| (thisTest): |
| * http/tests/inspector/stacktraces/resources/stacktrace-test.js: Renamed from LayoutTests/http/tests/inspector/resources/csp-test.js. |
| (test.addMessage): |
| (test): |
| * platform/chromium/http/tests/inspector/stacktraces/csp-injected-content-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/platform/chromium/http/tests/inspector/csp-injected-content-warning-contains-stacktrace-expected.txt. |
| * platform/chromium/http/tests/inspector/stacktraces/csp-inline-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/platform/chromium/http/tests/inspector/csp-inline-warning-contains-stacktrace-expected.txt. |
| * platform/chromium/http/tests/inspector/stacktraces/csp-setInterval-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/platform/chromium/http/tests/inspector/csp-setInterval-warning-contains-stacktrace-expected.txt. |
| * platform/chromium/http/tests/inspector/stacktraces/csp-setTimeout-warning-contains-stacktrace-expected.txt: Renamed from LayoutTests/platform/chromium/http/tests/inspector/csp-setTimeout-warning-contains-stacktrace-expected.txt. |
| |
| 2012-10-20 Byungwoo Lee <bw80.lee@samsung.com> |
| |
| [EFL] Unskip the tests about regressions after r130699. |
| https://bugs.webkit.org/show_bug.cgi?id=99910 |
| |
| Unreviewed EFL gardening. |
| |
| Unskip the test cases about regressions after r130699 |
| fast/css/import-style-update.html |
| fast/events/attribute-listener-cloned-from-frameless-doc-context-2.html |
| fast/events/attribute-listener-cloned-from-frameless-doc-context.html |
| fast/events/attribute-listener-extracted-from-frameless-doc-context-2.html |
| fast/events/attribute-listener-extracted-from-frameless-doc-context.html |
| fast/html/link-rel-stylesheet.html |
| fast/loader/data-url-encoding-html.html |
| fast/loader/data-url-encoding-svg.html |
| fast/spatial-navigation/snav-iframe-nested.html |
| |
| It seems to be passing consistently now. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-19 Florin Malita <fmalita@chromium.org> |
| |
| Incorrect pattern scaling |
| https://bugs.webkit.org/show_bug.cgi?id=99870 |
| |
| Reviewed by Dirk Schulze. |
| |
| * platform/chromium-linux/svg/custom/js-late-pattern-creation-expected.png: |
| * platform/chromium-linux/svg/custom/pattern-scaling-expected.png: Added. |
| * platform/chromium-linux/svg/custom/pattern-scaling-expected.txt: Added. |
| * platform/chromium-linux/svg/custom/pattern-with-transformation-expected.png: |
| * platform/chromium-linux/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: |
| * platform/chromium-win/svg/custom/pattern-skew-transformed-expected.png: |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * svg/custom/pattern-scaling.svg: Added. |
| |
| 2012-10-19 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Marking platform/chromium/virtual/gpu/fast/canvas/webgl/array-bounds-clamping.html |
| failing on Chromium. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-19 Pablo Flouret <pablof@motorola.com> |
| |
| Implement setRangeText() on text controls |
| https://bugs.webkit.org/show_bug.cgi?id=91907 |
| |
| Reviewed by Kent Tamura. |
| |
| * fast/forms/color/color-setrangetext-expected.txt: Added. |
| * fast/forms/color/color-setrangetext.html: Added. |
| * fast/forms/date/date-setrangetext-expected.txt: Added. |
| * fast/forms/date/date-setrangetext.html: Added. |
| * fast/forms/datetime/datetime-setrangetext-expected.txt: Added. |
| * fast/forms/datetime/datetime-setrangetext.html: Added. |
| * fast/forms/datetimelocal/datetimelocal-setrangetext-expected.txt: Added. |
| * fast/forms/datetimelocal/datetimelocal-setrangetext.html: Added. |
| * fast/forms/file/file-setrangetext-expected.txt: Added. |
| * fast/forms/file/file-setrangetext.html: Added. |
| * fast/forms/hidden/hidden-setrangetext-expected.txt: Added. |
| * fast/forms/hidden/hidden-setrangetext.html: Added. |
| * fast/forms/image/image-setrangetext-expected.txt: Added. |
| * fast/forms/image/image-setrangetext.html: Added. |
| * fast/forms/month/month-setrangetext-expected.txt: Added. |
| * fast/forms/month/month-setrangetext.html: Added. |
| * fast/forms/number/number-setrangetext-expected.txt: Added. |
| * fast/forms/number/number-setrangetext.html: Added. |
| * fast/forms/range/range-setrangetext-expected.txt: Added. |
| * fast/forms/range/range-setrangetext.html: Added. |
| * fast/forms/resources/common-setrangetext.js: Added. |
| (runTestsShouldPass): |
| (runTestsShouldFail): |
| * fast/forms/search/search-setrangetext-expected.txt: Added. |
| * fast/forms/search/search-setrangetext.html: Added. |
| * fast/forms/setrangetext-expected.txt: Added. |
| * fast/forms/setrangetext.html: Added. |
| * fast/forms/textarea/textarea-setrangetext-expected.txt: Added. |
| * fast/forms/textarea/textarea-setrangetext.html: Added. |
| * fast/forms/time/time-setrangetext-expected.txt: Added. |
| * fast/forms/time/time-setrangetext.html: Added. |
| * fast/forms/week/week-setrangetext-expected.txt: Added. |
| * fast/forms/week/week-setrangetext.html: Added. |
| |
| 2012-10-19 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Hidden indexing events are visible to script via bubbling/capture |
| https://bugs.webkit.org/show_bug.cgi?id=96566 |
| |
| Reviewed by Tony Chang. |
| |
| Listen for unexpected events in both capture and bubble phases. |
| |
| * storage/indexeddb/resources/index-population.js: |
| (deleteSuccess): |
| (doSetVersion1): |
| (setVersion2): |
| |
| 2012-10-19 Simon Fraser <simon.fraser@apple.com> |
| |
| Fix a hang when combining tile cache layers with preserve-3d or reflections |
| https://bugs.webkit.org/show_bug.cgi?id=99890 |
| |
| Reviewed by Dean Jackson. |
| |
| Tests that combine tiled layers with preserve-3d and reflections. |
| |
| * compositing/tiling/preserve3d-tiled-expected.txt: Added. |
| * compositing/tiling/preserve3d-tiled.html: Added. |
| * compositing/tiling/reflected-tiled-expected.txt: Added. |
| * compositing/tiling/reflected-tiled.html: Added. |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-linux/platform/chromium/virtual/deferred: Added. |
| * platform/chromium-linux/platform/chromium/virtual/deferred/fast: Added. |
| * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images: Added. |
| * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Convert fast/innerHTML from pixel to ref tests |
| https://bugs.webkit.org/show_bug.cgi?id=99875 |
| |
| Reviewed by Dirk Pranke. |
| |
| * fast/innerHTML/001-expected.html: Added. |
| * fast/innerHTML/002-expected.html: Added. |
| * fast/innerHTML/003-expected.html: Added. |
| * fast/innerHTML/006-expected.html: Added. |
| * platform/chromium-linux/fast/innerHTML/001-expected.png: Removed. |
| * platform/chromium-linux/fast/innerHTML/002-expected.png: Removed. |
| * platform/chromium-linux/fast/innerHTML/003-expected.png: Removed. |
| * platform/chromium-linux/fast/innerHTML/006-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/001-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/002-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/003-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/fast/innerHTML/006-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/001-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/002-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/003-expected.png: Removed. |
| * platform/chromium-mac/fast/innerHTML/006-expected.png: Removed. |
| * platform/chromium-win/fast/innerHTML/001-expected.png: Removed. |
| * platform/chromium-win/fast/innerHTML/001-expected.txt: Removed. |
| * platform/chromium-win/fast/innerHTML/002-expected.png: Removed. |
| * platform/chromium-win/fast/innerHTML/002-expected.txt: Removed. |
| * platform/chromium-win/fast/innerHTML/003-expected.png: Removed. |
| * platform/chromium-win/fast/innerHTML/003-expected.txt: Removed. |
| * platform/chromium-win/fast/innerHTML/006-expected.png: Removed. |
| * platform/chromium-win/fast/innerHTML/006-expected.txt: Removed. |
| * platform/chromium/fast/innerHTML/001-expected.txt: Removed. |
| * platform/chromium/fast/innerHTML/002-expected.txt: Removed. |
| * platform/chromium/fast/innerHTML/003-expected.txt: Removed. |
| * platform/chromium/fast/innerHTML/006-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/001-expected.png: Removed. |
| * platform/efl/fast/innerHTML/001-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/002-expected.png: Removed. |
| * platform/efl/fast/innerHTML/002-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/003-expected.png: Removed. |
| * platform/efl/fast/innerHTML/003-expected.txt: Removed. |
| * platform/efl/fast/innerHTML/006-expected.png: Removed. |
| * platform/efl/fast/innerHTML/006-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/001-expected.png: Removed. |
| * platform/gtk/fast/innerHTML/001-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/002-expected.png: Removed. |
| * platform/gtk/fast/innerHTML/002-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/003-expected.png: Removed. |
| * platform/gtk/fast/innerHTML/003-expected.txt: Removed. |
| * platform/gtk/fast/innerHTML/006-expected.png: Removed. |
| * platform/gtk/fast/innerHTML/006-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/001-expected.png: Removed. |
| * platform/mac/fast/innerHTML/001-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/002-expected.png: Removed. |
| * platform/mac/fast/innerHTML/002-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/003-expected.png: Removed. |
| * platform/mac/fast/innerHTML/003-expected.txt: Removed. |
| * platform/mac/fast/innerHTML/006-expected.png: Removed. |
| * platform/mac/fast/innerHTML/006-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/001-expected.png: Removed. |
| * platform/qt/fast/innerHTML/001-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/002-expected.png: Removed. |
| * platform/qt/fast/innerHTML/002-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/003-expected.png: Removed. |
| * platform/qt/fast/innerHTML/003-expected.txt: Removed. |
| * platform/qt/fast/innerHTML/006-expected.png: Removed. |
| * platform/qt/fast/innerHTML/006-expected.txt: Removed. |
| |
| 2012-10-19 Chris Fleizach <cfleizach@apple.com> |
| |
| AX: aria-hidden=false does not work as expected |
| https://bugs.webkit.org/show_bug.cgi?id=98787 |
| |
| Reviewed by Beth Dakin. |
| |
| * accessibility/aria-hidden-negates-no-visibility.html: Added. |
| * platform/mac/accessibility/aria-hidden-negates-no-visibility-expected.txt: Added. |
| |
| 2012-10-19 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, fix lint error in Qt TestExpectations file. |
| |
| * platform/qt-5.0-wk1/TestExpectations: Remove duplicate skip entry. |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening, rebaselining deferred image tests for r131928. |
| |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/animated-gif-with-offsets-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/favicon-as-image-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/image-map-anchor-children-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-case-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/jpeg-with-color-profile-expected.png: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/png-with-color-profile-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/animated-gif-with-offsets-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/image-map-anchor-children-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-case-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/jpeg-with-color-profile-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/deferred/fast/images/png-with-color-profile-expected.png: Added. |
| |
| 2012-10-19 Csaba Osztrogonác <ossy@webkit.org> |
| |
| Unreviewed, rolling out r131915. |
| http://trac.webkit.org/changeset/131915 |
| https://bugs.webkit.org/show_bug.cgi?id=98787 |
| |
| It broke the build on platforms with \!HAVE(ACCESSIBILITY) |
| |
| * accessibility/aria-hidden-negates-no-visibility.html: Removed. |
| * platform/chromium/TestExpectations: |
| * platform/mac/accessibility/aria-hidden-negates-no-visibility-expected.txt: Removed. |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening, rebaselining deferred image tests for r131928. |
| |
| * platform/chromium-mac/platform/chromium/virtual/deferred: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/animated-gif-with-offsets-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/favicon-as-image-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/image-map-anchor-children-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-case-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/jpeg-with-color-profile-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/png-with-color-profile-expected.png: Added. |
| * platform/chromium-win/platform/chromium/virtual/deferred: Added. |
| * platform/chromium-win/platform/chromium/virtual/deferred/fast: Added. |
| * platform/chromium-win/platform/chromium/virtual/deferred/fast/images: Added. |
| * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. |
| |
| 2012-10-09 Martin Robinson <mrobinson@igalia.com> |
| |
| REGRESSION (r130699): 5 various fast/ tests started failing |
| https://bugs.webkit.org/show_bug.cgi?id=98729 |
| |
| Reviewed by Xan Lopez. |
| |
| Unskip some tests which are now passing. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Removed. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Removed. |
| * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: |
| |
| 2012-10-19 Joshua Bell <jsbell@chromium.org> |
| |
| [V8] IndexedDB: Crash when lazy-indexing Date keys |
| https://bugs.webkit.org/show_bug.cgi?id=99860 |
| |
| Reviewed by Adam Barth. |
| |
| Add test for greedy/lazy indexing all different key types. |
| |
| * storage/indexeddb/lazy-index-types-expected.txt: Added. |
| * storage/indexeddb/lazy-index-types.html: Added. |
| * storage/indexeddb/resources/lazy-index-types.js: Added. |
| (test.request.onsuccess): |
| (test): |
| (onSuccess.request.onsuccess): |
| (onSuccess): |
| (onComplete): |
| |
| 2012-10-18 Dean Jackson <dino@apple.com> |
| |
| Shader translator needs option to clamp uniform array accesses in vertex shaders |
| https://bugs.webkit.org/show_bug.cgi?id=98977 |
| https://code.google.com/p/angleproject/issues/detail?id=49 |
| |
| Reviewed by Alok Priyadarshi and Ken Russell. |
| |
| * fast/canvas/webgl/array-bounds-clamping-expected.txt: Added. |
| * fast/canvas/webgl/array-bounds-clamping.html: Added. |
| * platform/chromium/TestExpectations: Won't pass on Chromium until this patch is upstreamed. |
| |
| 2012-09-08 Alpha Lam <hclam@chromium.org> |
| |
| [chromium] Implement deferred image decoding |
| https://bugs.webkit.org/show_bug.cgi?id=94240 |
| |
| Reviewed by Stephen White. |
| |
| Adding a virtual test suite for Chromium to test deferred image |
| decoding. |
| |
| platform/chromium/virtual/deferred/fast/images will be tested with |
| --force-compositing --enable-per-tile-painting --enable-deferred-image-decoding. |
| |
| * platform/chromium/virtual/deferred/fast/images/README.txt: Added. |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-mac-lion/compositing/shadows: Added. |
| * platform/chromium-mac-lion/compositing/shadows/shadow-drawing-expected.png: Added. |
| * platform/chromium-mac-lion/css2.1: Added. |
| * platform/chromium-mac-lion/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Added. |
| * platform/chromium-mac-lion/css2.1/t090501-c414-flt-03-b-g-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. |
| * platform/chromium-mac-lion/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/block/float/032-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/input-baseline-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/input-placeholder-paint-order-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/placeholder-position-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/searchfield-heights-expected.png: Added. |
| * platform/chromium-mac-lion/fast/inline-block: Added. |
| * platform/chromium-mac-lion/fast/inline-block/contenteditable-baseline-expected.png: Added. |
| * platform/chromium-mac-lion/platform: Added. |
| * platform/chromium-mac-lion/platform/chromium: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/softwarecompositing: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/softwarecompositing/shadows: Added. |
| * platform/chromium-mac-lion/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-4-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug30692-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Added. |
| |
| 2012-10-19 Dongwoo Joshua Im <dw.im@samsung.com> |
| |
| Rename ENABLE_CSS3_TEXT_DECORATION to ENABLE_CSS3_TEXT |
| https://bugs.webkit.org/show_bug.cgi?id=99804 |
| |
| Reviewed by Julien Chaffraix. |
| |
| CSS3 text related properties will be implemented under this flag, |
| including text decoration, text-align-last, and text-justify. |
| |
| * platform/chromium/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-4.8/TestExpectations: |
| * platform/qt-mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-linux/fast/forms/placeholder-position-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/softwarecompositing: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/softwarecompositing/shadows: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Added. |
| |
| 2012-10-19 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium rebaseline for r131503. |
| |
| * fast/forms/input-baseline-expected.txt: Added. |
| * fast/forms/placeholder-position-expected.txt: Added. |
| * platform/chromium-linux-x86/fast/inline-block: Added. |
| * platform/chromium-linux-x86/fast/inline-block/contenteditable-baseline-expected.txt: Added. |
| * platform/chromium-linux-x86/fast/text/international: Added. |
| * platform/chromium-linux-x86/fast/text/international/vertical-text-glyph-test-expected.txt: Added. |
| * platform/chromium-linux/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-linux/fast/dom/HTMLProgressElement/progress-element-expected.png: |
| * platform/chromium-linux/fast/forms/007-expected.png: |
| * platform/chromium-linux/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-linux/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-linux/fast/forms/input-baseline-expected.txt: |
| * platform/chromium-linux/fast/forms/input-placeholder-paint-order-expected.png: |
| * platform/chromium-linux/fast/forms/placeholder-position-expected.png: |
| * platform/chromium-linux/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-linux/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-linux/fast/forms/searchfield-heights-expected.txt: |
| * platform/chromium-linux/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-marker-style-expected.png: |
| * platform/chromium-linux/fast/html/details-nested-1-expected.png: |
| * platform/chromium-linux/fast/html/details-nested-2-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-linux/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-linux/fast/html/details-open1-expected.png: |
| * platform/chromium-linux/fast/html/details-open2-expected.png: |
| * platform/chromium-linux/fast/html/details-open3-expected.png: |
| * platform/chromium-linux/fast/html/details-open4-expected.png: |
| * platform/chromium-linux/fast/html/details-open5-expected.png: |
| * platform/chromium-linux/fast/html/details-open6-expected.png: |
| * platform/chromium-linux/fast/html/details-position-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-linux/fast/html/details-replace-text-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-linux/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-linux/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-linux/fast/inline-block/contenteditable-baseline-expected.txt: Added. |
| * platform/chromium-linux/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-linux/fast/speech/input-appearance-searchandspeech-expected.txt: |
| * platform/chromium-linux/fast/text/international/vertical-text-glyph-test-expected.png: Added. |
| * platform/chromium-linux/fast/text/international/vertical-text-glyph-test-expected.txt: Added. |
| * platform/chromium-linux/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-mac-lion/css3: Added. |
| * platform/chromium-mac-lion/css3/flexbox: Added. |
| * platform/chromium-mac-lion/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/3690703-2-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/3690703-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/3690719-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/4397952-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/5240265-expected.png: Added. |
| * platform/chromium-mac-lion/editing/selection/selection-button-text-expected.png: Added. |
| * platform/chromium-mac-lion/fast: Added. |
| * platform/chromium-mac-lion/fast/block: Added. |
| * platform/chromium-mac-lion/fast/block/float: Added. |
| * platform/chromium-mac-lion/fast/block/float/float-avoidance-expected.png: Added. |
| * platform/chromium-mac-lion/fast/css: Added. |
| * platform/chromium-mac-lion/fast/css/continuationCrash-expected.png: Added. |
| * platform/chromium-mac-lion/fast/css/margin-top-bottom-dynamic-expected.png: Added. |
| * platform/chromium-mac-lion/fast/css/rtl-ordering-expected.png: Added. |
| * platform/chromium-mac-lion/fast/dom: Added. |
| * platform/chromium-mac-lion/fast/dom/HTMLProgressElement: Added. |
| * platform/chromium-mac-lion/fast/dom/HTMLProgressElement/progress-element-expected.png: Added. |
| * platform/chromium-mac-lion/fast/dom/HTMLProgressElement/progress-element-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/dom/HTMLTextAreaElement: Added. |
| * platform/chromium-mac-lion/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms: Added. |
| * platform/chromium-mac-lion/fast/forms/001-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/007-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/basic-buttons-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/blankbuttons-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/button-sizes-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/button-style-color-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/button-table-styles-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/button-text-transform-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/control-restrict-line-height-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/date: Added. |
| * platform/chromium-mac-lion/fast/forms/date/date-reset-value-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/file: Added. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-direction-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-disabled-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/file/file-input-pressed-state-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/file/input-file-re-render-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/form-element-geometry-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/formmove3-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/input-button-sizes-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/input-value-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/menulist-clip-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/search-vertical-alignment-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/targeted-frame-submission-expected.png: Added. |
| * platform/chromium-mac-lion/fast/forms/validation-message-appearance-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-child-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-child-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-details-child-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-details-child-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-1-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-10-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-10-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-2-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-3-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-3-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-4-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-4-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-5-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-5-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-6-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-6-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-7-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-7-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-8-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-8-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-9-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-9-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-child-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-add-summary-child-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-marker-style-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-nested-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-nested-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-no-summary1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-no-summary2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-no-summary3-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-no-summary4-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-open-javascript-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-open1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-open2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-open3-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-open4-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-open5-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-open6-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-position-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-child-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-child-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-1-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-2-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-3-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-3-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-4-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-4-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-5-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-5-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-6-and-click-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-6-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-child-1-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-remove-summary-child-2-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-replace-summary-child-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-replace-text-expected.png: Added. |
| * platform/chromium-mac-lion/fast/html/details-writing-mode-expected.png: Added. |
| * platform/chromium-mac-lion/fast/images: Added. |
| * platform/chromium-mac-lion/fast/images/imagemap-focus-ring-zoom-expected.png: Added. |
| * platform/chromium-mac-lion/fast/overflow: Added. |
| * platform/chromium-mac-lion/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Added. |
| * platform/chromium-mac-lion/fast/overflow/scrollRevealButton-expected.png: Added. |
| * platform/chromium-mac-lion/fast/replaced: Added. |
| * platform/chromium-mac-lion/fast/replaced/replaced-breaking-expected.png: Added. |
| * platform/chromium-mac-lion/fast/replaced/width100percent-button-expected.png: Added. |
| * platform/chromium-mac-lion/fast/speech: Added. |
| * platform/chromium-mac-lion/fast/sub-pixel: Added. |
| * platform/chromium-mac-lion/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: Added. |
| * platform/chromium-mac-lion/fast/text: Added. |
| * platform/chromium-mac-lion/fast/text/international: Added. |
| * platform/chromium-mac-lion/fast/text/international/vertical-text-glyph-test-expected.png: Added. |
| * platform/chromium-mac-lion/fast/text/international/vertical-text-glyph-test-expected.txt: Added. |
| * platform/chromium-mac-lion/fast/text/textIteratorNilRenderer-expected.png: Added. |
| * platform/chromium-mac-lion/fast/writing-mode: Added. |
| * platform/chromium-mac-lion/fast/writing-mode/fieldsets-expected.png: Added. |
| * platform/chromium-mac-lion/http: Added. |
| * platform/chromium-mac-lion/http/tests: Added. |
| * platform/chromium-mac-lion/http/tests/navigation: Added. |
| * platform/chromium-mac-lion/http/tests/navigation/javascriptlink-frames-expected.png: Added. |
| * platform/chromium-mac-lion/svg: Added. |
| * platform/chromium-mac-lion/svg/as-border-image: Added. |
| * platform/chromium-mac-lion/svg/as-border-image/svg-as-border-image-2-expected.png: Added. |
| * platform/chromium-mac-lion/svg/as-border-image/svg-as-border-image-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom: Added. |
| * platform/chromium-mac-lion/svg/zoom/page: Added. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: Added. |
| * platform/chromium-mac-lion/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Added. |
| * platform/chromium-mac-lion/tables: Added. |
| * platform/chromium-mac-lion/tables/mozilla: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1188-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug1318-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug138725-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug18359-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-2-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug2479-3-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug26178-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug28928-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug33855-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug39209-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug4429-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-1-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug46368-2-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51037-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug51727-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug60749-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/bugs/bug7342-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/collapsing_borders: Added. |
| * platform/chromium-mac-lion/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/dom: Added. |
| * platform/chromium-mac-lion/tables/mozilla/dom/tableDom-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla/other: Added. |
| * platform/chromium-mac-lion/tables/mozilla/other/move_row-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Added. |
| * platform/chromium-mac-lion/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Added. |
| * platform/chromium-mac-snowleopard/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/3690703-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/3690719-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/selection-button-text-expected.png: |
| * platform/chromium-mac-snowleopard/fast/block/float/float-avoidance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.png: |
| * platform/chromium-mac-snowleopard/fast/dom/HTMLProgressElement/progress-element-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/dom/HTMLProgressElement/progress-element-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/001-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/007-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date/date-reset-value-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-direction-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-disabled-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/input-file-re-render-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/form-element-geometry-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-value-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/menulist-clip-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/validation-message-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-nested-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-nested-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-position-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-replace-text-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: |
| * platform/chromium-mac-snowleopard/fast/overflow/scrollRevealButton-expected.png: |
| * platform/chromium-mac-snowleopard/fast/replaced/replaced-breaking-expected.png: |
| * platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.png: |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-mac-snowleopard/fast/text/textIteratorNilRenderer-expected.png: |
| * platform/chromium-mac-snowleopard/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-mac-snowleopard/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: |
| * platform/chromium-mac/compositing/shadows/shadow-drawing-expected.png: |
| * platform/chromium-mac/compositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: |
| * platform/chromium-mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: |
| * platform/chromium-mac/css2.1/t090501-c414-flt-03-b-g-expected.png: |
| * platform/chromium-mac/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.txt: |
| * platform/chromium-mac/editing/selection/3690703-2-expected.png: |
| * platform/chromium-mac/editing/selection/3690703-2-expected.txt: |
| * platform/chromium-mac/editing/selection/3690703-expected.png: |
| * platform/chromium-mac/editing/selection/3690703-expected.txt: |
| * platform/chromium-mac/editing/selection/3690719-expected.png: |
| * platform/chromium-mac/editing/selection/3690719-expected.txt: |
| * platform/chromium-mac/editing/selection/4397952-expected.png: |
| * platform/chromium-mac/editing/selection/4397952-expected.txt: |
| * platform/chromium-mac/editing/selection/5240265-expected.png: |
| * platform/chromium-mac/editing/selection/5240265-expected.txt: |
| * platform/chromium-mac/editing/selection/selection-button-text-expected.png: |
| * platform/chromium-mac/editing/selection/selection-button-text-expected.txt: |
| * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: |
| * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: |
| * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: |
| * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: |
| * platform/chromium-mac/fast/block/float/032-expected.png: |
| * platform/chromium-mac/fast/block/float/032-expected.txt: |
| * platform/chromium-mac/fast/block/float/float-avoidance-expected.png: |
| * platform/chromium-mac/fast/block/float/float-avoidance-expected.txt: |
| * platform/chromium-mac/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: |
| * platform/chromium-mac/fast/css/continuationCrash-expected.png: |
| * platform/chromium-mac/fast/css/continuationCrash-expected.txt: |
| * platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.txt: |
| * platform/chromium-mac/fast/css/rtl-ordering-expected.png: |
| * platform/chromium-mac/fast/css/rtl-ordering-expected.txt: |
| * platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: |
| * platform/chromium-mac/fast/forms/001-expected.png: |
| * platform/chromium-mac/fast/forms/001-expected.txt: |
| * platform/chromium-mac/fast/forms/007-expected.png: |
| * platform/chromium-mac/fast/forms/007-expected.txt: |
| * platform/chromium-mac/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-mac/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-mac/fast/forms/blankbuttons-expected.png: |
| * platform/chromium-mac/fast/forms/blankbuttons-expected.txt: |
| * platform/chromium-mac/fast/forms/button-sizes-expected.png: |
| * platform/chromium-mac/fast/forms/button-sizes-expected.txt: |
| * platform/chromium-mac/fast/forms/button-style-color-expected.png: |
| * platform/chromium-mac/fast/forms/button-style-color-expected.txt: |
| * platform/chromium-mac/fast/forms/button-table-styles-expected.png: |
| * platform/chromium-mac/fast/forms/button-table-styles-expected.txt: |
| * platform/chromium-mac/fast/forms/button-text-transform-expected.png: |
| * platform/chromium-mac/fast/forms/button-text-transform-expected.txt: |
| * platform/chromium-mac/fast/forms/control-restrict-line-height-expected.png: |
| * platform/chromium-mac/fast/forms/control-restrict-line-height-expected.txt: |
| * platform/chromium-mac/fast/forms/date/date-reset-value-expected.png: Added. |
| * platform/chromium-mac/fast/forms/file/file-input-direction-expected.png: |
| * platform/chromium-mac/fast/forms/file/file-input-direction-expected.txt: |
| * platform/chromium-mac/fast/forms/file/file-input-disabled-expected.png: |
| * platform/chromium-mac/fast/forms/file/file-input-disabled-expected.txt: |
| * platform/chromium-mac/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/chromium-mac/fast/forms/file/input-file-re-render-expected.png: |
| * platform/chromium-mac/fast/forms/file/input-file-re-render-expected.txt: |
| * platform/chromium-mac/fast/forms/form-element-geometry-expected.png: |
| * platform/chromium-mac/fast/forms/form-element-geometry-expected.txt: |
| * platform/chromium-mac/fast/forms/formmove3-expected.png: |
| * platform/chromium-mac/fast/forms/formmove3-expected.txt: |
| * platform/chromium-mac/fast/forms/input-baseline-expected.png: |
| * platform/chromium-mac/fast/forms/input-button-sizes-expected.png: |
| * platform/chromium-mac/fast/forms/input-button-sizes-expected.txt: |
| * platform/chromium-mac/fast/forms/input-placeholder-paint-order-expected.png: |
| * platform/chromium-mac/fast/forms/input-value-expected.png: |
| * platform/chromium-mac/fast/forms/input-value-expected.txt: |
| * platform/chromium-mac/fast/forms/menulist-clip-expected.png: |
| * platform/chromium-mac/fast/forms/menulist-clip-expected.txt: |
| * platform/chromium-mac/fast/forms/placeholder-position-expected.png: |
| * platform/chromium-mac/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-mac/fast/forms/search-vertical-alignment-expected.txt: |
| * platform/chromium-mac/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-mac/fast/forms/targeted-frame-submission-expected.png: |
| * platform/chromium-mac/fast/forms/targeted-frame-submission-expected.txt: |
| * platform/chromium-mac/fast/forms/validation-message-appearance-expected.png: |
| * platform/chromium-mac/fast/forms/validation-message-appearance-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-details-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-details-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-10-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-3-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-4-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-5-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-6-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-7-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-8-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-9-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-marker-style-expected.png: |
| * platform/chromium-mac/fast/html/details-marker-style-expected.txt: |
| * platform/chromium-mac/fast/html/details-nested-1-expected.png: |
| * platform/chromium-mac/fast/html/details-nested-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-nested-2-expected.png: |
| * platform/chromium-mac/fast/html/details-nested-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary1-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary2-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary3-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary4-expected.txt: |
| * platform/chromium-mac/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-mac/fast/html/details-open-javascript-expected.txt: |
| * platform/chromium-mac/fast/html/details-open1-expected.png: |
| * platform/chromium-mac/fast/html/details-open1-expected.txt: |
| * platform/chromium-mac/fast/html/details-open2-expected.png: |
| * platform/chromium-mac/fast/html/details-open2-expected.txt: |
| * platform/chromium-mac/fast/html/details-open3-expected.png: |
| * platform/chromium-mac/fast/html/details-open3-expected.txt: |
| * platform/chromium-mac/fast/html/details-open4-expected.png: |
| * platform/chromium-mac/fast/html/details-open4-expected.txt: |
| * platform/chromium-mac/fast/html/details-open5-expected.png: |
| * platform/chromium-mac/fast/html/details-open5-expected.txt: |
| * platform/chromium-mac/fast/html/details-open6-expected.png: |
| * platform/chromium-mac/fast/html/details-open6-expected.txt: |
| * platform/chromium-mac/fast/html/details-position-expected.png: |
| * platform/chromium-mac/fast/html/details-position-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-mac/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-mac/fast/html/details-replace-text-expected.png: |
| * platform/chromium-mac/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-mac/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-mac/fast/html/details-writing-mode-expected.txt: |
| * platform/chromium-mac/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-mac/fast/images/imagemap-focus-ring-zoom-expected.txt: |
| * platform/chromium-mac/fast/inline-block/contenteditable-baseline-expected.png: |
| * platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: |
| * platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt: |
| * platform/chromium-mac/fast/overflow/scrollRevealButton-expected.png: |
| * platform/chromium-mac/fast/overflow/scrollRevealButton-expected.txt: |
| * platform/chromium-mac/fast/replaced/replaced-breaking-expected.png: |
| * platform/chromium-mac/fast/replaced/replaced-breaking-expected.txt: |
| * platform/chromium-mac/fast/replaced/width100percent-button-expected.png: |
| * platform/chromium-mac/fast/replaced/width100percent-button-expected.txt: |
| * platform/chromium-mac/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-mac/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: |
| * platform/chromium-mac/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.txt: |
| * platform/chromium-mac/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-mac/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-mac/fast/text/textIteratorNilRenderer-expected.png: |
| * platform/chromium-mac/fast/text/textIteratorNilRenderer-expected.txt: |
| * platform/chromium-mac/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-mac/fast/writing-mode/fieldsets-expected.txt: |
| * platform/chromium-mac/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/chromium-mac/http/tests/navigation/javascriptlink-frames-expected.txt: |
| * platform/chromium-mac/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-2-expected.txt: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-4-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-4-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.txt: |
| * platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.png: |
| * platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: |
| * platform/chromium-mac/tables/mozilla/dom/tableDom-expected.png: |
| * platform/chromium-mac/tables/mozilla/dom/tableDom-expected.txt: |
| * platform/chromium-mac/tables/mozilla/other/move_row-expected.png: |
| * platform/chromium-mac/tables/mozilla/other/move_row-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: |
| * platform/chromium-win-xp/fast/inline-block/contenteditable-baseline-expected.txt: Added. |
| * platform/chromium-win-xp/fast/text/international/vertical-text-glyph-test-expected.png: Added. |
| * platform/chromium-win-xp/fast/text/international/vertical-text-glyph-test-expected.txt: Added. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Removed. |
| * platform/chromium-win/compositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-win/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: |
| * platform/chromium-win/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.txt: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: |
| * platform/chromium-win/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: |
| * platform/chromium-win/fast/dom/HTMLProgressElement/progress-element-expected.png: |
| * platform/chromium-win/fast/forms/007-expected.png: |
| * platform/chromium-win/fast/forms/007-expected.txt: |
| * platform/chromium-win/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-win/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-win/fast/forms/placeholder-position-expected.txt: |
| * platform/chromium-win/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-win/fast/forms/search-vertical-alignment-expected.txt: |
| * platform/chromium-win/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-win/fast/forms/searchfield-heights-expected.txt: |
| * platform/chromium-win/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-details-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-details-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-10-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-3-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-4-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-5-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-6-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-7-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-8-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-9-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-marker-style-expected.png: |
| * platform/chromium-win/fast/html/details-marker-style-expected.txt: |
| * platform/chromium-win/fast/html/details-nested-1-expected.png: |
| * platform/chromium-win/fast/html/details-nested-1-expected.txt: |
| * platform/chromium-win/fast/html/details-nested-2-expected.png: |
| * platform/chromium-win/fast/html/details-nested-2-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary1-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary2-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary3-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary4-expected.txt: |
| * platform/chromium-win/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-win/fast/html/details-open-javascript-expected.txt: |
| * platform/chromium-win/fast/html/details-open1-expected.png: |
| * platform/chromium-win/fast/html/details-open1-expected.txt: |
| * platform/chromium-win/fast/html/details-open2-expected.png: |
| * platform/chromium-win/fast/html/details-open2-expected.txt: |
| * platform/chromium-win/fast/html/details-open3-expected.png: |
| * platform/chromium-win/fast/html/details-open3-expected.txt: |
| * platform/chromium-win/fast/html/details-open4-expected.png: |
| * platform/chromium-win/fast/html/details-open4-expected.txt: |
| * platform/chromium-win/fast/html/details-open5-expected.png: |
| * platform/chromium-win/fast/html/details-open5-expected.txt: |
| * platform/chromium-win/fast/html/details-open6-expected.png: |
| * platform/chromium-win/fast/html/details-open6-expected.txt: |
| * platform/chromium-win/fast/html/details-position-expected.png: |
| * platform/chromium-win/fast/html/details-position-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-2-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-3-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-4-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-5-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-6-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-win/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-win/fast/html/details-replace-text-expected.png: |
| * platform/chromium-win/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-win/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-win/fast/html/details-writing-mode-expected.txt: |
| * platform/chromium-win/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-win/fast/images/imagemap-focus-ring-zoom-expected.txt: |
| * platform/chromium-win/fast/inline-block/contenteditable-baseline-expected.txt: |
| * platform/chromium-win/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-win/fast/speech/input-appearance-searchandspeech-expected.txt: |
| * platform/chromium-win/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-win/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-win/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-win/fast/writing-mode/fieldsets-expected.txt: |
| * platform/chromium-win/platform/chromium/virtual/softwarecompositing: Added. |
| * platform/chromium-win/platform/chromium/virtual/softwarecompositing/shadows: Added. |
| * platform/chromium-win/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.txt: Added. |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-2-expected.txt: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug30692-expected.txt: |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.txt: Replaced. |
| * platform/chromium/fast/forms/input-baseline-expected.txt: Removed. |
| * platform/chromium/fast/forms/placeholder-position-expected.txt: Removed. |
| * platform/mac/fast/forms/input-baseline-expected.txt: Removed. |
| * platform/mac/fast/forms/placeholder-position-expected.txt: Removed. |
| |
| 2012-10-19 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Fixing a lint issue. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-19 Chris Fleizach <cfleizach@apple.com> |
| |
| AX: aria-hidden=false does not work as expected |
| https://bugs.webkit.org/show_bug.cgi?id=98787 |
| |
| Reviewed by Beth Dakin. |
| |
| * accessibility/aria-hidden-negates-no-visibility.html: Added. |
| * platform/mac/accessibility/aria-hidden-negates-no-visibility-expected.txt: Added. |
| |
| 2012-10-19 Shinya Kawanaka <shinyak@chromium.org> |
| |
| Elements assigned to <shadow> should not be reprojected. |
| https://bugs.webkit.org/show_bug.cgi?id=99680 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/content-reprojection-complex-expected.html: Added. |
| * fast/dom/shadow/content-reprojection-complex.html: Added. |
| * fast/dom/shadow/content-reprojection-shadow-expected.html: Added. |
| * fast/dom/shadow/content-reprojection-shadow.html: Added. |
| * fast/dom/shadow/shadow-reprojection-prohibited-expected.html: Added. |
| * fast/dom/shadow/shadow-reprojection-prohibited.html: Added. |
| |
| 2012-10-19 Pan Deng <pan.deng@intel.com> |
| |
| Fix incorrect User Timing test case path in TestExpectations of qt-5.0-wk2 platform. |
| https://bugs.webkit.org/show_bug.cgi?id=99811. |
| |
| Reviewed by Tony Gentilcore. |
| |
| Path 'http/tests/w3c/webperf/proposal/Intel/user-timing' is replaced by 'http/tests/w3c/webperf/submission/Intel/user-timing' in this patch. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-19 Chris Fleizach <cfleizach@apple.com> |
| |
| VO issues with hidden <legend> and last explicitly labelled element within a group <fieldset> |
| https://bugs.webkit.org/show_bug.cgi?id=96325 |
| |
| Reviewed by Beth Dakin. |
| |
| * accessibility/hidden-legend-expected.txt: Added. |
| * accessibility/hidden-legend.html: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-19 Shinya Kawanaka <shinyak@chromium.org> |
| |
| Should have a test case where InsertionPoint has a ShadowRoot. |
| https://bugs.webkit.org/show_bug.cgi?id=99822 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| We didn't have a test case where InsertionPoint has a ShadowRoot. Let's have it not to cause a regression. |
| |
| * fast/dom/shadow/shadowroot-of-insertionpoint-expected.html: Added. |
| * fast/dom/shadow/shadowroot-of-insertionpoint.html: Added. |
| |
| 2012-10-19 Chris Fleizach <cfleizach@apple.com> |
| |
| AX: Refactor accessibility name computation so it's more platform independent |
| https://bugs.webkit.org/show_bug.cgi?id=99502 |
| |
| Reviewed by Beth Dakin. |
| |
| Update a test to reflect change in what shoud be recognized as a title. |
| |
| * platform/mac/accessibility/aria-radiobutton-text.html: |
| |
| 2012-10-19 Zan Dobersek <zandobersek@gmail.com> |
| |
| [WK2][GTK] Fullscreen tests timing out in bots |
| https://bugs.webkit.org/show_bug.cgi?id=93973 |
| |
| Reviewed by Philippe Normand. |
| |
| Remove failure expectations for the fullscreen tests. They all pass now, |
| with a pass expectation needed for one test to aknowledge that. |
| |
| * platform/gtk-wk2/TestExpectations: |
| |
| 2012-10-19 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Test expectation update |
| http://webkit.org/b/99818 |
| |
| month-multiple-fields-keyboard-events.html is failing on SnowLeopard too. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-19 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel rebaseline. |
| |
| Part 7. |
| Rebaseline the rest of pixel results. All of these tests producing correct results, |
| only the expectations were outdated. Most of the differenes was not detectable by |
| looking at the expected and actual results, only ImageDiff sees the difference. |
| |
| * platform/qt/http/tests/misc/acid2-expected.png: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug101674-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug10269-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug10633-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug1067-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug113235-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug126742-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug1302-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug137388-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug1430-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug17130-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug17130-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug22019-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug23235-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2479-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2479-4-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2886-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2947-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2962-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug6404-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug73321-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug86708-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug8950-expected.png: |
| * platform/qt/tables/mozilla/collapsing_borders/bug41262-3-expected.png: |
| * platform/qt/tables/mozilla/core/bloomberg-expected.png: |
| * platform/qt/tables/mozilla/core/col_widths_auto_autoFix-expected.png: |
| * platform/qt/tables/mozilla/core/one_row-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_index-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_layers-opacity-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_position-table-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-cell-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-column-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-row-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png: |
| * platform/qt/tables/mozilla/marvin/tbody_valign_baseline-expected.png: |
| * platform/qt/tables/mozilla/marvin/tbody_valign_bottom-expected.png: |
| * platform/qt/tables/mozilla/marvin/tbody_valign_middle-expected.png: |
| * platform/qt/tables/mozilla/marvin/tbody_valign_top-expected.png: |
| * platform/qt/tables/mozilla/marvin/td_valign_baseline-expected.png: |
| * platform/qt/tables/mozilla/marvin/td_valign_bottom-expected.png: |
| * platform/qt/tables/mozilla/marvin/td_valign_middle-expected.png: |
| * platform/qt/tables/mozilla/marvin/td_valign_top-expected.png: |
| * platform/qt/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: |
| * platform/qt/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: |
| * platform/qt/tables/mozilla/marvin/tfoot_valign_middle-expected.png: |
| * platform/qt/tables/mozilla/marvin/tfoot_valign_top-expected.png: |
| * platform/qt/tables/mozilla/marvin/th_valign_baseline-expected.png: |
| * platform/qt/tables/mozilla/marvin/th_valign_bottom-expected.png: |
| * platform/qt/tables/mozilla/marvin/th_valign_middle-expected.png: |
| * platform/qt/tables/mozilla/marvin/th_valign_top-expected.png: |
| * platform/qt/tables/mozilla/marvin/thead_valign_baseline-expected.png: |
| * platform/qt/tables/mozilla/marvin/thead_valign_bottom-expected.png: |
| * platform/qt/tables/mozilla/marvin/thead_valign_middle-expected.png: |
| * platform/qt/tables/mozilla/marvin/thead_valign_top-expected.png: |
| * platform/qt/tables/mozilla/marvin/tr_valign_baseline-expected.png: |
| * platform/qt/tables/mozilla/marvin/tr_valign_bottom-expected.png: |
| * platform/qt/tables/mozilla/marvin/tr_valign_middle-expected.png: |
| * platform/qt/tables/mozilla/marvin/tr_valign_top-expected.png: |
| * platform/qt/tables/mozilla/other/cell_widths-expected.png: |
| * platform/qt/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: |
| * platform/qt/tables/mozilla/other/wa_table_tr_align-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug1010-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png: |
| * platform/qt/transforms/3d/general/matrix-with-zoom-3d-expected.png: Copied from LayoutTests/platform/qt/tables/mozilla/bugs/bug1067-2-expected.png. |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-2-expected.png: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png: Added. |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-deep-expected.png: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-expected.png: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: Added. |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: |
| * platform/qt/transitions/suspend-transform-transition-expected.png: Copied from LayoutTests/platform/qt/tables/mozilla/bugs/bug1067-2-expected.png. |
| |
| 2012-10-19 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel rebaseline. |
| |
| Part 6. |
| Rebaseline pixel results in the svg directory. |
| All of these tests producing correct results, only the expectations |
| were outdated. Most of the differenes was not detectable by looking |
| at the expected and actual results, only ImageDiff sees the difference. |
| |
| * platform/qt/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-04-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-05-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-06-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-07-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-09-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-10-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-11-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-12-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-14-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-15-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-16-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-17-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-18-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/animate-elem-19-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/filters-color-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/filters-light-01-f-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/interact-events-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/interact-order-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/interact-order-02-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/interact-order-03-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/masking-path-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/masking-path-02-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/masking-path-03-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/masking-path-04-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/painting-fill-02-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/painting-fill-03-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/script-handle-04-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/struct-dom-04-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/struct-dom-05-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/struct-image-02-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/struct-image-10-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-align-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-align-02-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-align-03-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-align-04-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-align-06-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-fonts-02-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-path-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-spacing-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-text-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-text-03-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-text-07-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-tselect-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-tspan-01-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-ws-01-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/text-ws-02-t-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png: |
| * platform/qt/svg/animations/animateMotion-additive-2c-expected.png: Added. |
| * platform/qt/svg/animations/animateMotion-additive-2d-expected.png: Added. |
| * platform/qt/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/qt/svg/as-image/img-preserveAspectRatio-support-1-expected.png: |
| * platform/qt/svg/as-image/img-preserveAspectRatio-support-2-expected.png: |
| * platform/qt/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png: |
| * platform/qt/svg/css/text-shadow-multiple-expected.png: |
| * platform/qt/svg/custom/absolute-sized-content-with-resources-expected.png: |
| * platform/qt/svg/custom/altglyph-expected.png: |
| * platform/qt/svg/custom/focus-ring-expected.png: |
| * platform/qt/svg/custom/glyph-selection-lang-attribute-expected.png: |
| * platform/qt/svg/custom/gradient-stroke-width-expected.png: |
| * platform/qt/svg/custom/grayscale-gradient-mask-2-expected.png: |
| * platform/qt/svg/custom/grayscale-gradient-mask-expected.png: |
| * platform/qt/svg/custom/image-rescale-expected.png: |
| * platform/qt/svg/custom/image-small-width-height-expected.png: |
| * platform/qt/svg/custom/relative-sized-image-expected.png: |
| * platform/qt/svg/custom/text-rotation-expected.png: |
| * platform/qt/svg/dom/css-transforms-expected.png: |
| * platform/qt/svg/filters/feDropShadow-expected.png: |
| * platform/qt/svg/filters/filterRes1-expected.png: |
| * platform/qt/svg/filters/filterRes3-expected.png: |
| * platform/qt/svg/hixie/perf/004-expected.png: |
| * platform/qt/svg/hixie/use/002-expected.png: |
| * platform/qt/svg/text/multichar-glyph-expected.png: |
| * platform/qt/svg/text/select-textLength-spacing-squeeze-1-expected.png: |
| * platform/qt/svg/text/select-textLength-spacing-squeeze-2-expected.png: |
| * platform/qt/svg/text/select-textLength-spacing-squeeze-4-expected.png: |
| * platform/qt/svg/text/select-textLength-spacing-stretch-2-expected.png: |
| * platform/qt/svg/text/select-textLength-spacing-stretch-3-expected.png: |
| * platform/qt/svg/text/select-textLength-spacing-stretch-4-expected.png: |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png: |
| * platform/qt/svg/text/select-x-list-2-expected.png: |
| * platform/qt/svg/text/select-x-list-3-expected.png: |
| * platform/qt/svg/text/select-x-list-4-expected.png: |
| * platform/qt/svg/text/select-x-list-with-tspans-2-expected.png: |
| * platform/qt/svg/text/select-x-list-with-tspans-3-expected.png: |
| * platform/qt/svg/text/select-x-list-with-tspans-4-expected.png: |
| * platform/qt/svg/text/selection-doubleclick-expected.png: |
| * platform/qt/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: |
| * platform/qt/svg/transforms/text-with-pattern-with-svg-transform-expected.png: |
| * platform/qt/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/qt/svg/zoom/page/zoom-mask-with-percentages-expected.png: |
| * platform/qt/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/qt/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| |
| 2012-10-19 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel rebaseline. |
| |
| Part 5. |
| Rebaseline pixel results the rest of the fast directory. |
| All of these tests producing correct results, only the expectations |
| were outdated. Most of the differenes was not detectable by looking |
| at the expected and actual results, only ImageDiff sees the difference. |
| |
| * platform/qt/fast/dom/Element/class-attribute-whitespace-expected.png: |
| * platform/qt/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.png: |
| * platform/qt/fast/dom/children-nodes-expected.png: |
| * platform/qt/fast/dom/clone-node-dynamic-style-expected.png: |
| * platform/qt/fast/dynamic/create-renderer-for-whitespace-only-text-expected.png: |
| * platform/qt/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.png: |
| * platform/qt/fast/dynamic/insert-before-table-part-in-continuation-expected.png: |
| * platform/qt/fast/dynamic/selection-highlight-adjust-expected.png: |
| * platform/qt/fast/dynamic/staticY-marking-parents-regression-expected.png: |
| * platform/qt/fast/dynamic/window-resize-scrollbars-test-expected.png: |
| * platform/qt/fast/events/pointer-events-2-expected.png: |
| * platform/qt/fast/forms/listbox-scrollbar-incremental-load-expected.png: |
| * platform/qt/fast/forms/select-change-listbox-size-expected.png: |
| * platform/qt/fast/images/color-jpeg-with-color-profile-expected.png: |
| * platform/qt/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: |
| * platform/qt/fast/inline/br-text-decoration-expected.png: |
| * platform/qt/fast/inline/continuation-outlines-expected.png: |
| * platform/qt/fast/inline/inline-borders-with-bidi-override-expected.png: |
| * platform/qt/fast/inline/inline-box-background-expected.png: |
| * platform/qt/fast/inline/inline-box-background-long-image-expected.png: |
| * platform/qt/fast/inline/inline-box-background-repeat-x-expected.png: |
| * platform/qt/fast/inline/inline-box-background-repeat-y-expected.png: |
| * platform/qt/fast/layers/normal-flow-hit-test-expected.png: |
| * platform/qt/fast/layers/opacity-outline-expected.png: |
| * platform/qt/fast/layers/scroll-rect-to-visible-expected.png: |
| * platform/qt/fast/line-grid/line-grid-contains-value-expected.png: |
| * platform/qt/fast/line-grid/line-grid-inside-columns-expected.png: |
| * platform/qt/fast/line-grid/line-grid-into-columns-expected.png: |
| * platform/qt/fast/lists/003-expected.png: |
| * platform/qt/fast/lists/003-vertical-expected.png: |
| * platform/qt/fast/lists/marker-before-empty-inline-expected.png: |
| * platform/qt/fast/lists/marker-image-error-expected.png: |
| * platform/qt/fast/lists/markers-in-selection-expected.png: |
| * platform/qt/fast/lists/ordered-list-with-no-ol-tag-expected.png: |
| * platform/qt/fast/lists/scrolled-marker-paint-expected.png: |
| * platform/qt/fast/multicol/column-rules-expected.png: |
| * platform/qt/fast/multicol/column-rules-stacking-expected.png: |
| * platform/qt/fast/multicol/columns-shorthand-parsing-expected.png: |
| * platform/qt/fast/multicol/float-multicol-expected.png: |
| * platform/qt/fast/multicol/nested-columns-expected.png: |
| * platform/qt/fast/multicol/overflow-across-columns-percent-height-expected.png: |
| * platform/qt/fast/multicol/positioned-with-constrained-height-expected.png: |
| * platform/qt/fast/multicol/span/anonymous-style-inheritance-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: |
| * platform/qt/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.png: |
| * platform/qt/fast/multicol/span/span-as-nested-columns-child-expected.png: |
| * platform/qt/fast/multicol/span/span-margin-collapsing-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/column-rules-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/nested-columns-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/column-rules-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/nested-columns-expected.png: |
| * platform/qt/fast/overflow/hit-test-overflow-controls-expected.png: |
| * platform/qt/fast/overflow/image-selection-highlight-expected.png: |
| * platform/qt/fast/overflow/overflow-focus-ring-expected.png: |
| * platform/qt/fast/overflow/overflow-rtl-inline-scrollbar-expected.png: |
| * platform/qt/fast/overflow/paged-x-div-expected.png: |
| * platform/qt/fast/overflow/paged-x-on-root-expected.png: |
| * platform/qt/fast/overflow/paged-y-div-expected.png: |
| * platform/qt/fast/overflow/paged-y-on-root-expected.png: |
| * platform/qt/fast/overflow/position-fixed-transform-clipping-expected.png: |
| * platform/qt/fast/reflections/reflection-direction-expected.png: |
| * platform/qt/fast/reflections/reflection-with-zoom-expected.png: |
| * platform/qt/fast/regions/percentage-margins-mixed-ltr-dominant-regions-expected.png: |
| * platform/qt/fast/regions/percentage-margins-mixed-rtl-dominant-regions-expected.png: |
| * platform/qt/fast/regions/percentage-margins-rtl-variable-width-regions-expected.png: |
| * platform/qt/fast/regions/percentage-margins-variable-width-regions-expected.png: |
| * platform/qt/fast/repaint/float-overflow-expected.png: |
| * platform/qt/fast/repaint/float-overflow-right-expected.png: |
| * platform/qt/fast/repaint/overflow-scroll-body-appear-expected.png: |
| * platform/qt/fast/replaced/001-expected.png: |
| * platform/qt/fast/replaced/002-expected.png: |
| * platform/qt/fast/replaced/003-expected.png: |
| * platform/qt/fast/replaced/absolute-image-sizing-expected.png: |
| * platform/qt/fast/replaced/image-sizing-expected.png: |
| * platform/qt/fast/replaced/inline-box-wrapper-handover-expected.png: |
| * platform/qt/fast/replaced/selection-rect-in-table-cell-expected.png: |
| * platform/qt/fast/ruby/ruby-block-style-not-updated-expected.png: Added. |
| * platform/qt/fast/ruby/ruby-block-style-not-updated-with-before-after-content-expected.png: Added. |
| * platform/qt/fast/ruby/ruby-inline-style-not-updated-expected.png: Added. |
| * platform/qt/fast/ruby/ruby-inline-style-not-updated-with-before-after-content-expected.png: Added. |
| * platform/qt/fast/selectors/166-expected.png: |
| * platform/qt/fast/table/border-collapsing/004-expected.png: |
| * platform/qt/fast/table/border-collapsing/004-vertical-expected.png: |
| * platform/qt/fast/table/border-collapsing/rtl-border-collapsing-expected.png: |
| * platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png: |
| * platform/qt/fast/table/edge-offsets-expected.png: |
| * platform/qt/fast/table/fixed-with-auto-with-colspan-vertical-expected.png: |
| * platform/qt/fast/table/frame-and-rules-expected.png: |
| * platform/qt/fast/table/prepend-in-anonymous-table-expected.png: |
| * platform/qt/fast/table/table-row-style-not-updated-expected.png: Added. |
| * platform/qt/fast/table/table-row-style-not-updated-with-before-content-expected.png: Added. |
| * platform/qt/fast/table/table-style-not-updated-expected.png: Added. |
| * platform/qt/fast/text/backslash-to-yen-sign-euc-expected.png: |
| * platform/qt/fast/text/break-word-expected.png: |
| * platform/qt/fast/text/capitalize-empty-generated-string-expected.png: |
| * platform/qt/fast/text/capitalize-preserve-nbsp-expected.png: |
| * platform/qt/fast/text/delete-hard-break-character-expected.png: |
| * platform/qt/fast/text/hyphenate-limit-lines-expected.png: |
| * platform/qt/fast/text/midword-break-hang-expected.png: |
| * platform/qt/fast/text/reset-emptyRun-expected.png: |
| * platform/qt/fast/text/selection-hard-linebreak-expected.png: |
| * platform/qt/fast/text/stroking-decorations-expected.png: |
| * platform/qt/fast/text/text-letter-spacing-expected.png: |
| * platform/qt/fast/text/wbr-expected.png: |
| * platform/qt/fast/text/whitespace/018-expected.png: |
| * platform/qt/fast/text/whitespace/normal-after-nowrap-breaking-expected.png: |
| * platform/qt/fast/text/whitespace/pre-wrap-overflow-selection-expected.png: |
| * platform/qt/fast/transforms/shadows-expected.png: |
| * platform/qt/fast/transforms/transformed-caret-expected.png: |
| * platform/qt/fast/transforms/transforms-with-zoom-expected.png: |
| * platform/qt/fast/writing-mode/box-shadow-vertical-rl-expected.png: |
| * platform/qt/fast/writing-mode/english-lr-text-expected.png: |
| |
| 2012-10-19 Kent Tamura <tkent@chromium.org> |
| |
| Use Localizer::monthFormat to construct input[type=month] UI |
| https://bugs.webkit.org/show_bug.cgi?id=99818 |
| |
| Reviewed by Kentaro Hara. |
| |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.txt: Added. |
| * fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n.html: Added. |
| * fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events-expected.txt: |
| * fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events.html: |
| Updated because symbolic month fields don't support digit-key input. |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-19 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: inspector/styles/styles-history.html is failing Text on Windows and Linux |
| https://bugs.webkit.org/show_bug.cgi?id=99519 |
| |
| Reviewed by Alexander Pavlov. |
| |
| * inspector/styles/styles-history.html: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-19 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed pixel rebase. |
| |
| Part 4. |
| Rebaseline pixel results in first part of fast (backgrounds, block, borders, |
| box-shadow, css). All of these tests producing correct results, only the expectations |
| were outdated. Most of the differenes was not detectable by looking at the expected |
| and actual results, only ImageDiff sees the difference. |
| |
| * platform/qt/fast/backgrounds/background-inherit-color-bug-expected.png: |
| * platform/qt/fast/backgrounds/background-position-parsing-expected.png: |
| * platform/qt/fast/backgrounds/body-generated-image-propagated-to-root-expected.png: |
| * platform/qt/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: |
| * platform/qt/fast/backgrounds/repeat/negative-offset-repeat-expected.png: |
| * platform/qt/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: |
| * platform/qt/fast/backgrounds/size/backgroundSize15-expected.png: |
| * platform/qt/fast/backgrounds/size/backgroundSize16-expected.png: |
| * platform/qt/fast/backgrounds/size/contain-and-cover-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: |
| * platform/qt/fast/block/basic/adding-near-anonymous-block-expected.png: |
| * platform/qt/fast/block/basic/truncation-rtl-expected.png: |
| * platform/qt/fast/block/float/002-expected.png: |
| * platform/qt/fast/block/float/020-expected.png: |
| * platform/qt/fast/block/float/centered-float-avoidance-complexity-expected.png: |
| * platform/qt/fast/block/float/float-in-float-painting-expected.png: |
| * platform/qt/fast/block/float/intruding-painted-twice-expected.png: |
| * platform/qt/fast/block/float/nopaint-after-layer-destruction-expected.png: |
| * platform/qt/fast/block/float/nopaint-after-layer-destruction2-expected.png: |
| * platform/qt/fast/block/float/table-relayout-expected.png: |
| * platform/qt/fast/block/float/vertical-move-relayout-expected.png: |
| * platform/qt/fast/block/margin-collapse/055-expected.png: |
| * platform/qt/fast/block/positioning/absolute-in-inline-ltr-3-expected.png: |
| * platform/qt/fast/block/positioning/absolute-in-inline-short-ltr-expected.png: |
| * platform/qt/fast/block/positioning/absolute-in-inline-short-rtl-expected.png: |
| * platform/qt/fast/block/positioning/auto/007-expected.png: |
| * platform/qt/fast/block/positioning/auto/vertical-lr/007-expected.png: |
| * platform/qt/fast/block/positioning/auto/vertical-rl/007-expected.png: |
| * platform/qt/fast/borders/border-image-01-expected.png: |
| * platform/qt/fast/borders/border-image-border-radius-expected.png: |
| * platform/qt/fast/borders/border-image-longhand-expected.png: |
| * platform/qt/fast/borders/border-image-massive-scale-expected.png: |
| * platform/qt/fast/borders/border-image-outset-expected.png: |
| * platform/qt/fast/borders/border-image-outset-in-shorthand-expected.png: |
| * platform/qt/fast/borders/border-image-repeat-expected.png: |
| * platform/qt/fast/borders/border-image-rotate-transform-expected.png: |
| * platform/qt/fast/borders/border-image-scale-transform-expected.png: |
| * platform/qt/fast/borders/border-image-scaled-expected.png: |
| * platform/qt/fast/borders/border-image-scrambled-expected.png: |
| * platform/qt/fast/borders/border-image-side-reduction-expected.png: |
| * platform/qt/fast/borders/border-image-source-expected.png: |
| * platform/qt/fast/borders/border-mixed-alpha-expected.png: |
| * platform/qt/fast/borders/border-radius-complex-inner-expected.png: |
| * platform/qt/fast/borders/border-radius-different-width-001-expected.png: |
| * platform/qt/fast/borders/rtl-border-01-expected.png: |
| * platform/qt/fast/borders/rtl-border-02-expected.png: |
| * platform/qt/fast/borders/rtl-border-03-expected.png: |
| * platform/qt/fast/borders/rtl-border-04-expected.png: |
| * platform/qt/fast/box-shadow/spread-expected.png: |
| * platform/qt/fast/canvas/arc360-expected.png: |
| * platform/qt/fast/canvas/canvas-before-css-expected.png: |
| * platform/qt/fast/canvas/canvas-composite-expected.png: |
| * platform/qt/fast/canvas/canvas-text-alignment-expected.png: |
| * platform/qt/fast/canvas/canvas-text-baseline-expected.png: |
| * platform/qt/fast/canvas/canvasDrawingIntoSelf-expected.png: |
| * platform/qt/fast/canvas/check-stale-putImageData-expected.png: Added. |
| * platform/qt/fast/canvas/drawImage-expected.png: |
| * platform/qt/fast/canvas/drawImage-with-globalAlpha-expected.png: |
| * platform/qt/fast/canvas/fill-stroke-clip-reset-path-expected.png: |
| * platform/qt/fast/canvas/fillrect-gradient-zero-stops-expected.png: |
| * platform/qt/fast/canvas/fillrect_gradient-expected.png: |
| * platform/qt/fast/canvas/image-object-in-canvas-expected.png: |
| * platform/qt/fast/canvas/patternfill-repeat-expected.png: |
| * platform/qt/fast/canvas/quadraticCurveTo-expected.png: |
| * platform/qt/fast/canvas/shadow-offset-1-expected.png: |
| * platform/qt/fast/canvas/shadow-offset-2-expected.png: |
| * platform/qt/fast/canvas/shadow-offset-3-expected.png: |
| * platform/qt/fast/canvas/shadow-offset-4-expected.png: |
| * platform/qt/fast/canvas/shadow-offset-5-expected.png: |
| * platform/qt/fast/canvas/shadow-offset-6-expected.png: |
| * platform/qt/fast/canvas/shadow-offset-7-expected.png: |
| * platform/qt/fast/canvas/zero-size-fill-rect-expected.png: |
| * platform/qt/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.png: |
| * platform/qt/fast/css/acid2-expected.png: |
| * platform/qt/fast/css/clip-zooming-expected.png: |
| * platform/qt/fast/css/css1_forward_compatible_parsing-expected.png: |
| * platform/qt/fast/css/css2-system-fonts-expected.png: |
| * platform/qt/fast/css/empty-pseudo-class-expected.png: |
| * platform/qt/fast/css/find-next-layer-expected.png: |
| * platform/qt/fast/css/first-child-pseudo-class-expected.png: |
| * platform/qt/fast/css/first-letter-capitalized-expected.png: |
| * platform/qt/fast/css/first-letter-detach-expected.png: |
| * platform/qt/fast/css/first-letter-hover-expected.png: |
| * platform/qt/fast/css/first-line-text-decoration-expected.png: |
| * platform/qt/fast/css/first-line-text-decoration-inherited-from-parent-expected.png: |
| * platform/qt/fast/css/first-of-type-pseudo-class-expected.png: |
| * platform/qt/fast/css/focus-ring-multiline-expected.png: |
| * platform/qt/fast/css/font-face-opentype-expected.png: |
| * platform/qt/fast/css/font-face-synthetic-bold-italic-expected.png: |
| * platform/qt/fast/css/font-face-weight-matching-expected.png: |
| * platform/qt/fast/css/font-shorthand-weight-only-expected.png: |
| * platform/qt/fast/css/hover-subselector-expected.png: |
| * platform/qt/fast/css/hsl-color-expected.png: |
| * platform/qt/fast/css/last-child-pseudo-class-expected.png: |
| * platform/qt/fast/css/last-of-type-pseudo-class-expected.png: |
| * platform/qt/fast/css/line-height-font-order-expected.png: |
| * platform/qt/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/qt/fast/css/min-width-with-spanned-cell-expected.png: Added. |
| * platform/qt/fast/css/min-width-with-spanned-cell-fixed-expected.png: Added. |
| * platform/qt/fast/css/nth-child-dynamic-expected.png: |
| * platform/qt/fast/css/only-child-pseudo-class-expected.png: |
| * platform/qt/fast/css/only-of-type-pseudo-class-expected.png: |
| * platform/qt/fast/css/outline-auto-empty-rects-expected.png: |
| * platform/qt/fast/css/outline-auto-location-expected.png: |
| * platform/qt/fast/css/percent-top-value-with-relative-position-expected.png: |
| * platform/qt/fast/css/text-rendering-expected.png: |
| * platform/qt/fast/css/universal-hover-quirk-expected.png: |
| |
| 2012-10-19 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed rebaseline. |
| |
| Part 3. |
| Rebase pixel results in editing. All of these tests producing correct results, |
| only the expectations were outdated. |
| |
| * platform/qt/editing/deleting/4922367-expected.png: |
| * platform/qt/editing/deleting/5099303-expected.png: |
| * platform/qt/editing/deleting/5144139-2-expected.png: |
| * platform/qt/editing/deleting/5483370-expected.png: |
| * platform/qt/editing/deleting/collapse-whitespace-3587601-fix-expected.png: |
| * platform/qt/editing/deleting/delete-3608462-fix-expected.png: |
| * platform/qt/editing/deleting/delete-4083333-fix-expected.png: |
| * platform/qt/editing/deleting/delete-and-undo-expected.png: |
| * platform/qt/editing/deleting/delete-at-paragraph-boundaries-003-expected.png: |
| * platform/qt/editing/deleting/delete-at-paragraph-boundaries-004-expected.png: |
| * platform/qt/editing/deleting/delete-at-paragraph-boundaries-005-expected.png: |
| * platform/qt/editing/deleting/delete-at-paragraph-boundaries-006-expected.png: |
| * platform/qt/editing/deleting/delete-at-paragraph-boundaries-008-expected.png: |
| * platform/qt/editing/deleting/delete-at-paragraph-boundaries-010-expected.png: |
| * platform/qt/editing/deleting/delete-at-paragraph-boundaries-011-expected.png: |
| * platform/qt/editing/deleting/delete-block-contents-001-expected.png: |
| * platform/qt/editing/deleting/delete-block-contents-002-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-001-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-002-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-003-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-004-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-009-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-010-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-011-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-012-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-013-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-014-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-015-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-016-expected.png: |
| * platform/qt/editing/deleting/delete-block-merge-contents-017-expected.png: |
| * platform/qt/editing/deleting/delete-br-001-expected.png: |
| * platform/qt/editing/deleting/delete-br-007-expected.png: |
| * platform/qt/editing/deleting/delete-br-013-expected.png: |
| * platform/qt/editing/deleting/delete-character-001-expected.png: |
| * platform/qt/editing/deleting/delete-contiguous-ws-001-expected.png: |
| * platform/qt/editing/deleting/delete-first-list-item-expected.png: |
| * platform/qt/editing/deleting/delete-image-001-expected.png: |
| * platform/qt/editing/deleting/delete-image-003-expected.png: |
| * platform/qt/editing/deleting/delete-image-004-expected.png: |
| * platform/qt/editing/deleting/delete-leading-ws-001-expected.png: |
| * platform/qt/editing/deleting/delete-line-015-expected.png: |
| * platform/qt/editing/deleting/delete-line-016-expected.png: |
| * platform/qt/editing/deleting/delete-line-017-expected.png: |
| * platform/qt/editing/deleting/delete-listitem-002-expected.png: |
| * platform/qt/editing/deleting/delete-selection-001-expected.png: |
| * platform/qt/editing/deleting/delete-to-select-table-expected.png: |
| * platform/qt/editing/deleting/delete-trailing-ws-001-expected.png: |
| * platform/qt/editing/deleting/delete-trailing-ws-002-expected.png: |
| * platform/qt/editing/deleting/delete-ws-fixup-001-expected.png: |
| * platform/qt/editing/deleting/delete-ws-fixup-002-expected.png: |
| * platform/qt/editing/deleting/delete-ws-fixup-003-expected.png: |
| * platform/qt/editing/deleting/delete-ws-fixup-004-expected.png: |
| * platform/qt/editing/deleting/list-item-1-expected.png: |
| * platform/qt/editing/deleting/merge-endOfParagraph-expected.png: |
| * platform/qt/editing/deleting/merge-no-br-expected.png: |
| * platform/qt/editing/deleting/merge-unrendered-space-expected.png: |
| * platform/qt/editing/deleting/merge-whitespace-pre-expected.png: |
| * platform/qt/editing/deleting/non-smart-delete-expected.png: |
| * platform/qt/editing/deleting/smart-delete-001-expected.png: |
| * platform/qt/editing/deleting/smart-delete-002-expected.png: |
| * platform/qt/editing/deleting/table-cells-expected.png: |
| * platform/qt/editing/execCommand/4580583-2-expected.png: |
| * platform/qt/editing/execCommand/4641880-1-expected.png: |
| * platform/qt/editing/execCommand/4641880-2-expected.png: |
| * platform/qt/editing/execCommand/4747450-expected.png: |
| * platform/qt/editing/execCommand/4916402-expected.png: |
| * platform/qt/editing/execCommand/4916541-expected.png: |
| * platform/qt/editing/execCommand/5080333-1-expected.png: |
| * platform/qt/editing/execCommand/5080333-2-expected.png: |
| * platform/qt/editing/execCommand/5136770-expected.png: |
| * platform/qt/editing/execCommand/5138441-expected.png: |
| * platform/qt/editing/execCommand/5142012-1-expected.png: |
| * platform/qt/editing/execCommand/5142012-2-expected.png: |
| * platform/qt/editing/execCommand/5190926-expected.png: |
| * platform/qt/editing/execCommand/5481523-expected.png: |
| * platform/qt/editing/execCommand/5569741-expected.png: |
| * platform/qt/editing/execCommand/create-list-with-hr-expected.png: |
| * platform/qt/editing/execCommand/indent-list-item-expected.png: |
| * platform/qt/editing/execCommand/indent-selection-expected.png: |
| * platform/qt/editing/execCommand/insert-list-and-stitch-expected.png: |
| * platform/qt/editing/execCommand/print-expected.png: |
| * platform/qt/editing/execCommand/remove-list-from-range-selection-expected.png: |
| * platform/qt/editing/execCommand/selectAll-expected.png: |
| * platform/qt/editing/input/caret-at-the-edge-of-input-expected.png: |
| * platform/qt/editing/inserting/12882-expected.png: |
| * platform/qt/editing/inserting/4278698-expected.png: |
| * platform/qt/editing/inserting/4840662-expected.png: |
| * platform/qt/editing/inserting/4960120-2-expected.png: |
| * platform/qt/editing/inserting/5002441-expected.png: |
| * platform/qt/editing/inserting/5058163-1-expected.png: |
| * platform/qt/editing/inserting/5058163-2-expected.png: |
| * platform/qt/editing/inserting/5156401-2-expected.png: |
| * platform/qt/editing/inserting/5510537-expected.png: |
| * platform/qt/editing/inserting/5549929-2-expected.png: |
| * platform/qt/editing/inserting/5549929-3-expected.png: |
| * platform/qt/editing/inserting/6703873-expected.png: |
| * platform/qt/editing/inserting/editing-empty-divs-expected.png: |
| * platform/qt/editing/inserting/insert-3775316-fix-expected.png: |
| * platform/qt/editing/inserting/insert-after-delete-001-expected.png: |
| * platform/qt/editing/inserting/insert-at-end-01-expected.png: |
| * platform/qt/editing/inserting/insert-at-end-02-expected.png: |
| * platform/qt/editing/inserting/insert-br-001-expected.png: |
| * platform/qt/editing/inserting/insert-br-003-expected.png: |
| * platform/qt/editing/inserting/insert-br-006-expected.png: |
| * platform/qt/editing/inserting/insert-br-007-expected.png: |
| * platform/qt/editing/inserting/insert-br-008-expected.png: |
| * platform/qt/editing/inserting/insert-br-009-expected.png: |
| * platform/qt/editing/inserting/insert-br-at-tabspan-001-expected.png: |
| * platform/qt/editing/inserting/insert-br-at-tabspan-002-expected.png: |
| * platform/qt/editing/inserting/insert-br-at-tabspan-003-expected.png: |
| * platform/qt/editing/inserting/insert-br-quoted-001-expected.png: |
| * platform/qt/editing/inserting/insert-br-quoted-002-expected.png: |
| * platform/qt/editing/inserting/insert-br-quoted-003-expected.png: |
| * platform/qt/editing/inserting/insert-br-quoted-004-expected.png: |
| * platform/qt/editing/inserting/insert-br-quoted-005-expected.png: |
| * platform/qt/editing/inserting/insert-br-quoted-006-expected.png: |
| * platform/qt/editing/inserting/insert-div-022-expected.png: |
| * platform/qt/editing/inserting/insert-div-023-expected.png: |
| * platform/qt/editing/inserting/insert-div-024-expected.png: |
| * platform/qt/editing/inserting/insert-div-026-expected.png: |
| * platform/qt/editing/inserting/insert-paragraph-01-expected.png: |
| * platform/qt/editing/inserting/insert-paragraph-03-expected.png: |
| * platform/qt/editing/inserting/insert-paragraph-04-expected.png: |
| * platform/qt/editing/inserting/insert-paragraph-05-expected.png: |
| * platform/qt/editing/inserting/insert-space-in-empty-doc-expected.png: |
| * platform/qt/editing/inserting/insert-tab-001-expected.png: |
| * platform/qt/editing/inserting/insert-tab-002-expected.png: |
| * platform/qt/editing/inserting/insert-tab-004-expected.png: |
| * platform/qt/editing/inserting/insert-text-at-tabspan-001-expected.png: |
| * platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png: |
| * platform/qt/editing/inserting/insert-text-at-tabspan-003-expected.png: |
| * platform/qt/editing/inserting/insert-text-with-newlines-expected.png: |
| * platform/qt/editing/inserting/line-break-expected.png: |
| * platform/qt/editing/inserting/paragraph-separator-01-expected.png: |
| * platform/qt/editing/inserting/paragraph-separator-02-expected.png: |
| * platform/qt/editing/inserting/paragraph-separator-in-table-1-expected.png: |
| * platform/qt/editing/inserting/paragraph-separator-in-table-2-expected.png: |
| * platform/qt/editing/inserting/return-key-with-selection-001-expected.png: |
| * platform/qt/editing/inserting/return-key-with-selection-002-expected.png: |
| * platform/qt/editing/inserting/return-key-with-selection-003-expected.png: |
| * platform/qt/editing/inserting/typing-001-expected.png: |
| * platform/qt/editing/inserting/typing-002-expected.png: |
| * platform/qt/editing/inserting/typing-003-expected.png: |
| * platform/qt/editing/inserting/typing-around-br-001-expected.png: |
| * platform/qt/editing/inserting/typing-around-image-001-expected.png: |
| * platform/qt/editing/pasteboard/3976872-expected.png: |
| * platform/qt/editing/pasteboard/4076267-2-expected.png: |
| * platform/qt/editing/pasteboard/4076267-3-expected.png: |
| * platform/qt/editing/pasteboard/4631972-expected.png: |
| * platform/qt/editing/pasteboard/4806874-expected.png: |
| * platform/qt/editing/pasteboard/5006779-expected.png: |
| * platform/qt/editing/pasteboard/5071074-2-expected.png: |
| * platform/qt/editing/pasteboard/5071074-expected.png: |
| * platform/qt/editing/pasteboard/5075944-expected.png: |
| * platform/qt/editing/pasteboard/5156401-1-expected.png: |
| * platform/qt/editing/pasteboard/5247341-expected.png: |
| * platform/qt/editing/pasteboard/5387578-expected.png: |
| * platform/qt/editing/pasteboard/5478250-expected.png: |
| * platform/qt/editing/pasteboard/5601583-1-expected.png: |
| * platform/qt/editing/pasteboard/8145-1-expected.png: |
| * platform/qt/editing/pasteboard/8145-2-expected.png: |
| * platform/qt/editing/pasteboard/8145-3-expected.png: |
| * platform/qt/editing/pasteboard/bad-placeholder-expected.png: |
| * platform/qt/editing/pasteboard/cut-text-001-expected.png: |
| * platform/qt/editing/pasteboard/displaced-generic-placeholder-expected.png: |
| * platform/qt/editing/pasteboard/displaced-placeholder-expected.png: |
| * platform/qt/editing/pasteboard/merge-after-delete-1-expected.png: |
| * platform/qt/editing/pasteboard/merge-after-delete-2-expected.png: |
| * platform/qt/editing/pasteboard/merge-end-blockquote-expected.png: |
| * platform/qt/editing/pasteboard/merge-start-blockquote-expected.png: |
| * platform/qt/editing/pasteboard/paste-4035648-fix-expected.png: |
| * platform/qt/editing/pasteboard/paste-4038267-fix-expected.png: |
| * platform/qt/editing/pasteboard/paste-blockquote-after-blockquote-expected.png: |
| * platform/qt/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-001-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-002-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-003-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-004-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-005-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-006-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-007-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-008-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-009-expected.png: |
| * platform/qt/editing/pasteboard/paste-line-endings-010-expected.png: |
| * platform/qt/editing/pasteboard/paste-match-style-001-expected.png: |
| * platform/qt/editing/pasteboard/paste-match-style-002-expected.png: |
| * platform/qt/editing/pasteboard/paste-text-019-expected.png: |
| * platform/qt/editing/pasteboard/paste-text-at-tabspan-003-expected.png: |
| * platform/qt/editing/pasteboard/pasting-object-expected.png: |
| * platform/qt/editing/pasteboard/quirks-mode-br-1-expected.png: |
| * platform/qt/editing/pasteboard/smart-paste-007-expected.png: |
| * platform/qt/editing/pasteboard/smart-paste-008-expected.png: |
| * platform/qt/editing/pasteboard/undoable-fragment-removes-expected.png: |
| * platform/qt/editing/pasteboard/unrendered-br-expected.png: |
| * platform/qt/editing/selection/3690703-2-expected.png: |
| * platform/qt/editing/selection/3690703-expected.png: |
| * platform/qt/editing/selection/3690719-expected.png: |
| * platform/qt/editing/selection/4397952-expected.png: |
| * platform/qt/editing/selection/4818145-expected.png: |
| * platform/qt/editing/selection/4932260-1-expected.png: |
| * platform/qt/editing/selection/4932260-2-expected.png: |
| * platform/qt/editing/selection/4932260-3-expected.png: |
| * platform/qt/editing/selection/5007143-2-expected.png: |
| * platform/qt/editing/selection/5007143-expected.png: |
| * platform/qt/editing/selection/5057506-2-expected.png: |
| * platform/qt/editing/selection/5057506-expected.png: |
| * platform/qt/editing/selection/5076323-2-expected.png: |
| * platform/qt/editing/selection/5076323-3-expected.png: |
| * platform/qt/editing/selection/5131716-1-expected.png: |
| * platform/qt/editing/selection/5131716-2-expected.png: |
| * platform/qt/editing/selection/5131716-3-expected.png: |
| * platform/qt/editing/selection/5131716-4-expected.png: |
| * platform/qt/editing/selection/5234383-1-expected.png: |
| * platform/qt/editing/selection/5234383-2-expected.png: |
| * platform/qt/editing/selection/6476-expected.png: |
| * platform/qt/editing/selection/after-line-wrap-expected.png: |
| * platform/qt/editing/selection/caret-before-select-expected.png: |
| * platform/qt/editing/selection/click-start-of-line-expected.png: |
| * platform/qt/editing/selection/editable-non-editable-crash-expected.png: |
| * platform/qt/editing/selection/end-of-document-expected.png: |
| * platform/qt/editing/selection/extend-by-character-001-expected.png: |
| * platform/qt/editing/selection/extend-by-character-006-expected.png: |
| * platform/qt/editing/selection/extend-by-sentence-001-expected.png: |
| * platform/qt/editing/selection/extend-by-word-001-expected.png: |
| * platform/qt/editing/selection/extend-by-word-002-expected.png: |
| * platform/qt/editing/selection/extend-selection-bidi-expected.png: |
| * platform/qt/editing/selection/iframe-expected.png: |
| * platform/qt/editing/selection/image-before-linebreak-expected.png: |
| * platform/qt/editing/selection/inline-closest-leaf-child-expected.png: |
| * platform/qt/editing/selection/leave-requested-block-expected.png: |
| * platform/qt/editing/selection/mixed-editability-6-expected.png: |
| * platform/qt/editing/selection/mixed-editability-7-expected.png: |
| * platform/qt/editing/selection/move-backwords-by-word-001-expected.png: |
| * platform/qt/editing/selection/move-between-blocks-no-001-expected.png: |
| * platform/qt/editing/selection/move-by-character-001-expected.png: |
| * platform/qt/editing/selection/move-by-line-001-expected.png: |
| * platform/qt/editing/selection/move-by-line-002-expected.png: |
| * platform/qt/editing/selection/move-by-sentence-001-expected.png: |
| * platform/qt/editing/selection/move-by-sentence-linebreak-expected.png: |
| * platform/qt/editing/selection/move-by-word-001-expected.png: |
| * platform/qt/editing/selection/previous-line-position-expected.png: |
| * platform/qt/editing/selection/replaced-boundaries-1-expected.png: |
| * platform/qt/editing/selection/replaced-boundaries-2-expected.png: |
| * platform/qt/editing/selection/replaced-boundaries-3-expected.png: |
| * platform/qt/editing/selection/select-all-001-expected.png: |
| * platform/qt/editing/selection/select-all-002-expected.png: |
| * platform/qt/editing/selection/table-caret-1-expected.png: |
| * platform/qt/editing/selection/table-caret-2-expected.png: |
| * platform/qt/editing/selection/unrendered-space-expected.png: |
| * platform/qt/editing/style/5017613-1-expected.png: |
| * platform/qt/editing/style/5017613-2-expected.png: |
| * platform/qt/editing/style/5046875-1-expected.png: |
| * platform/qt/editing/style/5046875-2-expected.png: |
| * platform/qt/editing/style/5065910-expected.png: |
| * platform/qt/editing/style/5228141-expected.png: |
| * platform/qt/editing/style/5279521-expected.png: |
| * platform/qt/editing/style/block-styles-007-expected.png: |
| * platform/qt/editing/style/font-family-with-space-expected.png: |
| * platform/qt/editing/style/style-3681552-fix-001-expected.png: |
| * platform/qt/editing/style/style-3681552-fix-002-expected.png: |
| * platform/qt/editing/style/style-3998892-fix-expected.png: |
| * platform/qt/editing/style/style-boundary-001-expected.png: |
| * platform/qt/editing/style/style-boundary-002-expected.png: |
| * platform/qt/editing/style/style-boundary-003-expected.png: |
| * platform/qt/editing/style/style-boundary-004-expected.png: |
| * platform/qt/editing/style/typing-style-001-expected.png: |
| * platform/qt/editing/style/typing-style-002-expected.png: |
| * platform/qt/editing/style/unbold-in-bold-expected.png: |
| * platform/qt/editing/undo/4063751-expected.png: |
| * platform/qt/editing/undo/5378473-expected.png: |
| * platform/qt/editing/undo/redo-typing-001-expected.png: |
| * platform/qt/editing/undo/undo-combined-delete-boundary-expected.png: |
| * platform/qt/editing/undo/undo-combined-delete-expected.png: |
| * platform/qt/editing/undo/undo-delete-boundary-expected.png: |
| * platform/qt/editing/undo/undo-delete-expected.png: |
| * platform/qt/editing/undo/undo-forward-delete-boundary-expected.png: |
| * platform/qt/editing/undo/undo-forward-delete-expected.png: |
| * platform/qt/editing/undo/undo-misspellings-expected.png: |
| * platform/qt/editing/undo/undo-typing-001-expected.png: |
| * platform/qt/editing/unsupported-content/list-delete-001-expected.png: |
| * platform/qt/editing/unsupported-content/list-delete-003-expected.png: |
| * platform/qt/editing/unsupported-content/list-type-after-expected.png: |
| * platform/qt/editing/unsupported-content/list-type-before-expected.png: |
| * platform/qt/editing/unsupported-content/table-delete-001-expected.png: |
| * platform/qt/editing/unsupported-content/table-delete-002-expected.png: |
| * platform/qt/editing/unsupported-content/table-delete-003-expected.png: |
| * platform/qt/editing/unsupported-content/table-type-after-expected.png: |
| * platform/qt/editing/unsupported-content/table-type-before-expected.png: |
| |
| 2012-10-19 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed rebaseline. |
| |
| Part 2. |
| Rebase pixel results in animations, compositing, css1, css2.1 and css3. |
| |
| * platform/qt/animations/cross-fade-border-image-source-expected.png: |
| * platform/qt/compositing/direct-image-compositing-expected.png: |
| * platform/qt/compositing/geometry/bounds-ignores-hidden-dynamic-negzindex-expected.png: Added. |
| * platform/qt/css1/basic/containment-expected.png: |
| * platform/qt/css1/basic/inheritance-expected.png: |
| * platform/qt/css1/box_properties/border-expected.png: |
| * platform/qt/css1/box_properties/border_bottom-expected.png: |
| * platform/qt/css1/box_properties/border_left-expected.png: |
| * platform/qt/css1/box_properties/border_left_width-expected.png: |
| * platform/qt/css1/box_properties/border_right_inline-expected.png: |
| * platform/qt/css1/box_properties/border_right_width-expected.png: |
| * platform/qt/css1/box_properties/border_style-expected.png: |
| * platform/qt/css1/box_properties/border_top-expected.png: |
| * platform/qt/css1/box_properties/clear_float-expected.png: |
| * platform/qt/css1/box_properties/float_margin-expected.png: |
| * platform/qt/css1/box_properties/float_on_text_elements-expected.png: |
| * platform/qt/css1/box_properties/margin_inline-expected.png: |
| * platform/qt/css1/box_properties/margin_left-expected.png: |
| * platform/qt/css1/box_properties/margin_right-expected.png: |
| * platform/qt/css1/box_properties/padding_bottom-expected.png: |
| * platform/qt/css1/box_properties/padding_bottom_inline-expected.png: |
| * platform/qt/css1/box_properties/padding_inline-expected.png: |
| * platform/qt/css1/box_properties/padding_left-expected.png: |
| * platform/qt/css1/box_properties/padding_right-expected.png: |
| * platform/qt/css1/cascade/cascade_order-expected.png: |
| * platform/qt/css1/cascade/important-expected.png: |
| * platform/qt/css1/classification/display-expected.png: |
| * platform/qt/css1/color_and_background/background_position-expected.png: |
| * platform/qt/css1/color_and_background/background_repeat-expected.png: |
| * platform/qt/css1/conformance/forward_compatible_parsing-expected.png: |
| * platform/qt/css1/font_properties/font-expected.png: |
| * platform/qt/css1/formatting_model/inline_elements-expected.png: |
| * platform/qt/css1/formatting_model/vertical_formatting-expected.png: |
| * platform/qt/css1/pseudo/anchor-expected.png: |
| * platform/qt/css1/pseudo/firstletter-expected.png: |
| * platform/qt/css1/pseudo/firstline-expected.png: |
| * platform/qt/css1/pseudo/multiple_pseudo_elements-expected.png: |
| * platform/qt/css1/pseudo/pseudo_elements_in_selectors-expected.png: |
| * platform/qt/css1/text_properties/text_decoration-expected.png: |
| * platform/qt/css1/text_properties/text_indent-expected.png: |
| * platform/qt/css1/text_properties/text_transform-expected.png: |
| * platform/qt/css1/units/urls-expected.png: |
| * platform/qt/css2.1/20110323/c543-txt-decor-000-expected.png: |
| * platform/qt/css2.1/20110323/margin-collapse-clear-016-expected.png: Added. |
| * platform/qt/css2.1/20110323/replaced-min-max-001-expected.png: |
| * platform/qt/css2.1/t051201-c23-first-line-00-b-expected.png: |
| * platform/qt/css2.1/t0602-c13-inh-underlin-00-e-expected.png: |
| * platform/qt/css2.1/t0805-c5517-brdr-s-00-c-expected.png: |
| * platform/qt/css2.1/t1002-c5523-width-02-b-g-expected.png: |
| * platform/qt/css2.1/t170602-bdr-conflct-w-54-d-expected.png: |
| * platform/qt/css2.1/t170602-bdr-conflct-w-64-d-expected.png: |
| * platform/qt/css2.1/t170602-bdr-conflct-w-74-d-expected.png: |
| * platform/qt/css2.1/t170602-bdr-conflct-w-84-d-expected.png: |
| * platform/qt/css3/filters/crash-hw-sw-switch-expected.png: |
| * platform/qt/css3/selectors3/html/css3-modsel-17-expected.png: |
| * platform/qt/css3/selectors3/html/css3-modsel-18a-expected.png: |
| * platform/qt/css3/selectors3/xhtml/css3-modsel-17-expected.png: |
| * platform/qt/css3/selectors3/xhtml/css3-modsel-18a-expected.png: |
| * platform/qt/css3/selectors3/xml/css3-modsel-17-expected.png: |
| * platform/qt/css3/selectors3/xml/css3-modsel-18a-expected.png: |
| |
| 2012-10-19 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Gardening to make the bots green |
| https://bugs.webkit.org/show_bug.cgi?id=99828 |
| |
| Unreviewed EFL gardening. |
| |
| Adding test expectations for failures caused by |
| r131836 and r131824. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-19 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Pixel tests need rebaseline |
| https://bugs.webkit.org/show_bug.cgi?id=99323 |
| |
| Unreviewed rebaseline. |
| |
| Part I. |
| Identifying wrong results, and rebasing some expected png's. |
| |
| * platform/qt-5.0-wk1/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0-wk2/fast/borders/border-image-01-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-border-radius-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-longhand-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-massive-scale-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-outset-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-outset-in-shorthand-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-repeat-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-rotate-transform-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-scale-transform-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-scaled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-scrambled-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-side-reduction-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-image-source-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-mixed-alpha-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-radius-complex-inner-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/borders/border-radius-different-width-001-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/box-shadow/shadow-tiling-artifact-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/box-shadow/spread-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/arc360-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/iframe-scroll-repaint-expected.png: |
| * platform/qt-5.0-wk2/fast/repaint/selection-after-delete-expected.png: |
| * platform/qt-5.0-wk2/fast/repaint/selection-after-remove-expected.png: |
| * platform/qt-5.0-wk2/fast/repaint/selection-clear-expected.png: |
| * platform/qt-5.0-wk2/fast/repaint/selection-gap-overflow-scroll-2-expected.png: |
| * platform/qt-5.0-wk2/fast/replaced/absolute-image-sizing-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/replaced/image-sizing-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/custom/mask-invalidation-expected.png: Copied from LayoutTests/platform/qt/svg/custom/mask-invalidation-expected.png. |
| * platform/qt-5.0-wk2/svg/custom/relative-sized-image-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/zoom/page/zoom-mask-with-percentages-expected.png: Added. |
| * platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png: Added. |
| * platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-deep-expected.png: Added. |
| * platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-expected.png: Added. |
| * platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: Added. |
| * platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: Added. |
| * platform/qt-5.0-wk2/transitions/suspend-transform-transition-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/iframe-scroll-repaint-expected.png. |
| * platform/qt/TestExpectations: |
| * platform/qt/animations/cross-fade-background-image-expected.png: |
| * platform/qt/animations/cross-fade-border-image-source-expected.png: |
| * platform/qt/animations/cross-fade-list-style-image-expected.png: |
| * platform/qt/animations/cross-fade-webkit-mask-image-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-in-regions-expected.png: |
| * platform/qt/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png: |
| * platform/qt/svg/custom/mask-invalidation-expected.png: |
| * platform/qt/svg/text/remove-text-node-from-tspan-expected.png: |
| * platform/qt/svg/text/remove-tspan-from-text-expected.png: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png: Removed. |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: Removed. |
| |
| 2012-10-19 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectation that is rendered correctly now. |
| |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: |
| |
| 2012-10-19 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding a platform-specific baseline for a new Shadow DOM test |
| that was introduced in r131758, the new baseline differs from |
| the original one just by an annoying newline at the end of the |
| document. |
| |
| Adding test expectations for list styles test failure caused by |
| r131836. Adding a test expectation for a new a11y test introduced |
| in r131871. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/dom/shadow/user-modify-in-datalist-crash-expected.txt: Added. |
| |
| 2012-10-19 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip a few passing tests. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-19 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline a few pixel expectations now that WK1 also shows the resizer in textareas. |
| |
| * platform/efl/fast/forms/basic-textareas-expected.png: |
| * platform/efl/fast/forms/basic-textareas-quirks-expected.png: |
| |
| 2012-10-18 Dominic Mazzoni <dmazzoni@google.com> |
| |
| AX: labelForElement is slow when there are a lot of DOM elements |
| https://bugs.webkit.org/show_bug.cgi?id=97825 |
| |
| Reviewed by Ryosuke Niwa. |
| |
| Adds two new tests for titleUIElement that run on both Mac and |
| Chromium. One tests correctness, the other tests speed. |
| |
| Fixes one test so that it passes on Chromium. |
| Enables other tests that now pass on Chromium. |
| |
| * accessibility/secure-textfield-title-ui.html: |
| * accessibility/title-ui-element-correctness-expected.txt: Added. |
| * accessibility/title-ui-element-correctness.html: Added. |
| * perf/accessibility-title-ui-element-expected.txt: Added. |
| * perf/accessibility-title-ui-element.html: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-18 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: [Styles] Property considered overridden if it is non-inherited important property in inherited style |
| https://bugs.webkit.org/show_bug.cgi?id=99720 |
| |
| Reviewed by Yury Semikhatsky. |
| |
| * inspector/elements/elements-panel-styles-expected.txt: |
| * inspector/elements/resources/elements-panel-styles.css: |
| (#container): |
| (.foo): |
| |
| 2012-10-18 Dongwoo Joshua Im <dw.im@samsung.com> |
| |
| quirk-orphaned-units.html should be removed from TestExpectations. |
| https://bugs.webkit.org/show_bug.cgi?id=99807 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| quirk-orphaned-units.html is no more existed, so it should be removed from TestExpectations. |
| |
| * platform/qt-mac/TestExpectations: Remove quirk-orphaned-units.html. |
| |
| 2012-10-18 Dirk Pranke <dpranke@chromium.org> |
| |
| Remove entries for now-passing tests in chroum-mac-mountainlion. |
| |
| Unreviewed, expectations change. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| |
| 2012-10-18 Kunihiko Sakamoto <ksakamoto@chromium.org> |
| |
| Implement value sanitization algorithm for type=datetime |
| https://bugs.webkit.org/show_bug.cgi?id=76893 |
| |
| Reviewed by Kent Tamura. |
| |
| Added a test for the value sanitization algorithm for type=datetime. |
| Also updated affected tests. |
| |
| * fast/forms/datetime/ValidityState-typeMismatch-datetime-expected.txt: |
| * fast/forms/datetime/ValidityState-typeMismatch-datetime.html: |
| '0001-01-01T00:00+01:00' is an invalid value because that is before |
| 0001-01-01 00:00 UTC. '0001-01-01T00:00-01:00' is a valid value. |
| * fast/forms/datetime/datetime-value-sanitization-expected.txt: Added. |
| * fast/forms/datetime/datetime-value-sanitization.html: Added. |
| * fast/forms/datetime/input-valueasdate-datetime-expected.txt: |
| * fast/forms/datetime/input-valueasdate-datetime.html: |
| Setting valueAsDate should run the algorithm to convert a Date object to a |
| string, that returns valid normalized forced-UTC global date and time string. |
| See http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#dom-input-valueasdate |
| * fast/forms/datetime/input-valueasnumber-datetime-expected.txt: |
| * fast/forms/datetime/input-valueasnumber-datetime.html: |
| Setting valueAsNumber should run the algorithm to convert a number to a |
| string, that returns valid normalized forced-UTC global date and time string. |
| See http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#dom-input-valueasnumber |
| |
| 2012-10-18 Dirk Pranke <dpranke@chromium.org> |
| |
| Unreviewed, expectations and baselines for chromium-mac-mountainlion |
| |
| * platform/chromium-mac-lion/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png. |
| * platform/chromium-mac-lion/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Copied from LayoutTests/platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt. |
| * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: |
| * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-18 Dirk Pranke <dpranke@chromium.org> |
| |
| Land first batch of Chromium Mac 10.8-specific baselines. |
| |
| Unreviewed, gardening. |
| |
| * animations/cross-fade-background-image-expected.png: Renamed from LayoutTests/platform/efl/animations/cross-fade-background-image-expected.png. |
| * animations/cross-fade-border-image-source-expected.png: Renamed from LayoutTests/platform/efl/animations/cross-fade-border-image-source-expected.png. |
| * animations/cross-fade-list-style-image-expected.png: Renamed from LayoutTests/platform/efl/animations/cross-fade-list-style-image-expected.png. |
| * animations/cross-fade-webkit-mask-image-expected.png: Renamed from LayoutTests/platform/efl/animations/cross-fade-webkit-mask-image-expected.png. |
| * platform/chromium-mac-lion/animations/3d/change-transform-in-end-event-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/3d/change-transform-in-end-event-expected.png. |
| * platform/chromium-mac-lion/animations/3d/matrix-transform-type-animation-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/3d/matrix-transform-type-animation-expected.png. |
| * platform/chromium-mac-lion/animations/3d/state-at-end-event-transform-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/3d/state-at-end-event-transform-expected.png. |
| * platform/chromium-mac-lion/animations/cross-fade-background-image-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/cross-fade-background-image-expected.png. |
| * platform/chromium-mac-lion/animations/cross-fade-border-image-source-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/cross-fade-border-image-source-expected.png. |
| * platform/chromium-mac-lion/animations/cross-fade-list-style-image-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/cross-fade-list-style-image-expected.png. |
| * platform/chromium-mac-lion/animations/cross-fade-webkit-mask-image-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/cross-fade-webkit-mask-image-expected.png. |
| * platform/chromium-mac-lion/animations/state-at-end-event-expected.png: Copied from LayoutTests/platform/chromium-mac/animations/state-at-end-event-expected.png. |
| * platform/chromium-mac-lion/compositing/animation/state-at-end-event-transform-layer-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/animation/state-at-end-event-transform-layer-expected.png. |
| * platform/chromium-mac-lion/compositing/color-matching/pdf-image-match-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/color-matching/pdf-image-match-expected.png. |
| * platform/chromium-mac-lion/compositing/compositing-visible-descendant-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/compositing-visible-descendant-expected.png. |
| * platform/chromium-mac-lion/compositing/generated-content-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/generated-content-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/abs-position-inside-opacity-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/abs-position-inside-opacity-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/composited-html-size-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/composited-html-size-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-in-composited-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-in-composited-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-position-composited-page-scale-down-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-position-composited-page-scale-down-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-position-composited-page-scale-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-position-composited-page-scale-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-position-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-position-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/layer-due-to-layer-children-deep-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/layer-due-to-layer-children-deep-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/layer-due-to-layer-children-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/layer-due-to-layer-children-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/outline-change-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/outline-change-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/partial-layout-update-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/partial-layout-update-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/root-layer-update-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/root-layer-update-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/video-fixed-scrolling-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/video-fixed-scrolling-expected.png. |
| * platform/chromium-mac-lion/compositing/geometry/video-opacity-overlay-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/geometry/video-opacity-overlay-expected.png. |
| * platform/chromium-mac-lion/compositing/iframes/composited-iframe-alignment-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/iframes/composited-iframe-alignment-expected.png. |
| * platform/chromium-mac-lion/compositing/iframes/iframe-copy-on-scroll-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/iframes/iframe-copy-on-scroll-expected.png. |
| * platform/chromium-mac-lion/compositing/images/direct-image-background-color-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/images/direct-image-background-color-expected.png. |
| * platform/chromium-mac-lion/compositing/layers-inside-overflow-scroll-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/layers-inside-overflow-scroll-expected.png. |
| * platform/chromium-mac-lion/compositing/masks/direct-image-mask-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/masks/direct-image-mask-expected.png. |
| * platform/chromium-mac-lion/compositing/masks/masked-ancestor-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/masks/masked-ancestor-expected.png. |
| * platform/chromium-mac-lion/compositing/masks/multiple-masks-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/masks/multiple-masks-expected.png. |
| * platform/chromium-mac-lion/compositing/masks/simple-composited-mask-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/masks/simple-composited-mask-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/ancestor-overflow-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/ancestor-overflow-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/fixed-position-ancestor-clip-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/fixed-position-ancestor-clip-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/nested-scrolling-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/nested-scrolling-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/overflow-compositing-descendant-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/overflow-compositing-descendant-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/overflow-positioning-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/overflow-positioning-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/overflow-scroll-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/overflow-scroll-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/parent-overflow-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/parent-overflow-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/remove-overflow-crash2-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/remove-overflow-crash2-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/scroll-ancestor-update-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/scroll-ancestor-update-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/scrollbar-painting-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/scrollbar-painting-expected.png. |
| * platform/chromium-mac-lion/compositing/overflow/theme-affects-visual-overflow-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/overflow/theme-affects-visual-overflow-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/animation-inside-reflection-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/animation-inside-reflection-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/compositing-change-inside-reflection-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/compositing-change-inside-reflection-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/deeply-nested-reflections-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/deeply-nested-reflections-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/load-video-in-reflection-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/load-video-in-reflection-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/masked-reflection-on-composited-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/masked-reflection-on-composited-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-anchor-point-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-anchor-point-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-animated-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-animated-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-mask-change-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-mask-change-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-on-overflow-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-on-overflow-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-opacity-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-opacity-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-size-change-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-size-change-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-transformed-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-transformed-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-transformed2-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-transformed2-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/nested-reflection-transition-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/nested-reflection-transition-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/reflection-in-composited-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/reflection-in-composited-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/reflection-on-composited-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/reflection-on-composited-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/reflection-ordering-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/reflection-ordering-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/reflection-positioning-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/reflection-positioning-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/reflection-positioning2-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/reflection-positioning2-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/simple-composited-reflections-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/simple-composited-reflections-expected.png. |
| * platform/chromium-mac-lion/compositing/reflections/transform-inside-reflection-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/reflections/transform-inside-reflection-expected.png. |
| * platform/chromium-mac-lion/compositing/repaint/become-overlay-composited-layer-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/repaint/become-overlay-composited-layer-expected.png. |
| * platform/chromium-mac-lion/compositing/repaint/composited-document-element-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/repaint/composited-document-element-expected.png. |
| * platform/chromium-mac-lion/compositing/repaint/layer-repaint-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/repaint/layer-repaint-expected.png. |
| * platform/chromium-mac-lion/compositing/repaint/layer-repaint-rects-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/repaint/layer-repaint-rects-expected.png. |
| * platform/chromium-mac-lion/compositing/repaint/opacity-between-absolute-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/repaint/opacity-between-absolute-expected.png. |
| * platform/chromium-mac-lion/compositing/repaint/opacity-between-absolute2-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/repaint/opacity-between-absolute2-expected.png. |
| * platform/chromium-mac-lion/compositing/self-painting-layers-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/self-painting-layers-expected.png. |
| * platform/chromium-mac-lion/compositing/sibling-positioning-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/sibling-positioning-expected.png. |
| * platform/chromium-mac-lion/compositing/text-on-large-layer-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/text-on-large-layer-expected.png. |
| * platform/chromium-mac-lion/compositing/transitions/scale-transition-no-start-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/transitions/scale-transition-no-start-expected.png. |
| * platform/chromium-mac-lion/compositing/transitions/singular-scale-transition-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/transitions/singular-scale-transition-expected.png. |
| * platform/chromium-mac-lion/compositing/video/video-controls-layer-creation-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/video/video-controls-layer-creation-expected.png. |
| * platform/chromium-mac-lion/compositing/webgl/webgl-background-color-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/webgl/webgl-background-color-expected.png. |
| * platform/chromium-mac-lion/compositing/webgl/webgl-reflection-expected.png: Copied from LayoutTests/platform/chromium-mac/compositing/webgl/webgl-reflection-expected.png. |
| * platform/chromium-mac/animations/3d/change-transform-in-end-event-expected.png: |
| * platform/chromium-mac/animations/3d/matrix-transform-type-animation-expected.png: |
| * platform/chromium-mac/animations/3d/state-at-end-event-transform-expected.png: |
| * platform/chromium-mac/animations/cross-fade-background-image-expected.png: |
| * platform/chromium-mac/animations/cross-fade-border-image-source-expected.png: |
| * platform/chromium-mac/animations/cross-fade-list-style-image-expected.png: |
| * platform/chromium-mac/animations/cross-fade-webkit-mask-image-expected.png: |
| * platform/chromium-mac/animations/state-at-end-event-expected.png: |
| * platform/chromium-mac/compositing/animation/state-at-end-event-transform-layer-expected.png: |
| * platform/chromium-mac/compositing/color-matching/pdf-image-match-expected.png: |
| * platform/chromium-mac/compositing/compositing-visible-descendant-expected.png: |
| * platform/chromium-mac/compositing/generated-content-expected.png: |
| * platform/chromium-mac/compositing/geometry/abs-position-inside-opacity-expected.png: |
| * platform/chromium-mac/compositing/geometry/composited-html-size-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-in-composited-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-position-composited-page-scale-down-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-position-composited-page-scale-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-position-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: |
| * platform/chromium-mac/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png: |
| * platform/chromium-mac/compositing/geometry/layer-due-to-layer-children-deep-expected.png: |
| * platform/chromium-mac/compositing/geometry/layer-due-to-layer-children-expected.png: |
| * platform/chromium-mac/compositing/geometry/outline-change-expected.png: |
| * platform/chromium-mac/compositing/geometry/partial-layout-update-expected.png: |
| * platform/chromium-mac/compositing/geometry/root-layer-update-expected.png: |
| * platform/chromium-mac/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png: |
| * platform/chromium-mac/compositing/geometry/video-fixed-scrolling-expected.png: |
| * platform/chromium-mac/compositing/geometry/video-opacity-overlay-expected.png: |
| * platform/chromium-mac/compositing/iframes/composited-iframe-alignment-expected.png: |
| * platform/chromium-mac/compositing/iframes/iframe-copy-on-scroll-expected.png: |
| * platform/chromium-mac/compositing/images/direct-image-background-color-expected.png: |
| * platform/chromium-mac/compositing/layers-inside-overflow-scroll-expected.png: |
| * platform/chromium-mac/compositing/masks/direct-image-mask-expected.png: |
| * platform/chromium-mac/compositing/masks/masked-ancestor-expected.png: |
| * platform/chromium-mac/compositing/masks/multiple-masks-expected.png: |
| * platform/chromium-mac/compositing/masks/simple-composited-mask-expected.png: |
| * platform/chromium-mac/compositing/overflow/ancestor-overflow-expected.png: |
| * platform/chromium-mac/compositing/overflow/fixed-position-ancestor-clip-expected.png: |
| * platform/chromium-mac/compositing/overflow/nested-scrolling-expected.png: |
| * platform/chromium-mac/compositing/overflow/overflow-compositing-descendant-expected.png: |
| * platform/chromium-mac/compositing/overflow/overflow-positioning-expected.png: |
| * platform/chromium-mac/compositing/overflow/overflow-scroll-expected.png: |
| * platform/chromium-mac/compositing/overflow/parent-overflow-expected.png: |
| * platform/chromium-mac/compositing/overflow/remove-overflow-crash2-expected.png: |
| * platform/chromium-mac/compositing/overflow/scroll-ancestor-update-expected.png: |
| * platform/chromium-mac/compositing/overflow/scrollbar-painting-expected.png: |
| * platform/chromium-mac/compositing/overflow/theme-affects-visual-overflow-expected.png: |
| * platform/chromium-mac/compositing/reflections/animation-inside-reflection-expected.png: |
| * platform/chromium-mac/compositing/reflections/compositing-change-inside-reflection-expected.png: |
| * platform/chromium-mac/compositing/reflections/deeply-nested-reflections-expected.png: |
| * platform/chromium-mac/compositing/reflections/load-video-in-reflection-expected.png: |
| * platform/chromium-mac/compositing/reflections/masked-reflection-on-composited-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-anchor-point-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-animated-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-mask-change-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-on-overflow-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-opacity-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-size-change-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-transformed-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-transformed2-expected.png: |
| * platform/chromium-mac/compositing/reflections/nested-reflection-transition-expected.png: |
| * platform/chromium-mac/compositing/reflections/reflection-in-composited-expected.png: |
| * platform/chromium-mac/compositing/reflections/reflection-on-composited-expected.png: |
| * platform/chromium-mac/compositing/reflections/reflection-ordering-expected.png: |
| * platform/chromium-mac/compositing/reflections/reflection-positioning-expected.png: |
| * platform/chromium-mac/compositing/reflections/reflection-positioning2-expected.png: |
| * platform/chromium-mac/compositing/reflections/simple-composited-reflections-expected.png: |
| * platform/chromium-mac/compositing/reflections/transform-inside-reflection-expected.png: |
| * platform/chromium-mac/compositing/repaint/become-overlay-composited-layer-expected.png: |
| * platform/chromium-mac/compositing/repaint/composited-document-element-expected.png: |
| * platform/chromium-mac/compositing/repaint/layer-repaint-expected.png: |
| * platform/chromium-mac/compositing/repaint/layer-repaint-rects-expected.png: |
| * platform/chromium-mac/compositing/repaint/opacity-between-absolute-expected.png: |
| * platform/chromium-mac/compositing/repaint/opacity-between-absolute2-expected.png: |
| * platform/chromium-mac/compositing/self-painting-layers-expected.png: |
| * platform/chromium-mac/compositing/sibling-positioning-expected.png: |
| * platform/chromium-mac/compositing/text-on-large-layer-expected.png: |
| * platform/chromium-mac/compositing/transitions/scale-transition-no-start-expected.png: |
| * platform/chromium-mac/compositing/transitions/singular-scale-transition-expected.png: |
| * platform/chromium-mac/compositing/video/video-controls-layer-creation-expected.png: |
| * platform/chromium-mac/compositing/webgl/webgl-background-color-expected.png: |
| * platform/chromium-mac/compositing/webgl/webgl-reflection-expected.png: |
| |
| 2012-10-18 Anand Chakravarty <anandc@google.com> |
| |
| Incorrect check performed in Media Source objects test. |
| https://bugs.webkit.org/show_bug.cgi?id=99390 |
| |
| Reviewed by Eric Carlson. |
| |
| Use an expected value of 5 in the buffered attribute. |
| |
| * http/tests/media/media-source/video-media-source-objects-expected.txt: |
| * http/tests/media/media-source/video-media-source-objects.html: |
| |
| 2012-10-18 Anand Chakravarty <anandc@google.com> |
| |
| Use of uninitialized variable in Media Source API test. |
| https://bugs.webkit.org/show_bug.cgi?id=99387 |
| |
| Reviewed by Eric Carlson. |
| |
| Set value of seekTime to 1 before using it. |
| |
| * http/tests/media/media-source/video-media-source-state-changes.html: |
| |
| 2012-10-18 Dirk Pranke <dpranke@chromium.org> |
| |
| De-dup expectations for chromium mountainlion |
| |
| Unreviewed, expectations update. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-18 Adam Barth <abarth@webkit.org> |
| |
| [V8] fast/dom/gc-9.html fails for document.styleSheets |
| https://bugs.webkit.org/show_bug.cgi?id=99786 |
| |
| Reviewed by Kentaro Hara. |
| |
| * platform/chromium/fast/dom/gc-9-expected.txt: |
| - Test progression. |
| |
| 2012-10-18 Adam Barth <abarth@webkit.org> |
| |
| [V8] fast/dom/gc-9.html fails for document.implementation |
| https://bugs.webkit.org/show_bug.cgi?id=99783 |
| |
| Reviewed by Kentaro Hara. |
| |
| * platform/chromium/TestExpectations: |
| - TestExpectations claims that this test is "brain damaged", but it |
| looks like the test has improved since that comment was written |
| and that this test is actually quite valuable. |
| * platform/chromium/fast/dom/gc-9-expected.txt: Added. |
| - This patch adds a Chromium-specific baseline for this test. |
| Before this patch, we failed the document.implementation |
| subtests. |
| |
| 2012-10-18 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Test expectation update. |
| |
| * platform/chromium/TestExpectations: Remove entries for passing *-multiple-fieds tests. |
| * platform/chromium-mac-mountainlion/TestExpectations: Add them. |
| |
| 2012-10-18 Pan Deng <pan.deng@intel.com> |
| |
| [Resource Timing]Test cases for set buffer size functionality and event when buffer full. |
| https://bugs.webkit.org/show_bug.cgi?id=84885. |
| |
| Reviewed by Tony Gentilcore. |
| |
| Test cases in this patch validate buffer size restriction functionality, clear resource timing functionality and the fired event when buffer full. |
| |
| * http/tests/w3c/webperf/resources/webperftestharnessextension.js: |
| (PerformanceContext.prototype.getEntriesByName): |
| (PerformanceContext.prototype.setResourceTimingBufferSize): |
| (PerformanceContext.prototype.registerResourceTimingBufferFullCallback): |
| (PerformanceContext.prototype.clearResourceTimings): |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_buffer_full_when_populate_entries-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_buffer_full_when_populate_entries.html: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_buffer_full_when_shrink_buffer_size-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_buffer_full_when_shrink_buffer_size.html: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_buffer_size_restriction-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_buffer_size_restriction.html: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_clear_resource_timing_functionality-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_clear_resource_timing_functionality.html: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_on_shrink_buffer_size-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_on_shrink_buffer_size.html: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_store_and_clear_during_callback-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/Intel/resource-timing/test_resource_timing_store_and_clear_during_callback.html: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-18 Ryosuke Niwa <rniwa@webkit.org> |
| |
| REGRESSION(r130411): Copying & pasting the first line of text can move caret to the end of text area |
| https://bugs.webkit.org/show_bug.cgi?id=99663 |
| |
| Reviewed by Enrica Casucci and Levi Weintraub. |
| |
| Add a regression test for copying and pasting the first line in a textarea with two lines of text. |
| |
| * editing/pasteboard/copy-paste-first-line-in-textarea-expected.txt: Added. |
| * editing/pasteboard/copy-paste-first-line-in-textarea.html: Added. |
| |
| 2012-10-18 W. James MacLean <wjmaclean@chromium.org> |
| |
| [chromium] Re-enable gesture highlight layout tests, fix GestureLongPress regression. |
| https://bugs.webkit.org/show_bug.cgi?id=99632 |
| |
| Reviewed by James Robinson. |
| |
| Re-enable layout tests for gesture highlights. Includes fix for GestureTapCancel test. |
| |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-longPress.html: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-18 Dirk Pranke <dpranke@chromium.org> |
| |
| [chromium] fix lint errors/conflicts in ML TestExpectations |
| |
| Unreviewed, expectations change. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| |
| 2012-10-18 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r131810. |
| http://trac.webkit.org/changeset/131810 |
| https://bugs.webkit.org/show_bug.cgi?id=99762 |
| |
| Broke linux debug webkit_unit_tests (Requested by |
| danakj|gardening on #webkit). |
| |
| * platform/chromium/TestExpectations: |
| * platform/chromium/virtual/deferred/fast/images/README.txt: Removed. |
| |
| 2012-10-18 Mike West <mkwst@chromium.org> |
| |
| Add layout tests for wildcarded hosts in CSP directives. |
| https://bugs.webkit.org/show_bug.cgi?id=99693 |
| |
| Reviewed by Adam Barth. |
| |
| Adds four test cases to ensure that wildcarded hosts in Content Security |
| Policy source expressions function correctly with and without paths, |
| and with wildcarded ports. |
| |
| * http/tests/security/contentSecurityPolicy/source-list-parsing-09-expected.txt: Added. |
| * http/tests/security/contentSecurityPolicy/source-list-parsing-09.html: Added. |
| |
| 2012-10-18 Dirk Pranke <dpranke@chromium.org> |
| |
| [chromium] update ML-specific failures |
| https://bugs.webkit.org/show_bug.cgi?id=99505 |
| |
| Unreviewed, expectations change. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| |
| 2012-10-18 Alpha Lam <hclam@chromium.org> |
| |
| [chromium] Implement deferred image decoding |
| https://bugs.webkit.org/show_bug.cgi?id=94240 |
| |
| Reviewed by Stephen White. |
| |
| Adding a virtual test suite for Chromium to test deferred image |
| decoding. |
| |
| platform/chromium/virtual/deferred/fast/images will be tested with |
| --force-compositing --enable-per-tile-painting --enable-deferred-image-decoding. |
| |
| * platform/chromium/virtual/deferred/fast/images/README.txt: Added. |
| |
| 2012-10-18 Max Vujovic <mvujovic@adobe.com> |
| |
| [CSS Shaders] Validate types of built-in vertex attributes |
| https://bugs.webkit.org/show_bug.cgi?id=98972 |
| |
| Reviewed by Dean Jackson. |
| |
| invalid-custom-filter-attribute-types.html uses a set of vertex shaders. Each vertex shader |
| defines a specific attribute with the wrong type. None of the vertex shaders in the test |
| should execute. If a vertex shader does execute, its associated fragment shader will render |
| a green div as red. |
| |
| * css3/filters/custom/invalid-custom-filter-attribute-types-expected.html: Added. |
| * css3/filters/custom/invalid-custom-filter-attribute-types.html: Added. |
| * css3/filters/resources/invalid-type-a-mesh-coord.vs: Added. |
| * css3/filters/resources/invalid-type-a-position.vs: Added. |
| * css3/filters/resources/invalid-type-a-tex-coord.vs: Added. |
| * css3/filters/resources/invalid-type-a-triangle-coord.vs: Added. |
| * css3/filters/resources/invalid-type-attribute-array.vs: Added. |
| |
| 2012-10-18 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, update Qt expectations for slider tests. |
| |
| fast/events/touch/touch-slider.html now has a specific bug number. |
| media/video-playing-and-pause.html is removed. I added it by accident |
| causing it to be run. Qt didn't run this test before my change. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-18 James Simonsen <simonjam@chromium.org> |
| |
| Add a script for exporting http/tests/w3c/webperf/submission to W3C |
| https://bugs.webkit.org/show_bug.cgi?id=99675 |
| |
| Reviewed by Tony Gentilcore. |
| |
| The W3C tests expect a company to contribute them. Move these to the Intel directory. |
| |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_clearMarks-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMarks-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_clearMarks.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMarks.html. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_clearMeasures-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMeasures-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_clearMeasures.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMeasures.html. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_mark-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_mark.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark.html. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_mark_exception-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark_exception-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_mark_exception.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark_exception.html. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_measure-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_measure.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure.html. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_measure_associate_with_navigation_timing-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_associate_with_navigation_timing-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_measure_associate_with_navigation_timing.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_associate_with_navigation_timing.html. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_measure_exception-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_exception-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_measure_exception.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_exception.html. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_method_exist-expected.txt: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_method_exist-expected.txt. |
| * http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_method_exist.html: Renamed from LayoutTests/http/tests/w3c/webperf/submission/user-timing/test_user_timing_method_exist.html. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-18 Pablo Flouret <pablof@motorola.com> |
| |
| Implement css3-conditional's @supports rule |
| https://bugs.webkit.org/show_bug.cgi?id=86146 |
| |
| Reviewed by Antti Koivisto. |
| |
| * css3/supports-expected.txt: Added. |
| * css3/supports.html: Added. |
| |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| * platform/wk2/TestExpectations: |
| Skip the test until the feature is enabled. |
| |
| 2012-10-18 Jer Noble <jer.noble@apple.com> |
| |
| Fullscreen movie controls behave incorrectly when clicked (and dragged) |
| https://bugs.webkit.org/show_bug.cgi?id=99610 |
| |
| Reviewed by Eric Carlson. |
| |
| Add a second drag operation, testing that the location does not reset at the beginning of |
| each additional drag. |
| |
| * fullscreen/video-controls-drag-expected.txt: |
| * fullscreen/video-controls-drag.html: |
| |
| 2012-10-18 Brandon Jones <bajones@google.com> |
| |
| Implement OES_element_index_uint / WEBKIT_OES_element_index_uint |
| https://bugs.webkit.org/show_bug.cgi?id=97400 |
| |
| Reviewed by Kenneth Russell. |
| |
| Added OES_element_index_uint extension conformance test from KHRONOS |
| |
| * fast/canvas/webgl/oes-element-index-uint-expected.txt: Added. |
| * fast/canvas/webgl/oes-element-index-uint.html: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-18 Dana Jansens <danakj@chromium.org> |
| |
| Unreviewed, mark http/tests/xmlhttprequest/request-encoding2.html as flaky. |
| https://bugs.webkit.org/show_bug.cgi?id=99734 |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-18 Stephen Chenney <schenney@chromium.org> |
| |
| Unreviewed testExpectation change for Chromium. |
| |
| * platform/chromium/TestExpectations: Marked svg/hixie/perf/007.xml as [ Pass Slow ] |
| |
| 2012-10-18 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, rebaseline a slider test on Mac. |
| I think I grabbed the baseline at the wrong time or from the wrong bot yesterday. |
| |
| * platform/mac/media/video-playing-and-pause-expected.txt: |
| |
| 2012-10-18 Hans Muller <hmuller@adobe.com> |
| |
| [CSS Exclusions] Handle special case "empty" shapes |
| https://bugs.webkit.org/show_bug.cgi?id=99342 |
| |
| Reviewed by Dirk Schulze. |
| |
| Verify that "empty" shape-inside shapes do not constrain the text their element contains. |
| |
| * fast/exclusions/shape-inside/shape-inside-empty-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-empty.html: Added. |
| |
| 2012-10-18 Takashi Sakamoto <tasak@google.com> |
| |
| REGRESSION(r131464): Null-pointer crash in StyleResolver::styleForElement |
| https://bugs.webkit.org/show_bug.cgi?id=99587 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/user-modify-in-datalist-crash-expected.txt: Added. |
| * fast/dom/shadow/user-modify-in-datalist-crash.html: Added. |
| |
| 2012-10-18 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Test expectation update mainly for |
| https://bugs.webkit.org/show_bug.cgi?id=99673 |
| |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win-xp/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| |
| 2012-10-18 Stephen Chenney <schenney@chromium.org> |
| |
| Rebaselining some longstanding Chromium expectations. |
| |
| Unreviewed test expectations update. |
| |
| These were marked as expected fail when a Skia roll went in. That was ago. |
| |
| * platform/chromium-linux/fast/repaint/list-marker-expected.png: |
| * platform/chromium-linux/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png: |
| * platform/chromium-linux/svg/as-image/img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/repaint/list-marker-expected.png: |
| * platform/chromium-mac-snowleopard/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png: |
| * platform/chromium-mac-snowleopard/svg/as-image/img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac-snowleopard/svg/hixie/perf/007-expected.png: |
| * platform/chromium-mac/fast/repaint/list-marker-expected.png: |
| * platform/chromium-mac/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png: |
| * platform/chromium-mac/svg/as-image/img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-win-xp/svg/as-image/img-preserveAspectRatio-support-1-expected.png: Added. |
| * platform/chromium-win/fast/repaint/focus-ring-expected.png: |
| * platform/chromium-win/fast/repaint/list-marker-expected.png: |
| * platform/chromium-win/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png: |
| * platform/chromium-win/svg/as-image/img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-18 Anton Muhin <antonm@chromium.org> |
| |
| Unreviewed Chromium rebaselines. |
| |
| * platform/chromium-linux/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Removed. |
| * platform/chromium-mac/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.png: |
| * platform/chromium-mac/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.png: |
| * platform/chromium-mac/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Added. |
| * platform/chromium-win/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Added. |
| |
| 2012-10-18 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Update pixel expectation for a datalist test. |
| |
| * platform/efl/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: |
| |
| 2012-10-18 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Gardening. Remove pixel expectation for a test that's actually a reftest. |
| |
| * platform/efl/fast/forms/datalist/update-range-with-datalist-expected.png: Removed. |
| |
| 2012-10-18 KwangYong Choi <ky0.choi@samsung.com> |
| |
| [EFL] Rebaseline http/tests/plugins/ after r129972 |
| https://bugs.webkit.org/show_bug.cgi?id=99672 |
| |
| Unreviewed. Plugin feature is enabled on EFL WK2 port after r129972. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-18 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip http/tests/security/xss-DENIED-xsl-external-entity.xml. |
| |
| It seems to be passing consistently now. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-18 Nandor Huszka <hnandor@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening |
| |
| Skipping a test, remove unnecessary expected files. |
| |
| * platform/qt-5.0/fast/forms/box-shadow-override-expected.png: Removed. |
| * platform/qt-5.0/fast/forms/box-shadow-override-expected.txt: Removed. |
| * platform/qt/TestExpectations: |
| |
| 2012-10-18 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| [EFL] Gardening after r131640 |
| https://bugs.webkit.org/show_bug.cgi?id=99692 |
| |
| Unreviewed gardening. |
| |
| Failing gamepad/gamepad-out-of-range-crasher.html is skipped for EFL. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-18 Kent Tamura <tkent@chromium.org> |
| |
| Set min-width property instead of width property for date/time fields |
| https://bugs.webkit.org/show_bug.cgi?id=99673 |
| |
| Reviewed by Hajime Morita. |
| |
| Update affected test results. Non-Mac chromium ports already have lines |
| for them in TestExpectations. |
| |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| |
| 2012-10-18 MORITA Hajime <morrita@google.com> |
| |
| Assertion failure at TreeScopeAdopter::moveNodeToNewDocument() |
| https://bugs.webkit.org/show_bug.cgi?id=99510 |
| |
| Reviewed by Kent Tamura. |
| |
| * fast/forms/textarea/textarea-autofocus-removal-while-focusing-with-style-expected.txt: Added. |
| * fast/forms/textarea/textarea-autofocus-removal-while-focusing-with-style.html: Added. |
| |
| 2012-10-18 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Updating baselines for two accessibility tests after r131674. |
| |
| Updating baseline for media/video-playing-and-pause.html but still |
| marking the test a flaky as the render tree output can differ from |
| the new baseline. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/accessibility/inline-continuations-expected.txt: |
| * platform/gtk/accessibility/media-element-expected.txt: |
| * platform/gtk/media/video-playing-and-pause-expected.txt: |
| |
| 2012-10-17 Kangil Han <kangil.han@samsung.com> |
| |
| Let's move use-while-animating-crash-expected.txt to common place. |
| https://bugs.webkit.org/show_bug.cgi?id=99678 |
| |
| Unreviewed, expectations change. |
| |
| Move expected result to common place to pass svg/animations/use-while-animating-crash.html case. |
| |
| * svg/animations/use-while-animating-crash-expected.txt: Renamed from LayoutTests/platform/mac/svg/animations/use-while-animating-crash-expected.txt. |
| |
| 2012-10-17 Hayato Ito <hayato@chromium.org> |
| |
| Content element does not expose distributedNodes property. |
| https://bugs.webkit.org/show_bug.cgi?id=99232 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| Add getDistributedNodes() to HTMLContentElement's IDL, which returns a |
| static NodeList whose node are distributed to the content element. |
| |
| * fast/dom/shadow/content-element-distributed-nodes-expected.txt: Added. |
| * fast/dom/shadow/content-element-distributed-nodes.html: Added. |
| * fast/dom/shadow/distributed-nodes-expected.txt: Removed. |
| * fast/dom/shadow/distributed-nodes.html: Removed. |
| * platform/qt/TestExpectations: |
| |
| 2012-10-17 Dirk Pranke <dpranke@chromium.org> |
| |
| Clone baselines from platform/mac to platform/chromium [7 of 7] |
| https://bugs.webkit.org/show_bug.cgi?id=99666 |
| |
| Unreviewed, expectations change. |
| |
| (long list of expectations files omitted). |
| |
| 2012-10-17 Dirk Pranke <dpranke@chromium.org> |
| |
| Clone baselines from platform/mac to platform/chromium [6 of 7] |
| https://bugs.webkit.org/show_bug.cgi?id=99666 |
| |
| Unreviewed, expectations change. |
| |
| (long list of expectations files omitted). |
| |
| 2012-10-17 Dirk Pranke <dpranke@chromium.org> |
| |
| Clone baselines from platform/mac to platform/chromium [5 of 7] |
| https://bugs.webkit.org/show_bug.cgi?id=99666 |
| |
| Unreviewed, expectations change. |
| |
| (long list of expectations files omitted). |
| |
| 2012-10-17 Dirk Pranke <dpranke@chromium.org> |
| |
| Clone baselines from platform/mac to platform/chromium [4 of 7] |
| https://bugs.webkit.org/show_bug.cgi?id=99666 |
| |
| Unreviewed, expectations change. |
| |
| (long list of expectations files omitted). |
| |
| 2012-10-17 Pan Deng <pan.deng@intel.com> |
| |
| [User Timing] Test Cases of User Timing. According to http://www.w3.org/TR/2012/CR-user-timing-20120726/ |
| https://bugs.webkit.org/show_bug.cgi?id=90963 |
| |
| Reviewed by Tony Gentilcore. |
| |
| Test cases in this patch validate functionality of W3C User Timing interface. These test cases use W3C testharness. Since User Timing feature is not enabled in any platform yet, all skipped currenttly. |
| |
| * http/tests/w3c/webperf/resources/webperftestharnessextension.js: Added. |
| (test_method_exists): |
| (test_noless_than): |
| (performance_entrylist_checker.entry_check.test_equals): |
| (performance_entrylist_checker.entry_check): |
| (performance_entrylist_checker.entrylist_order_check): |
| (performance_entrylist_checker.entrylist_check): |
| (PerformanceContext): |
| (PerformanceContext.prototype.initialMeasures): |
| (PerformanceContext.prototype.mark): |
| (PerformanceContext.prototype.measure): |
| (PerformanceContext.prototype.clearMarks): |
| (PerformanceContext.prototype.clearMeasures): |
| (PerformanceContext.prototype.getEntries): |
| (PerformanceContext.prototype.getEntriesByType): |
| (PerformanceContext.prototype.getEntriesByName): |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMarks-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMarks.html: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMeasures-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_clearMeasures.html: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark.html: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark_exception-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_mark_exception.html: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure.html: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_associate_with_navigation_timing-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_associate_with_navigation_timing.html: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_exception-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_measure_exception.html: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_method_exist-expected.txt: Added. |
| * http/tests/w3c/webperf/submission/user-timing/test_user_timing_method_exist.html: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-17 Dirk Pranke <dpranke@chromium.org> |
| |
| Clone baselines from platform/mac to platform/chromium [3 of 7] |
| https://bugs.webkit.org/show_bug.cgi?id=99666 |
| |
| Unreviewed, expectations change. |
| |
| (long list of expectations files omitted). |
| |
| 2012-10-17 Dirk Pranke <dpranke@chromium.org> |
| |
| Clone baselines from platform/mac to platform/chromium [2 of 7] |
| https://bugs.webkit.org/show_bug.cgi?id=99666 |
| |
| Unreviewed, expectations change. |
| |
| (long list of expectations files omitted). |
| |
| 2012-10-17 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Rebaseline expectations for multiple-fields <input> |
| |
| * platform/chromium-linux-x86/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-linux-x86/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Added. |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Added. |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-win-xp/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: Removed. |
| * platform/chromium-win-xp/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-win-xp/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Added. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| |
| 2012-10-17 Elliott Sprehn <esprehn@chromium.org> |
| |
| StyleRareNonInheritedData::contentDataEquivalent only looks at the first ContentData |
| https://bugs.webkit.org/show_bug.cgi?id=99560 |
| |
| Reviewed by Eric Seidel. |
| |
| Test that when the content CSS property changes we update the displayed content. |
| |
| * fast/css-generated-content/content-property-change-expected.html: Added. |
| * fast/css-generated-content/content-property-change.html: Added. |
| |
| 2012-10-17 Dirk Pranke <dpranke@chromium.org> |
| |
| Clone baselines from platform/mac to platform/chromium [1 of 7] |
| https://bugs.webkit.org/show_bug.cgi?id=99666 |
| |
| Unreviewed, expectations change. |
| |
| 2012-10-17 Joanmarie Diggs <jdiggs@igalia.com> |
| |
| [GTK] AccessibilityUIElement::role() should be consistent across platforms wherever possible |
| https://bugs.webkit.org/show_bug.cgi?id=99640 |
| |
| Reviewed by Chris Fleizach. |
| |
| Updated tests and expectations to use the Mac/Safari-style AXRole strings |
| |
| * platform/gtk/accessibility/adjacent-continuations-cause-assertion-failure-expected.txt: |
| * platform/gtk/accessibility/aria-combobox-expected.txt: |
| * platform/gtk/accessibility/aria-fallback-roles-expected.txt: |
| * platform/gtk/accessibility/aria-menubar-menuitems-expected.txt: |
| * platform/gtk/accessibility/aria-roles-expected.txt: |
| * platform/gtk/accessibility/aria-roles-unignored-expected.txt: |
| * platform/gtk/accessibility/aria-roles-unignored.html: |
| * platform/gtk/accessibility/aria-slider-required-attributes-expected.txt: |
| * platform/gtk/accessibility/aria-slider-required-attributes.html: |
| * platform/gtk/accessibility/aria-table-hierarchy-expected.txt: |
| * platform/gtk/accessibility/aria-table-hierarchy.html: |
| * platform/gtk/accessibility/aria-tables-expected.txt: |
| * platform/gtk/accessibility/aria-toggle-button-role-expected.txt: |
| * platform/gtk/accessibility/aria-toggle-button-role.html: |
| * platform/gtk/accessibility/aria-toggle-button-with-title-expected.txt: |
| * platform/gtk/accessibility/button-accessible-name-expected.txt: |
| * platform/gtk/accessibility/button-accessible-name.html: |
| * platform/gtk/accessibility/canvas-description-and-role-expected.txt: |
| * platform/gtk/accessibility/caret-browsing-text-focus-expected.txt: |
| * platform/gtk/accessibility/caret-browsing-text-focus.html: |
| * platform/gtk/accessibility/deleting-iframe-destroys-axcache-expected.txt: |
| * platform/gtk/accessibility/div-within-anchors-causes-crash-expected.txt: |
| * platform/gtk/accessibility/entry-and-password-expected.txt: |
| * platform/gtk/accessibility/input-slider-expected.txt: |
| * platform/gtk/accessibility/input-slider.html: |
| * platform/gtk/accessibility/legend-expected.txt: |
| * platform/gtk/accessibility/list-items-always-exposed-expected.txt: |
| * platform/gtk/accessibility/list-items-always-exposed.html: |
| * platform/gtk/accessibility/media-controls-panel-title-expected.txt: |
| * platform/gtk/accessibility/media-controls-panel-title.html: |
| * platform/gtk/accessibility/name-from-label-expected.txt: |
| * platform/gtk/accessibility/name-from-label.html: |
| * platform/gtk/accessibility/object-with-title-expected.txt: |
| * platform/gtk/accessibility/object-with-title.html: |
| * platform/gtk/accessibility/replaced-objects-in-anonymous-blocks-expected.txt: |
| * platform/gtk/accessibility/spans-expected.txt: |
| * platform/gtk/accessibility/spans-paragraphs-and-divs-expected.txt: |
| * platform/gtk/accessibility/spans-paragraphs-and-divs.html: |
| * platform/gtk/accessibility/spans.html: |
| * platform/gtk/accessibility/svg-image-expected.txt: |
| * platform/gtk/accessibility/table-hierarchy-expected.txt: |
| * platform/gtk/accessibility/table-hierarchy.html: |
| |
| 2012-10-17 Arpita Bahuguna <arpitabahuguna@gmail.com> |
| |
| Incorrect rendering of borders on <col> with span > 1 |
| https://bugs.webkit.org/show_bug.cgi?id=76246 |
| |
| Reviewed by Julien Chaffraix. |
| |
| * fast/table/border-collapsing/cached-change-colgroup-border-color-expected.png: |
| * fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt: |
| * fast/table/border-collapsing/cached-change-colgroup-border-width-expected.png: |
| * fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt: |
| Existing tests modified. This is because previously, while computing collapsed |
| start border, we did not take the preceeding col's enclosing colgroup's end border |
| into consideration. While computing the collapsed start border, only the preceeding |
| col element's end border was considered. |
| |
| With this fix, for the above two tests, the last col's width now changes due to |
| the border being applied to it (the preceeding col's enclosing colgroup's end border) |
| which causes the table's width to change. Also, we should note that the cell's grow |
| by half the border's width; which is expected (on account of their being collapsed |
| borders). |
| |
| * fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.txt: Added. |
| * fast/table/border-collapsing/collapsed-border-with-col-colgroup-span.html: Added. |
| * platform/chromium-linux/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Added. |
| Image only test added for verifying the behavior of collapsed borders with |
| col and colgroup span. |
| New expected image file added for the chromium-linux port. |
| |
| 2012-10-17 Tom Sepez <tsepez@chromium.org> |
| |
| Crash in ContainerNode::removeAllChildren() |
| https://bugs.webkit.org/show_bug.cgi?id=98443 |
| |
| Reviewed by Eric Carlson. |
| |
| * http/tests/security/video-poster-cross-origin-crash2-expected.txt: Added. |
| * http/tests/security/video-poster-cross-origin-crash2.html: Added. |
| |
| 2012-10-17 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Closing connection in upgradeneeded should result in error event |
| https://bugs.webkit.org/show_bug.cgi?id=99486 |
| |
| Reviewed by Tony Chang. |
| |
| Updated test expectation - error, not success. |
| |
| * storage/indexeddb/intversion-close-in-oncomplete-expected.txt: |
| * storage/indexeddb/resources/intversion-close-in-oncomplete.js: |
| (deleteSuccess): |
| (upgradeNeeded.transaction.oncomplete): |
| (upgradeNeeded): |
| (openError): |
| |
| 2012-10-17 Ryosuke Niwa <rniwa@webkit.org> |
| |
| Build fix after r131651. |
| |
| * fast/harness/perftests/runs-per-second-iterations.html: |
| * fast/harness/perftests/runs-per-second-log.html: |
| |
| 2012-10-17 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] Certain SVG content freezes QtWebKit |
| https://bugs.webkit.org/show_bug.cgi?id=97258 |
| |
| Reviewed by Simon Hausmann. |
| |
| * svg/stroke/zero-width-hang-expected.txt: Added. |
| * svg/stroke/zero-width-hang.html: Added. |
| |
| 2012-10-17 Filip Pizlo <fpizlo@apple.com> |
| |
| REGRESSION (r130826 or r130828): Twitter top bar is dysfunctional |
| https://bugs.webkit.org/show_bug.cgi?id=99577 |
| <rdar://problem/12518883> |
| |
| Reviewed by Mark Hahnenberg. |
| |
| * fast/js/dfg-array-pop-value-clearing-expected.txt: Added. |
| * fast/js/dfg-array-pop-value-clearing.html: Added. |
| * fast/js/jsc-test-list: |
| * fast/js/script-tests/dfg-array-pop-value-clearing.js: Added. |
| (foo): |
| |
| 2012-10-17 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Enforce unsigned long/unsigned long long ranges |
| https://bugs.webkit.org/show_bug.cgi?id=99637 |
| |
| Reviewed by Tony Chang. |
| |
| Additional edge case tests and updated expectations. |
| |
| * storage/indexeddb/cursor-advance-expected.txt: |
| * storage/indexeddb/intversion-bad-parameters-expected.txt: |
| * storage/indexeddb/intversion-encoding-expected.txt: |
| * storage/indexeddb/resources/cursor-advance.js: |
| (testBadAdvance.advanceBadly): |
| (testBadAdvance): |
| * storage/indexeddb/resources/intversion-bad-parameters.js: |
| (deleteSuccess): |
| * storage/indexeddb/resources/intversion-encoding.js: |
| |
| 2012-10-17 Tony Chang <tony@chromium.org> |
| |
| fast/forms/range/input-appearance-range-rtl.html off by one pixel |
| https://bugs.webkit.org/show_bug.cgi?id=99625 |
| |
| Reviewed by Ojan Vafai. |
| |
| Run test on GTK+ and Qt now that it is fixed. |
| |
| * platform/gtk/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-17 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, Qt baselines for shadow DOM changes to RenderSlider. |
| There are a couple unexplained failures that I'm still investigating. |
| |
| * platform/chromium-mac/fast/dom/HTMLInputElement/input-slider-update-expected.txt: Removed. |
| * platform/chromium-mac/fast/forms/range/range-thumb-height-percentage-expected.txt: Removed. |
| * platform/chromium-mac/fast/forms/range/slider-padding-expected.txt: Removed. |
| * platform/chromium-mac/fast/repaint/slider-thumb-drag-release-expected.txt: Removed. |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/dom/HTMLInputElement/input-slider-update-expected.txt: |
| * platform/qt/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: Added. |
| * platform/qt/fast/forms/box-shadow-override-expected.txt: |
| * platform/qt/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/qt/fast/forms/range/range-thumb-height-percentage-expected.txt: |
| * platform/qt/fast/forms/range/slider-padding-expected.txt: |
| * platform/qt/fast/multicol/client-rects-expected.txt: |
| * platform/qt/fast/repaint/slider-thumb-drag-release-expected.txt: |
| * platform/qt/fast/repaint/slider-thumb-float-expected.txt: Added. |
| |
| 2012-10-17 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, Apple Mac baselines for shadow DOM changes to RenderSlider. |
| |
| * platform/mac/TestExpectations: |
| * platform/mac/fast/dom/HTMLInputElement/input-slider-update-expected.txt: |
| * platform/mac/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: Added. |
| * platform/mac/fast/forms/box-shadow-override-expected.txt: |
| * platform/mac/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/mac/fast/forms/range/range-thumb-height-percentage-expected.txt: |
| * platform/mac/fast/forms/range/slider-padding-expected.txt: |
| * platform/mac/fast/forms/range/slider-thumb-shared-style-expected.txt: |
| * platform/mac/fast/forms/range/slider-thumb-stylability-expected.txt: Added. |
| * platform/mac/fast/multicol/client-rects-expected.txt: |
| * platform/mac/fast/repaint/slider-thumb-drag-release-expected.txt: |
| * platform/mac/fast/repaint/slider-thumb-float-expected.txt: Added. |
| * platform/mac/media/audio-controls-rendering-expected.txt: |
| * platform/mac/media/controls-after-reload-expected.txt: |
| * platform/mac/media/controls-strict-expected.txt: |
| * platform/mac/media/controls-styling-strict-expected.txt: |
| * platform/mac/media/video-controls-rendering-expected.txt: |
| * platform/mac/media/video-display-toggle-expected.txt: |
| * platform/mac/media/video-no-audio-expected.txt: |
| * platform/mac/media/video-playing-and-pause-expected.txt: |
| |
| 2012-10-17 Filip Pizlo <fpizlo@apple.com> |
| |
| JIT op_get_by_pname should call cti_get_by_val_generic and not cti_get_by_val |
| https://bugs.webkit.org/show_bug.cgi?id=99631 |
| <rdar://problem/12483221> |
| |
| Reviewed by Mark Hahnenberg. |
| |
| * fast/js/get-by-pname-that-looks-like-a-patchable-get-by-val-expected.txt: Added. |
| * fast/js/get-by-pname-that-looks-like-a-patchable-get-by-val.html: Added. |
| * fast/js/jsc-test-list: |
| * fast/js/script-tests/get-by-pname-that-looks-like-a-patchable-get-by-val.js: Added. |
| (foo): |
| |
| 2012-10-17 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, second set of GTK+ baselines for shadow DOM changes to RenderSlider. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/media/audio-controls-rendering-expected.txt: |
| * platform/gtk/media/audio-repaint-expected.txt: |
| * platform/gtk/media/controls-after-reload-expected.txt: |
| * platform/gtk/media/controls-strict-expected.txt: |
| * platform/gtk/media/controls-styling-expected.txt: |
| * platform/gtk/media/controls-styling-strict-expected.txt: |
| * platform/gtk/media/controls-without-preload-expected.txt: |
| * platform/gtk/media/media-controls-clone-expected.txt: |
| * platform/gtk/media/media-document-audio-repaint-expected.txt: |
| * platform/gtk/media/track/track-cue-rendering-horizontal-expected.txt: |
| * platform/gtk/media/track/track-cue-rendering-vertical-expected.txt: |
| * platform/gtk/media/video-controls-rendering-expected.txt: |
| * platform/gtk/media/video-display-toggle-expected.txt: |
| * platform/gtk/media/video-empty-source-expected.txt: |
| * platform/gtk/media/video-no-audio-expected.txt: |
| * platform/gtk/media/video-playing-and-pause-expected.txt: |
| * platform/gtk/media/video-zoom-controls-expected.txt: |
| |
| 2012-10-17 Scott Graham <scottmg@chromium.org> |
| |
| Integer overflows/underflows in all Gamepad controller api calls. |
| https://bugs.webkit.org/show_bug.cgi?id=97262 |
| |
| Reviewed by Abhishek Arya. |
| |
| * gamepad/gamepad-out-of-range-crasher.html: Added. |
| * gamepad/gamepad-out-of-range-crasher-expected.txt: Added. |
| |
| 2012-10-17 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, Chromium baselines for shadow DOM changes to RenderSlider. |
| |
| * platform/chromium-linux-x86/fast/multicol/client-rects-expected.txt: Removed. |
| * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt. |
| * platform/chromium-mac-snowleopard/fast/forms/box-shadow-override-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-appearance-height-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/range/slider-thumb-stylability-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/forms/range/slider-thumb-stylability-expected.txt. |
| * platform/chromium-mac-snowleopard/fast/repaint/slider-thumb-float-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/repaint/slider-thumb-float-expected.txt. |
| * platform/chromium-mac/fast/dom/HTMLInputElement/input-slider-update-expected.txt: Added. |
| * platform/chromium-mac/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt. |
| * platform/chromium-mac/fast/forms/box-shadow-override-expected.png: |
| * platform/chromium-mac/fast/forms/box-shadow-override-expected.txt: |
| * platform/chromium-mac/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: |
| * platform/chromium-mac/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-mac/fast/forms/input-appearance-height-expected.png: |
| * platform/chromium-mac/fast/forms/input-appearance-height-expected.txt: |
| * platform/chromium-mac/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/chromium-mac/fast/forms/range/range-thumb-height-percentage-expected.txt: Added. |
| * platform/chromium-mac/fast/forms/range/slider-padding-expected.txt: Added. |
| * platform/chromium-mac/fast/forms/range/slider-thumb-shared-style-expected.txt: Added. |
| * platform/chromium-mac/fast/forms/range/slider-thumb-stylability-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/forms/range/slider-thumb-stylability-expected.txt. |
| * platform/chromium-mac/fast/hidpi/video-controls-in-hidpi-expected.txt: |
| * platform/chromium-mac/fast/layers/video-layer-expected.txt: |
| * platform/chromium-mac/fast/multicol/client-rects-expected.txt: |
| * platform/chromium-mac/fast/repaint/slider-thumb-drag-release-expected.txt: Added. |
| * platform/chromium-mac/fast/repaint/slider-thumb-float-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/repaint/slider-thumb-float-expected.txt. |
| * platform/chromium-mac/media/audio-controls-rendering-expected.txt: |
| * platform/chromium-mac/media/audio-repaint-expected.txt: |
| * platform/chromium-mac/media/controls-after-reload-expected.txt: |
| * platform/chromium-mac/media/controls-strict-expected.txt: |
| * platform/chromium-mac/media/controls-styling-expected.txt: |
| * platform/chromium-mac/media/controls-styling-strict-expected.txt: |
| * platform/chromium-mac/media/controls-without-preload-expected.txt: |
| * platform/chromium-mac/media/media-controls-clone-expected.txt: |
| * platform/chromium-mac/media/media-document-audio-repaint-expected.txt: |
| * platform/chromium-mac/media/track/track-cue-rendering-horizontal-expected.txt: |
| * platform/chromium-mac/media/track/track-cue-rendering-vertical-expected.txt: |
| * platform/chromium-mac/media/video-controls-rendering-expected.txt: |
| * platform/chromium-mac/media/video-display-toggle-expected.txt: |
| * platform/chromium-mac/media/video-empty-source-expected.txt: |
| * platform/chromium-mac/media/video-no-audio-expected.txt: |
| * platform/chromium-mac/media/video-playing-and-pause-expected.txt: |
| * platform/chromium-mac/media/video-zoom-controls-expected.txt: |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/hidpi/video-controls-in-hidpi-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/hidpi/video-controls-in-hidpi-expected.txt. |
| * platform/chromium-win-xp/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt. |
| * platform/chromium-win-xp/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Removed. |
| * platform/chromium-win-xp/fast/forms/range/slider-thumb-stylability-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/forms/range/slider-thumb-stylability-expected.txt. |
| * platform/chromium-win-xp/fast/repaint/slider-thumb-float-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/repaint/slider-thumb-float-expected.txt. |
| * platform/chromium-win/fast/dom/HTMLInputElement/input-slider-update-expected.txt: |
| * platform/chromium-win/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: |
| * platform/chromium-win/fast/forms/box-shadow-override-expected.txt: |
| * platform/chromium-win/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: |
| * platform/chromium-win/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: |
| * platform/chromium-win/fast/forms/input-appearance-height-expected.txt: |
| * platform/chromium-win/fast/forms/range/input-appearance-range-expected.png: |
| * platform/chromium-win/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/chromium-win/fast/forms/range/range-thumb-height-percentage-expected.txt: |
| * platform/chromium-win/fast/forms/range/slider-padding-expected.txt: |
| * platform/chromium-win/fast/forms/range/slider-thumb-shared-style-expected.txt: |
| * platform/chromium-win/fast/forms/range/slider-thumb-stylability-expected.txt: |
| * platform/chromium-win/fast/hidpi/video-controls-in-hidpi-expected.txt: |
| * platform/chromium-win/fast/multicol/client-rects-expected.txt: |
| * platform/chromium-win/fast/repaint/slider-thumb-drag-release-expected.txt: |
| * platform/chromium-win/fast/repaint/slider-thumb-float-expected.txt: |
| * platform/chromium-win/media/track/track-cue-rendering-vertical-expected.txt: |
| * platform/chromium-win/platform/chromium/virtual/gpu/fast/hidpi/video-controls-in-hidpi-expected.txt: Renamed from LayoutTests/platform/chromium-linux/fast/hidpi/video-controls-in-hidpi-expected.txt. |
| * platform/chromium/TestExpectations: |
| * platform/mac-lion/media/audio-repaint-expected.txt: Removed. |
| |
| 2012-10-17 Dana Jansens <danakj@chromium.org> |
| |
| Unreviewed gardening, mark inspector/styles/styles-history.html as flaky on Linux. |
| https://bugs.webkit.org/show_bug.cgi?id=99519 |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-17 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, first set of GTK+ baselines for shadow DOM changes to RenderSlider. |
| |
| * fast/forms/range/slider-thumb-stylability-expected.txt: Renamed from LayoutTests/platform/efl/fast/forms/range/slider-thumb-stylability-expected.txt. |
| * platform/chromium-mac-snowleopard/fast/hidpi/video-controls-in-hidpi-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/fast/multicol/client-rects-expected.txt: Removed. |
| * platform/chromium-win-xp/fast/multicol/client-rects-expected.txt: Removed. |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/dom/HTMLInputElement/input-slider-update-expected.txt: |
| * platform/gtk/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: Added. |
| * platform/gtk/fast/forms/box-shadow-override-expected.txt: |
| * platform/gtk/fast/forms/input-appearance-height-expected.txt: |
| * platform/gtk/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/gtk/fast/forms/range/range-thumb-height-percentage-expected.txt: Added. |
| * platform/gtk/fast/forms/range/slider-padding-expected.txt: |
| * platform/gtk/fast/forms/range/slider-thumb-shared-style-expected.txt: |
| * platform/gtk/fast/forms/range/slider-thumb-stylability-expected.png: Removed. |
| * platform/gtk/fast/forms/range/slider-thumb-stylability-expected.txt: |
| * platform/gtk/fast/hidpi/video-controls-in-hidpi-expected.txt: |
| * platform/gtk/fast/layers/video-layer-expected.txt: |
| * platform/gtk/fast/multicol/client-rects-expected.txt: |
| * platform/gtk/fast/repaint/slider-thumb-drag-release-expected.txt: |
| * platform/gtk/fast/repaint/slider-thumb-float-expected.txt: Added. |
| * platform/mac/fast/forms/range/slider-thumb-stylability-expected.txt: Removed. |
| |
| 2012-10-17 Dana Jansens <danakj@chromium.org> |
| |
| Rebaseline some windows tests now that the bot is providing results in the right place. |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-win-xp/css1/basic/inheritance-expected.png: Removed. |
| * platform/chromium-win-xp/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.png: Removed. |
| * platform/chromium-win-xp/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: Removed. |
| * platform/chromium-win-xp/tables/mozilla/bugs/bug73321-expected.png: Removed. |
| * platform/chromium-win/css1/basic/inheritance-expected.png: |
| * platform/chromium-win/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.png: |
| * platform/chromium-win/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-win/tables/mozilla/bugs/bug73321-expected.png: |
| |
| 2012-10-17 Philip Rogers <pdr@google.com> |
| |
| Allow lazy initialization of SVG XML animated properties. |
| https://bugs.webkit.org/show_bug.cgi?id=84657 |
| |
| Reviewed by Tim Horton. |
| |
| * platform/mac/svg/animations/use-while-animating-crash-expected.txt: Added. |
| * svg/animations/use-while-animating-crash.html: Added. |
| |
| 2012-10-17 Dan Carney <dcarney@google.com> |
| |
| Bind isolatedWorldSecurityOrigin to world |
| https://bugs.webkit.org/show_bug.cgi?id=99582 |
| |
| Reviewed by Adam Barth. |
| |
| Clean up of isolated worlds added after test completion. |
| |
| * http/tests/security/isolatedWorld/cross-origin-xhr.html: |
| |
| 2012-10-17 Simon Fraser <simon.fraser@apple.com> |
| |
| GraphicsLayer visible rect computation needs to use the current animating transform |
| https://bugs.webkit.org/show_bug.cgi?id=99529 |
| |
| Reviewed by Dean Jackson. |
| |
| Tests that exercise visible-rect computation on an animating layer. |
| |
| * compositing/visible-rect/animated-expected.txt: Added. |
| * compositing/visible-rect/animated-from-none-expected.txt: Added. |
| * compositing/visible-rect/animated-from-none.html: Added. |
| * compositing/visible-rect/animated.html: Added. |
| |
| 2012-10-17 Sadrul Habib Chowdhury <sadrul@chromium.org> |
| |
| plugins: Allow a plugin to dictate whether it can receive drag events or not. |
| https://bugs.webkit.org/show_bug.cgi?id=99355 |
| |
| Reviewed by Tony Chang. |
| |
| Update test to not set contentEditable on the plugin anymore. |
| |
| * platform/chromium/plugins/drag-events-expected.txt: |
| * platform/chromium/plugins/drag-events.html: |
| |
| 2012-10-17 Christophe Dumez <christophe.dumez@intel.com> |
| |
| xss-DENIED-xsl-document-securityOrigin.xml crashes with icon assertion |
| https://bugs.webkit.org/show_bug.cgi?id=99571 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskip http/tests/security/xss-DENIED-xsl-document-securityOrigin.xml |
| for EFL WebKit2 now that it no longer hits an assertion in |
| IconDatabase. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-17 Shinya Kawanaka <shinyak@chromium.org> |
| |
| Dynamically added elements do not get re-projected. |
| https://bugs.webkit.org/show_bug.cgi?id=99227 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/content-reprojection-dynamic-expected.html: Added. |
| * fast/dom/shadow/content-reprojection-dynamic.html: Added. |
| |
| 2012-10-17 Dana Jansens <danakj@chromium.org> |
| |
| Layout Test http/tests/workers/text-encoding.html is flaky crashing on debug bots |
| https://bugs.webkit.org/show_bug.cgi?id=99604 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-17 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Unreviewed inspector test fixed and skipped on JSC. |
| |
| * inspector/debugger/live-edit-breakpoints-expected.txt: |
| * inspector/debugger/live-edit-breakpoints.html: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| |
| 2012-10-17 Hans Muller <hmuller@adobe.com> |
| |
| [CSS Exclusions] Additional simple polygon tests |
| https://bugs.webkit.org/show_bug.cgi?id=98548 |
| |
| Reviewed by Dirk Schulze. |
| |
| Added a pair of CSS Exclusions shape-inside ref-tests for regular polygons |
| with 8 and 16 sides. Also made some small revisions to the supporting code, |
| simple-polyon.js, and the existing simple polygon tests, and to localize and |
| correct the conversion from float to layout coordinates. All of the tests |
| now round/truncate the left edge of line segment intervals depending on whether |
| subpixel layout is enabled. |
| |
| * fast/exclusions/resources/simple-polygon.js: |
| (createRegularPolygonVertices): |
| (polygonXIntercepts): |
| (simulatePolygonShape): |
| (generateSimulatedPolygonShapeInsideElement): |
| (createPolygonShapeInsideTestCase): |
| (createPolygonShapeInsideTestCaseExpected): |
| * fast/exclusions/shape-inside/shape-inside-regular-polygon16-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-regular-polygon16.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-regular-polygon8-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-regular-polygon8.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-001-expected.html: |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-001.html: |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-002-expected.html: |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-002.html: |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-003-expected.html: |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-003.html: |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-004-expected.html: |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-004.html: |
| |
| 2012-10-17 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: [Regression] Undoing script changes does not restore breakpoints. |
| https://bugs.webkit.org/show_bug.cgi?id=99598 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/live-edit-test.js: |
| (initialize_LiveEditTest.InspectorTest.replaceInSource): |
| (initialize_LiveEditTest.InspectorTest.commitSource): |
| (initialize_LiveEditTest.InspectorTest.undoSourceEditing): |
| (initialize_LiveEditTest): |
| * inspector/debugger/live-edit-breakpoints-expected.txt: Added. |
| * inspector/debugger/live-edit-breakpoints.html: Added. |
| * inspector/debugger/live-edit.html: |
| |
| 2012-10-17 Dana Jansens <danakj@chromium.org> |
| |
| Unreviewed rebaseline for ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001.htm |
| |
| * platform/chromium-win-xp/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: Added. |
| |
| 2012-10-17 Joanmarie Diggs <jdiggs@igalia.com> |
| |
| [GTK] accessibility/ignore-spacer-elements.html is failing |
| https://bugs.webkit.org/show_bug.cgi?id=98366 |
| |
| Reviewed by Chris Fleizach. |
| |
| The failure was due to platform-specific expectations of childrenCount. |
| The solution was conditionalizing the test. |
| |
| * accessibility/ignore-spacer-elements.html: Base expected childrenCount on platform. |
| * platform/gtk/TestExpectations: Unskip previously-failing test. |
| |
| 2012-10-17 Mariusz Grzegorczyk <mariusz.g@samsung.com> |
| |
| Unreviewed EFL gardening. |
| https://bugs.webkit.org/show_bug.cgi?id=99596 |
| |
| Unskip editing/inserting, editing/selection, editing/spelling and editing/style categories. |
| Mark missing text expectations for these. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-17 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| [WK2][WTR] InjectedBundlePage::decidePolicyForNavigationAction() should print only filename part of local URLs |
| https://bugs.webkit.org/show_bug.cgi?id=99581 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipped fast/loader/reload-policy-delegate.html for WK2. |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-17 Harald Alvestrand <hta@google.com> |
| |
| Implement the Selector argument to RTCPeerConnection.getStats |
| https://bugs.webkit.org/show_bug.cgi?id=99460 |
| |
| Reviewed by Adam Barth. |
| |
| * fast/mediastream/RTCPeerConnection-statsSelector-expected.txt: Added. |
| * fast/mediastream/RTCPeerConnection-statsSelector.html: Added. |
| |
| 2012-10-17 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| WebKitTestRunner needs layoutTestController.queueReload |
| https://bugs.webkit.org/show_bug.cgi?id=42672 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipped the related test cases for WK2. |
| |
| * platform/efl-wk2/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-17 Kent Tamura <tkent@chromium.org> |
| |
| REGRESSION(r131421): Text baseline becomes incorrect after re-layout of input[type=time] |
| https://bugs.webkit.org/show_bug.cgi?id=99572 |
| |
| Reviewed by Kentaro Hara. |
| |
| * fast/forms/time-multiple-fields/time-multiple-fields-static-relayout-expected.txt: Added. |
| * fast/forms/time-multiple-fields/time-multiple-fields-static-relayout.html: Added. |
| |
| 2012-10-17 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Fixing expectation for fast/forms/range/input-appearance-range-rtl.html, |
| it's a reftest so the failure is actually of pixel nature. |
| |
| Also removing some expectations for tests that now consistently pass. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-17 Dominik Röttsches <dominik.rottsches@intel.com> |
| |
| [EFL] Unreviewed gardening. |
| |
| Unskipping 4 cases after regression was fixed in r131229, |
| moving out a crash and incorrect console loggin on the wk2 bot. |
| |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-17 Mike West <mkwst@chromium.org> |
| |
| V8 should throw a more descriptive exception when blocking 'eval' via CSP. |
| https://bugs.webkit.org/show_bug.cgi?id=94332 |
| |
| Reviewed by Adam Barth. |
| |
| * platform/chromium/TestExpectations: |
| Unskipping these tests, as this patch unbreaks them. |
| * platform/chromium/http/tests/security/contentSecurityPolicy/eval-blocked-expected.txt: |
| * platform/chromium/http/tests/security/contentSecurityPolicy/eval-blocked-in-about-blank-iframe-expected.txt: |
| * platform/chromium/http/tests/security/contentSecurityPolicy/function-constructor-blocked-expected.txt: |
| Updating expectations with the new error message. |
| |
| 2012-10-17 MORITA Hajime <morrita@google.com> |
| |
| Assertion failed on HTMLFormControlElement.cpp: updateFromElementCallback() |
| https://bugs.webkit.org/show_bug.cgi?id=99566 |
| |
| Reviewed by Kent Tamura. |
| |
| * fast/forms/textarea/textarea-autofocus-removal-while-focusing.txt: Added. |
| * fast/forms/textarea/textarea-autofocus-removal-while-focusing.html: Added. |
| |
| 2012-10-17 Anton Muhin <antonm@chromium.org> |
| |
| Unreviewed Chromium rebaselines. |
| |
| * platform/chromium-mac-snowleopard/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: |
| * platform/chromium-mac/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: |
| * platform/chromium-win-xp/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: Added. |
| |
| 2012-10-17 Zoltan Arvai <zarvai@inf.u-szeged.hu> |
| |
| [Qt] Unreviwed gardening. Skip failing reftest after r131497. |
| https://bugs.webkit.org/show_bug.cgi?id=98666 |
| |
| * platform/qt/TestExpectations: Skip fast/forms/range/input-appearance-range-rtl.html. |
| |
| 2012-10-17 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| WebKitTestRunner needs testRunner.queueLoad |
| https://bugs.webkit.org/show_bug.cgi?id=42674 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipped corresponding tests for WK2 and WK2 EFL, put those which still failing to appropriate groups. |
| |
| * platform/efl-wk2/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-17 Douglas Stockwell <dstockwell@chromium.org> |
| |
| Content of replaced elements should be trimmed to the content edge curve. |
| https://bugs.webkit.org/show_bug.cgi?id=63899 |
| |
| Reviewed by Simon Fraser. |
| |
| * fast/replaced/border-radius-clip-content-edge-expected.txt: Added. |
| * fast/replaced/border-radius-clip-content-edge.html: Added. |
| * platform/fast/replaced/border-radius-clip-content-edge-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| * platform/chromium-linux/fast/replaced/border-radius-clip-content-edge-expected.png: Added. |
| * platform/chromium-linux/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: |
| |
| 2012-10-17 Kunihiko Sakamoto <ksakamoto@chromium.org> |
| |
| The HTML5 formtarget/formaction/formenctyp/formmethod/formnovalidate attributes don't work in button tags with nested elements |
| https://bugs.webkit.org/show_bug.cgi?id=90539 |
| |
| Reviewed by Kent Tamura. |
| |
| Added a test case to verify that formaction attribute of <button> element is |
| used when its child <span> is clicked. |
| |
| * fast/forms/formaction-attribute-expected.txt: |
| * fast/forms/formaction-attribute.html: Removed unused doneAction2 variable. |
| |
| 2012-10-16 Csaba Osztrogonác <ossy@webkit.org> |
| |
| Unreviewed, rolling out r131516 and r131550. |
| http://trac.webkit.org/changeset/131516 |
| http://trac.webkit.org/changeset/131550 |
| https://bugs.webkit.org/show_bug.cgi?id=99349 |
| |
| It caused zillion different problem on different platforms |
| |
| * fast/workers/resources/worker-event-listener.js: |
| |
| 2012-10-16 Keishi Hattori <keishi@webkit.org> |
| |
| Add test that checks if scrolling works inside the suggestion picker |
| https://bugs.webkit.org/show_bug.cgi?id=99409 |
| |
| Reviewed by Kent Tamura. |
| |
| We want to test that scrolling, both by scrollbar and mouse wheel, work inside the suggestion picker. |
| |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations-expected.txt: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations.html: |
| |
| 2012-10-16 Kent Tamura <tkent@chromium.org> |
| |
| Re-add a test which was removed mistakenly in r131538. |
| https://bugs.webkit.org/show_bug.cgi?id=98103 |
| |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-type-change-onclick-expected.txt: Added. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-type-change-onclick.html: Added. |
| |
| 2012-10-16 Kent Tamura <tkent@chromium.org> |
| |
| Move tests for calendar picker to platform/chromium/fast/forms/calendar-picker/ |
| https://bugs.webkit.org/show_bug.cgi?id=98103 |
| |
| Reviewed by Yuta Kitamura. |
| |
| Move tests for calendar picker to platform/chromium/fast/forms/ |
| calendar-picker/ because |
| - Ease of skipping |
| - We're going to support non-date types in the calendar picker. |
| - Not sure the calendar picker code will be used on other platforms. |
| |
| * fast/forms/date/calendar-picker-appearance-expected.txt: Removed. |
| * fast/forms/date/calendar-picker-appearance-pre-100-expected.txt: Removed. |
| * fast/forms/date/calendar-picker-appearance-pre-100.html: Removed. |
| * fast/forms/date/calendar-picker-appearance.html: Removed. |
| * fast/forms/date/calendar-picker-common.js: Removed. |
| * fast/forms/date/calendar-picker-key-operations-expected.txt: Removed. |
| * fast/forms/date/calendar-picker-key-operations.html: Removed. |
| * fast/forms/date/calendar-picker-mouse-operations-expected.txt: Removed. |
| * fast/forms/date/calendar-picker-mouse-operations.html: Removed. |
| * fast/forms/date/calendar-picker-type-change-onclick-expected.txt: Removed. |
| * fast/forms/date/calendar-picker-type-change-onclick.html: Removed. |
| * fast/forms/date/calendar-picker-with-step-expected.txt: Removed. |
| * fast/forms/date/calendar-picker-with-step.html: Removed. |
| * platform/chromium-linux-x86/fast/forms/date/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-linux-x86/platform/chromium/fast/forms/calendar-picker: Added. |
| * platform/chromium-linux-x86/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Copied from LayoutTests/platform/chromium-linux-x86/fast/forms/date/calendar-picker-appearance-expected.png. |
| * platform/chromium-linux/fast/forms/date/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker: Added. |
| * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Copied from LayoutTests/platform/chromium-linux/fast/forms/date/calendar-picker-appearance-expected.png. |
| * platform/chromium-mac-snowleopard/fast/forms/date/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Copied from LayoutTests/platform/chromium-mac-snowleopard/fast/forms/date/calendar-picker-appearance-expected.png. |
| * platform/chromium-mac/fast/forms/date/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/forms/date/calendar-picker-appearance-expected.png. |
| * platform/chromium-win-xp/fast/forms/date/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-win-xp/platform/chromium/fast/forms/calendar-picker: Added. |
| * platform/chromium-win-xp/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Copied from LayoutTests/platform/chromium-win-xp/fast/forms/date/calendar-picker-appearance-expected.png. |
| * platform/chromium-win/fast/forms/date/calendar-picker-appearance-expected.png: Removed. |
| * platform/chromium-win/fast/forms/date/calendar-picker-key-operations-expected.txt: Removed. |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker: Added. |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png: Copied from LayoutTests/platform/chromium-win/fast/forms/date/calendar-picker-appearance-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/forms/date/calendar-picker-key-operations-expected.txt. |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.txt: Copied from LayoutTests/fast/forms/date/calendar-picker-appearance-expected.txt. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step.html: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance.html: Copied from LayoutTests/fast/forms/date/calendar-picker-appearance.html. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations-expected.txt: Copied from LayoutTests/fast/forms/date/calendar-picker-key-operations-expected.txt. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html: Copied from LayoutTests/fast/forms/date/calendar-picker-key-operations.html. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-mouse-operations-expected.txt: Copied from LayoutTests/fast/forms/date/calendar-picker-mouse-operations-expected.txt. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-mouse-operations.html: Copied from LayoutTests/fast/forms/date/calendar-picker-mouse-operations.html. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-pre-100-year-expected.txt: Copied from LayoutTests/fast/forms/date/calendar-picker-appearance-pre-100-expected.txt. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-pre-100-year.html: Copied from LayoutTests/fast/forms/date/calendar-picker-appearance-pre-100.html. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-with-step-expected.txt: Copied from LayoutTests/fast/forms/date/calendar-picker-with-step-expected.txt. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-with-step.html: Copied from LayoutTests/fast/forms/date/calendar-picker-with-step.html. |
| * platform/chromium/fast/forms/calendar-picker/resources: Added. |
| * platform/chromium/fast/forms/calendar-picker/resources/calendar-picker-common.js: Copied from LayoutTests/fast/forms/date/calendar-picker-common.js. |
| * platform/chromium/fast/forms/page-popup/page-popup-adjust-rect.html: Fix calendar-picker-common.js path. |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-16 Dirk Pranke <dpranke@chromium.org> |
| |
| Update Chromium ML expectations |
| |
| Unreviewed, expectations change. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: |
| |
| 2012-10-16 Joseph Pecoraro <pecoraro@apple.com> |
| |
| HTMLSelectElement::optionSelectedByUser confuses listIndex and optionIndex |
| https://bugs.webkit.org/show_bug.cgi?id=99523 |
| |
| Reviewed by Simon Fraser. |
| |
| Extend the dom activate test to test calls on a <select multiple> with |
| <optgroup>s. This previously untested case was broken. |
| |
| * platform/mac/fast/objc/dom-html-select-activate-expected.txt: |
| * platform/mac/fast/objc/dom-html-select-activate.html: |
| |
| 2012-10-16 Jian Li <jianli@chromium.org> |
| |
| Rename feature define ENABLE_WIDGET_REGION to ENABLE_DRAGGBALE_REGION |
| https://bugs.webkit.org/show_bug.cgi?id=98975 |
| |
| Reviewed by Adam Barth. |
| |
| Renaming is needed to better match with the draggable region code. |
| |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Unreviewed, rebaselines after r131358 |
| https://bugs.webkit.org/show_bug.cgi?id=99441 |
| |
| * platform/chromium-win-xp/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-win-xp/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| |
| 2012-10-16 James Simonsen <simonjam@chromium.org> |
| |
| [Page Visibility API] View-less documents should report as hidden |
| https://bugs.webkit.org/show_bug.cgi?id=99410 |
| |
| Reviewed by Tony Gentilcore. |
| |
| * fast/events/page-visibility-null-view-expected.txt: Added. |
| * fast/events/page-visibility-null-view.html: Added. |
| |
| 2012-10-16 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, broaden Chromium TestExpectations to match waterfall. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Rebaseline mac compositing/geometry/fixed-position-transform-composited-page-scale-down.html |
| https://bugs.webkit.org/show_bug.cgi?id=89702 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-mac-snowleopard/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: Removed. |
| * platform/chromium-mac/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, fix TestExpectations for Qt and GTK after RenderSlider change. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/media/video-volume-slider-expected.txt: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Rebaseline for css1/basic/inheritance.html |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-mac/css1/basic/inheritance-expected.png: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Web Inspector: inspector/styles/styles-history.html is failing Text on win7 |
| https://bugs.webkit.org/show_bug.cgi?id=99519 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Rebaselines for r131503 |
| https://bugs.webkit.org/show_bug.cgi?id=99516 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, fix lint error in chromium-android/TestExpectations. |
| |
| * platform/chromium-android/TestExpectations: |
| |
| 2012-10-16 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, lint fixes for TestExpectations. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Lint fixes for TestExpectations |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Rebaselines for r131503 |
| https://bugs.webkit.org/show_bug.cgi?id=99516 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Some tests need rebaseline after r131497 |
| https://bugs.webkit.org/show_bug.cgi?id=99511 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Joanmarie Diggs <jdiggs@igalia.com> |
| |
| [GTK] accessibility/radio-button-title-label.html is failing |
| https://bugs.webkit.org/show_bug.cgi?id=98374 |
| |
| Unreviewed. Unskipped test, new port-specific baseline. |
| |
| New baseline for the GTK port. If there is a proper label tag, we |
| expect the widget to get its name/title from that label. The aria |
| labelledby property is exposed in addition to the label; not instead |
| of the label. |
| |
| * platform/gtk/TestExpectations: Unskipped failing test. |
| * platform/gtk/accessibility/radio-button-title-label-expected.txt: Added. |
| |
| 2012-10-16 Dirk Pranke <dpranke@chromium.org> |
| |
| [chromium] add Mountain Lion baselines |
| https://bugs.webkit.org/show_bug.cgi?id=99505 |
| |
| Reviewed by Ojan Vafai. |
| |
| This change adds a temporary 10.8/MountainLion-specific |
| expectations file for Chromium so that the bot can be green |
| while we are updating all the baselines and triaging failures. |
| |
| * platform/chromium-mac-mountainlion/TestExpectations: Added. |
| |
| 2012-10-16 Joanmarie Diggs <jdiggs@igalia.com> |
| |
| [GTK] accessibility/inline-continuations.html is failing |
| https://bugs.webkit.org/show_bug.cgi?id=98367 |
| |
| Unreviewed. Unskipped test, new port-specific expectations. |
| |
| ATs for the GTK port are expecting only meaningful text objects, with |
| the text of spans getting folded into the parent object. |
| |
| * platform/gtk/TestExpectations: Updated to unskip test. |
| * platform/gtk/accessibility/inline-continuations-expected.txt: Added. |
| |
| 2012-10-16 Emil A Eklund <eae@chromium.org> |
| |
| Remove special-case flooring of baselinePosition for replaced elements in InlineFlowBox::placeBoxesInBlockDirection |
| https://bugs.webkit.org/show_bug.cgi?id=99376 |
| |
| Reviewed by Levi Weintraub. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Filip Pizlo <fpizlo@apple.com> |
| |
| GetScopedVar CSE matches dead GetScopedVar's leading to IR corruption |
| https://bugs.webkit.org/show_bug.cgi?id=99470 |
| <rdar://problem/12363698> |
| |
| Rubber stamped by Mark Hahnenberg. |
| |
| * fast/js/dfg-cse-dead-get-scoped-var-expected.txt: Added. |
| * fast/js/dfg-cse-dead-get-scoped-var.html: Added. |
| * fast/js/jsc-test-list: |
| * fast/js/script-tests/dfg-cse-dead-get-scoped-var.js: Added. |
| (foo.return.if): |
| (foo): |
| |
| 2012-10-16 Adam Barth <abarth@webkit.org> |
| |
| Document::adoptNode shouldn't special-case <iframe> |
| https://bugs.webkit.org/show_bug.cgi?id=99247 |
| |
| Reviewed by Ryosuke Niwa. |
| |
| Test that adopting an object element into itself also throws an |
| exception. |
| |
| * fast/frames/adopt-object-into-itself-expected.txt: Added. |
| * fast/frames/adopt-object-into-itself.html: Added. |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| lots-of-objects.html is flaky crashing on the webkit.org mac bot. |
| http://code.google.com/p/chromium/issues/detail?id=46603 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Tony Chang <tony@chromium.org> |
| |
| input[type=range] as a flex item renders thumb at wrong position |
| https://bugs.webkit.org/show_bug.cgi?id=98666 |
| |
| Reviewed by Ojan Vafai. |
| |
| Changing the render tree to use RenderFlexibleBox instead of RenderDeprecatedFlexibleBox |
| and not using a RenderLayer unless noted otherwise. |
| |
| * css3/flexbox/flexitem-stretch-range-expected.html: Added. |
| * css3/flexbox/flexitem-stretch-range.html: Added. New test to verify stretched flex item has the |
| thumb in the correct place. |
| * platform/chromium-linux/fast/dom/HTMLInputElement/input-slider-update-expected.txt: |
| * platform/chromium-linux/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: |
| * platform/chromium-linux/fast/forms/box-shadow-override-expected.txt: |
| * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Changed the default height to |
| 129px for vertical controls. This makes more sense than having a height of 100%. |
| * platform/chromium-linux/fast/forms/input-appearance-height-expected.txt: |
| * platform/chromium-linux/fast/forms/range/input-appearance-range-expected.png: The thumb now appears below the |
| focus ring. This matches other form controls like buttons and textareas. |
| * platform/chromium-linux/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/chromium-linux/fast/forms/range/range-thumb-height-percentage-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-padding-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-thumb-shared-style-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-thumb-stylability-expected.txt: |
| * platform/chromium-linux/fast/hidpi/video-controls-in-hidpi-expected.txt: |
| * platform/chromium-linux/fast/multicol/client-rects-expected.txt: |
| * platform/chromium-linux/fast/repaint/slider-thumb-drag-release-expected.txt: |
| * platform/chromium-linux/fast/repaint/slider-thumb-float-expected.txt: |
| * platform/chromium-linux/media/track/track-cue-rendering-vertical-expected.txt: |
| * platform/chromium-win/fast/layers/video-layer-expected.txt: |
| * platform/chromium-win/media/audio-controls-rendering-expected.txt: |
| * platform/chromium-win/media/audio-repaint-expected.txt: |
| * platform/chromium-win/media/controls-after-reload-expected.txt: |
| * platform/chromium-win/media/controls-strict-expected.txt: |
| * platform/chromium-win/media/controls-styling-expected.txt: |
| * platform/chromium-win/media/controls-styling-strict-expected.txt: |
| * platform/chromium-win/media/controls-without-preload-expected.txt: |
| * platform/chromium-win/media/media-controls-clone-expected.txt: |
| * platform/chromium-win/media/media-document-audio-repaint-expected.txt: |
| * platform/chromium-win/media/track/track-cue-rendering-horizontal-expected.txt: |
| * platform/chromium-win/media/video-controls-rendering-expected.txt: |
| * platform/chromium-win/media/video-display-toggle-expected.txt: |
| * platform/chromium-win/media/video-empty-source-expected.txt: |
| * platform/chromium-win/media/video-no-audio-expected.txt: |
| * platform/chromium-win/media/video-playing-and-pause-expected.txt: |
| * platform/chromium-win/media/video-zoom-controls-expected.txt: |
| |
| 2012-10-16 Xianzhu Wang <wangxianzhu@chromium.org> |
| |
| [Chromium] Android: Need a way to get appropriate font for some specific characters. |
| https://bugs.webkit.org/show_bug.cgi?id=67587 |
| |
| Reviewed by Adam Barth. |
| |
| Removed unnecessary rebaselines. |
| Removed failure expectations for the tests now pass. |
| Added pixel only rebaselines for some of the above tests. |
| |
| * platform/chromium-android/fast/repaint/japanese-rl-selection-repaint-expected.png: Added. New pixel rebaseline. |
| * platform/chromium-android/fast/writing-mode/japanese-lr-selection-expected.png: Removed. Unnecessary rebaseline. |
| * platform/chromium-android/fast/writing-mode/japanese-lr-selection-expected.txt: Removed. Unnecessary rebaseline. |
| * platform/chromium-android/fast/writing-mode/japanese-rl-selection-expected.png: Added. New pixel rebaseline. |
| * platform/chromium-android/fast/writing-mode/japanese-rl-text-with-broken-font-expected.png: Removed. Unnecessary rebaseline. |
| * platform/chromium/TestExpectations: Removed the failure expectations for the tests now pass. |
| |
| 2012-10-16 Tommy Widenflycht <tommyw@google.com> |
| |
| MediaStream API: Add the chromium API for RTCDataChannel |
| https://bugs.webkit.org/show_bug.cgi?id=99435 |
| |
| Reviewed by Adam Barth. |
| |
| Adding tests for RTCDataChannel. |
| |
| * fast/mediastream/RTCPeerConnection-datachannel-expected.txt: Added. |
| * fast/mediastream/RTCPeerConnection-datachannel.html: Added. |
| |
| 2012-10-16 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, rebaseline 2 Chromium Mac test. |
| Small differences due to using MESA. |
| |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/hidpi/focus-rings-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/virtual/gpu/fast/hidpi/video-controls-in-hidpi-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Stephen Chenney <schenney@chromium.org> |
| |
| An feImage that tries to render itself should be stopped |
| https://bugs.webkit.org/show_bug.cgi?id=94652 |
| |
| Reviewed by Eric Seidel. |
| |
| Ref-test to verify that an feImage that tries to draw itself will not |
| crash. This test must be render in order to verify the result. Do not |
| convert to dumpAstext. |
| |
| * svg/filters/feImage-self-referencing-expected.html: Added. |
| * svg/filters/feImage-self-referencing.html: Added. |
| |
| 2012-10-16 Nico Weber <thakis@chromium.org> |
| |
| [chromium/mac] Make spelling indicator HighDPI |
| https://bugs.webkit.org/show_bug.cgi?id=99417 |
| |
| Reviewed by Stephen White. |
| |
| New baselines. |
| |
| * platform/chromium-mac/editing/spelling/inline-spelling-markers-hidpi-expected.png : |
| * platform/chromium-mac/editing/spelling/grammar-markers-hidpi-expected.png : |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Remove expected fails for tests that need rebaseline after http://trac.webkit.org/changeset/131358 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Tony Chang <tony@chromium.org> |
| |
| in a column flexbox, input overflows the box when stretched |
| https://bugs.webkit.org/show_bug.cgi?id=99273 |
| |
| Reviewed by Ojan Vafai. |
| |
| Add a ref test since we're testing form rendering. Make sure that we get the |
| right behavior without the performance optimization (e.g., in multiline flexbox). |
| |
| * css3/flexbox/stretch-input-in-column-expected.html: Added. |
| * css3/flexbox/stretch-input-in-column.html: Added. |
| |
| 2012-10-16 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, unskip a now passing test. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-16 Simon Fraser <simon.fraser@apple.com> |
| |
| REGRESSION (r128787): Fixed position div causes other elements to not update correctly |
| https://bugs.webkit.org/show_bug.cgi?id=98579 |
| |
| Reviewed by Beth Dakin. |
| |
| Repaint test that scrolls an overflow element until its content layers overlap some |
| other composited element. Only the pixel result is interesting. |
| |
| * compositing/repaint/requires-backing-repaint-expected.png: Added. |
| * compositing/repaint/requires-backing-repaint-expected.txt: Added. |
| * compositing/repaint/requires-backing-repaint.html: Added. |
| |
| 2012-10-16 Mike Reed <reed@google.com> |
| |
| update expectations preparing for skia optimization |
| https://bugs.webkit.org/show_bug.cgi?id=99476 |
| |
| Reviewed by NOBODY. |
| |
| crbug.com/156097 |
| Chrome will enable a skia optimization (see crbug/156097). In preparation for that, we mark these tests |
| to be rebaselined after that change lands. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: setTimeout in layout tests causes flakiness in multiprocess ports |
| https://bugs.webkit.org/show_bug.cgi?id=98949 |
| |
| Reviewed by Tony Chang. |
| |
| In multiprocess ports with asynchronous IPC, events and timers may race causing script |
| callbacks to execute in different orders. |
| |
| Eliminate the uses of setTimeout() where the intent is to have code delayed but may |
| race with a pending event. |
| |
| * fast/js/resources/js-test-pre.js: |
| (evalAndLog) Added quiet flag. |
| * storage/indexeddb/deletedatabase-blocked-expected.txt: |
| * storage/indexeddb/deletedatabase-delayed-by-open-and-versionchange-expected.txt: |
| * storage/indexeddb/deletedatabase-delayed-by-versionchange-expected.txt: |
| * storage/indexeddb/intversion-close-between-events-expected.txt: |
| * storage/indexeddb/resources/deletedatabase-blocked.js: Remove setTimeout. |
| (test.request.onsuccess.openOnSuccess.h.onversionchange): |
| (test.request.onsuccess.openOnSuccess.request.onblocked): |
| * storage/indexeddb/resources/deletedatabase-delayed-by-open-and-versionchange.js: Remove setTimeout. |
| (test.request.onsuccess.openOnSuccess.h.onversionchange): |
| (test.request.onsuccess.openOnSuccess.request.onblocked): |
| * storage/indexeddb/resources/deletedatabase-delayed-by-versionchange.js: Remove setTimeout. |
| (test.request.onsuccess.openOnSuccess.h.onversionchange): |
| (test.request.onsuccess.openOnSuccess.request.onsuccess.h2OpenOnSuccess.request.onblocked): |
| * storage/indexeddb/resources/intversion-close-between-events.js: Test was intended to call db.close() |
| between "complete" and "success" but in single process ports this is not possible, and in multi-process |
| ports is not reliable. To make the test not flaky and watch out for regressions in this edge case, it |
| is changed to have minimal logging. |
| (deleteSuccess): |
| (upgradeNeeded.transaction.oncomplete): |
| (upgradeNeeded): |
| (closeDB): |
| (openSuccess): |
| (checkFinished): |
| * storage/indexeddb/resources/intversion-close-in-oncomplete.js: Log on error rather than timing out. |
| (deleteSuccess): |
| * storage/indexeddb/resources/setversion-blocked.js: Removed setTimeout. |
| (test.request.onsuccess.h1OpenOnSuccess.request.onsuccess.h2OpenOnSuccess.h2.onversionchange): |
| (test.request.onsuccess.h1OpenOnSuccess.request.onsuccess.h2OpenOnSuccess.request.onblocked): |
| * storage/indexeddb/resources/shared.js: |
| (evalAndExpectException) Added quiet flag. |
| * storage/indexeddb/setversion-blocked-expected.txt: |
| |
| 2012-10-16 Takashi Sakamoto <tasak@google.com> |
| |
| [Meta] [Shadow] contenteditable attribute for distributed nodes. |
| https://bugs.webkit.org/show_bug.cgi?id=90017 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/user-modify-inheritance-expected.txt: |
| * fast/dom/shadow/user-modify-inheritance.html: |
| |
| 2012-10-16 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Get rid of (now empty) JavaScriptSource and StyleSource, rename all usages to UISourceCode. |
| https://bugs.webkit.org/show_bug.cgi?id=99469 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/debugger-test.js: |
| (initialize_DebuggerTest): |
| * http/tests/inspector/workspace-test.js: |
| (initialize_WorkspaceTest.InspectorTest.addMockUISourceCodeToWorkspace): |
| * inspector/debugger/breakpoint-manager.html: |
| * inspector/debugger/network-uisourcecode-provider-expected.txt: |
| * inspector/debugger/script-formatter-breakpoints.html: |
| * inspector/debugger/script-formatter-console.html: |
| * inspector/debugger/script-formatter-search.html: |
| * inspector/debugger/script-snippet-model.html: |
| * inspector/debugger/scripts-panel.html: |
| * inspector/debugger/source-frame-count.html: |
| * inspector/styles/edit-inspector-stylesheet.html: |
| * inspector/styles/styles-history.html: |
| |
| 2012-10-15 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Extract domain specific editing handling logic from UISourceCode (step 2). |
| https://bugs.webkit.org/show_bug.cgi?id=99301 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/debugger-test.js: |
| (initialize_DebuggerTest): |
| * inspector/styles/edit-inspector-stylesheet.html: |
| |
| 2012-10-16 Dana Jansens <danakj@chromium.org> |
| |
| Layout Test fast/forms/date/calendar-picker-key-operations.html is failing |
| https://bugs.webkit.org/show_bug.cgi?id=99466 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: [Elements] Double-click to live edit style tags changes text to 'undefined' in some situations |
| https://bugs.webkit.org/show_bug.cgi?id=99336 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| Change the DOM tree dump format to include newlines replaced by '\n's. |
| |
| * http/tests/inspector/elements-test.js: |
| (initialize_ElementTest.InspectorTest.dumpElementsTree): |
| * inspector/elements/edit-dom-actions-expected.txt: |
| * inspector/elements/edit-dom-actions.html: |
| * inspector/elements/elements-panel-limited-children-expected.txt: |
| * inspector/elements/elements-panel-structure-expected.txt: |
| * inspector/elements/iframe-load-event-expected.txt: |
| * inspector/elements/insert-node-expected.txt: |
| * inspector/elements/perform-undo-undo-expected.txt: |
| * inspector/elements/user-properties-expected.txt: |
| * inspector/styles/force-pseudo-state-expected.txt: |
| |
| 2012-10-16 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [GTK] Update baselines for failing svg test after r131435 |
| https://bugs.webkit.org/show_bug.cgi?id=99462 |
| |
| Unreviewed GTK gardening. |
| |
| Updating baselines after downgrading the Cairo to version 1.10.2. |
| |
| * platform/gtk/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt: |
| |
| 2012-10-16 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding (flaky) crashing expectations for a couple of tests. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-16 Mike West <mkwst@chromium.org> |
| |
| Web Inspector: Whitelist safe styles for 'console.log('%c...', ...)'. |
| https://bugs.webkit.org/show_bug.cgi?id=98945 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/console-test.js: |
| (initialize_ConsoleTest.InspectorTest.dumpConsoleMessagesWithStyles): |
| Use the 'cssText' property of an element, rather than reading from |
| its 'style' attribute. Also, gracefully handle unstyled elements |
| by explicitly noting their emptyness. |
| * inspector/console/console-format-style-whitelist-expected.txt: Added. |
| * inspector/console/console-format-style-whitelist.html: Added. |
| |
| 2012-10-16 Keishi Hattori <keishi@webkit.org> |
| |
| [Chromium] Rebaseline calendar-picker-key-operations.html due to r162114 |
| |
| Unreviewed. |
| |
| * fast/forms/date/calendar-picker-key-operations-expected.txt: |
| * platform/chromium-win/fast/forms/date/calendar-picker-key-operations-expected.txt: |
| |
| 2012-10-16 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Updating baselines and expectations after downgrading the Cairo |
| version used in JHBuild dependencies back to 1.10.2. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt: |
| * platform/gtk/svg/batik/text/smallFonts-expected.txt: |
| * platform/gtk/svg/batik/text/textGlyphOrientationHorizontal-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPath-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPath2-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPath3-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPathSpaces-expected.txt: |
| * platform/gtk/svg/batik/text/verticalTextOnPath-expected.txt: |
| * platform/gtk/svg/custom/js-update-path-changes-expected.txt: |
| * platform/gtk/svg/custom/js-update-path-removal-expected.txt: |
| * platform/gtk/svg/custom/path-textPath-simulation-expected.txt: |
| |
| 2012-10-16 Keishi Hattori <keishi@webkit.org> |
| |
| Add test that checks that reloading after setting a value for an input element from a suggestion picker resets the values |
| https://bugs.webkit.org/show_bug.cgi?id=99407 |
| |
| Reviewed by Kent Tamura. |
| |
| We want to test that a reload resets values of input elements, even if |
| they were set by the suggestion picker. |
| |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-reset-value-after-reload-expected.txt: Added. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-reset-value-after-reload.html: Added. |
| |
| 2012-10-16 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Kent Tamura <tkent@chromium.org> |
| |
| Fix some appearance glitches of multiple fields input elements |
| https://bugs.webkit.org/show_bug.cgi?id=99412 |
| |
| Reviewed by Kentaro Hara. |
| |
| All of rendering tests for multiple fields inputs need rebaseline |
| because of the padding change. |
| |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.txt: |
| * fast/forms/time-multiple-fields/time-multiple-fields-appearance-style.html: |
| Add a fixed height case. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-16 Keishi Hattori <keishi@webkit.org> |
| |
| [Chromium] Mark date-suggestion-picker-appearance.html as need rebaseline |
| |
| Unreviewed. |
| |
| Mark date-suggestion-picker-appearance.html as need rebaseline until chromium side change lands. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Keishi Hattori <keishi@webkit.org> |
| |
| Move suggestion picker tests to suggestion-picker directory |
| https://bugs.webkit.org/show_bug.cgi?id=99415 |
| |
| Reviewed by Kent Tamura. |
| |
| Moving the tests suggestion picker tests to platform/chromium/fast/forms/suggestion-picker chromium android can easily skip them. |
| |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-linux/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png. |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-linux/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-linux/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png. |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png. |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png. |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-key-operations-expected.txt: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-key-operations-expected.txt. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.png: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.png: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png. |
| * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-key-operations-expected.txt: Renamed from LayoutTests/platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-key-operations-expected.txt. |
| * platform/chromium/TestExpectations: Removed obsolete lines. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-rtl.html: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl.html. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance-with-scroll-bar.html: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar.html. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-appearance.html: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-appearance.html. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-key-operations-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-key-operations-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-key-operations.html: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-key-operations.html. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-min-max-attribute.html: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-mouse-operations-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html: Renamed from LayoutTests/platform/chromium/fast/forms/date/date-suggestion-picker-mouse-operations.html. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-step-attribute.html: |
| * platform/chromium/fast/forms/suggestion-picker/suggestion-picker-common.js: Renamed from LayoutTests/fast/forms/resources/suggestion-picker-common.js. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-rtl.html: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl.html. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance-with-scroll-bar.html: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar.html. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-appearance.html: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-appearance.html. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-key-operations-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-key-operations-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-key-operations.html: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-key-operations.html. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute.html: |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations-expected.txt: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-mouse-operations-expected.txt. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations.html: Renamed from LayoutTests/platform/chromium/fast/forms/time/time-suggestion-picker-mouse-operations.html. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute.html: |
| |
| 2012-10-15 Yury Semikhatsky <yurys@chromium.org> |
| |
| Web Inspector: restore watch expression expansion state |
| https://bugs.webkit.org/show_bug.cgi?id=99304 |
| |
| Reviewed by Pavel Feldman. |
| |
| Expand watch expression value and its properties if they were expanded |
| before update. |
| |
| * inspector/debugger/watch-expressions-preserve-expansion-expected.txt: Added. |
| * inspector/debugger/watch-expressions-preserve-expansion.html: Added. |
| |
| 2012-10-15 Mike West <mkwst@chromium.org> |
| |
| Warn when CSP headers don't separate directives with ';'. |
| https://bugs.webkit.org/show_bug.cgi?id=99274 |
| |
| Reviewed by Adam Barth. |
| |
| * http/tests/security/contentSecurityPolicy/source-list-parsing-no-semicolon-expected.txt: Added. |
| * http/tests/security/contentSecurityPolicy/source-list-parsing-no-semicolon.html: Added. |
| |
| 2012-10-15 Pablo Flouret <pablof@motorola.com> |
| |
| Add force parameter to DOMTokenList.toggle |
| https://bugs.webkit.org/show_bug.cgi?id=99375 |
| |
| Reviewed by Darin Adler. |
| |
| * fast/dom/HTMLElement/class-list-expected.txt: |
| * fast/dom/HTMLElement/class-list-quirks-expected.txt: |
| * fast/dom/HTMLElement/script-tests/class-list.js: |
| (shouldThrowDOMException): |
| |
| 2012-10-15 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Keishi Hattori <keishi@webkit.org> |
| |
| Add tests for suggestion picker that test step/min/max attributes |
| https://bugs.webkit.org/show_bug.cgi?id=99168 |
| |
| Reviewed by Kent Tamura. |
| |
| These tests that setting step/min/max attributes filters out values from the suggestion picker. |
| |
| * fast/forms/resources/suggestion-picker-common.js: |
| (valueForEntry): Returns value for an suggestion list entry element. |
| (highlightedEntry): |
| (entryValues): Returns an array of entry values. |
| (openPicker): Added callback argument. |
| (popupOpenCallbackWrapper): |
| * platform/chromium-android/TestExpectations: |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-min-max-attribute-expected.txt: Added. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-min-max-attribute.html: Added. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-step-attribute-expected.txt: Added. |
| * platform/chromium/fast/forms/suggestion-picker/date-suggestion-picker-step-attribute.html: Added. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute-expected.txt: Added. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-min-max-attribute.html: Added. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute-expected.txt: Added. |
| * platform/chromium/fast/forms/suggestion-picker/time-suggestion-picker-step-attribute.html: Added. |
| |
| 2012-10-15 Vlad Grecescu <igrecesc@adobe.com>, Douglas Stockwell <dstockwell@chromium.org> |
| |
| Support for background-clip:content-box and padding-box with border-radius |
| https://bugs.webkit.org/show_bug.cgi?id=23166 |
| |
| Reviewed by Simon Fraser. |
| |
| * fast/css/background-clip-radius-values-expected.png: Added. |
| * fast/css/background-clip-radius-values-expected.txt: Added. |
| * fast/css/background-clip-radius-values.html: Added. |
| * platform/chromium-linux/fast/css/background-clip-radius-values-expected.png: Added. |
| * platform/chromium-linux/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.png: |
| * platform/chromium/TestExpectations: |
| * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.png: Added. |
| * platform/qt/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-15 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Layout Test *-multiple-fields-keyboard-events.html etc. are failing on Win XP |
| https://bugs.webkit.org/show_bug.cgi?id=99408 |
| |
| These failures are expected. Just do rebaseline. |
| |
| * platform/chromium-win-xp/fast/forms/date-multiple-fields/date-multiple-fields-keyboard-events-expected.txt: Added. |
| * platform/chromium-win-xp/fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events-expected.txt: Added. |
| * platform/chromium-win-xp/fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events-expected.txt: Added. |
| |
| 2012-10-15 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectations updated. |
| |
| Now lint passes. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Kenichi Ishibashi <bashi@chromium.org> |
| |
| [WebSocket] WebSocketInflater should handle BFINAL = 1 blocks |
| https://bugs.webkit.org/show_bug.cgi?id=99282 |
| |
| Reviewed by Yuta Kitamura. |
| |
| Added a test for receiving compressed blocks with BFINAL set to 1. |
| |
| * http/tests/websocket/tests/hybi/deflate-frame-set-bfinal-expected.txt: Added. |
| * http/tests/websocket/tests/hybi/deflate-frame-set-bfinal.html: Added. |
| * http/tests/websocket/tests/hybi/deflate-frame_wsh.py: |
| (web_socket_do_extra_handshake): Call set_bfinal() if the 'set_bfinal' parameter is passed. |
| |
| 2012-10-15 Simon Fraser <simon.fraser@apple.com> |
| |
| Fix GraphicsLayer visible rect computation when scrolling in WebKit1 |
| https://bugs.webkit.org/show_bug.cgi?id=99385 |
| |
| Reviewed by Dean Jackson, Tim Horton. |
| |
| scrolled.html tests the visible rect after scrolling. The other tests |
| are for visibleRect in iframes, with and without compositing layers |
| in the parent document (which exercises different code paths in WebKit1). |
| |
| * compositing/visible-rect/iframe-and-layers-expected.txt: Added. |
| * compositing/visible-rect/iframe-and-layers.html: Added. |
| * compositing/visible-rect/iframe-no-layers-expected.txt: Added. |
| * compositing/visible-rect/iframe-no-layers.html: Added. |
| * compositing/visible-rect/resources/subframe-with-layers.html: Added. |
| * compositing/visible-rect/scrolled-expected.txt: Added. |
| * compositing/visible-rect/scrolled.html: Added. |
| * platform/mac-wk2/compositing/visible-rect/iframe-no-layers-expected.txt: Added. |
| |
| 2012-10-14 Kent Tamura <tkent@chromium.org> |
| |
| Input elements with multiple fields UI should set appropriate direction for browser locale automatically |
| https://bugs.webkit.org/show_bug.cgi?id=99291 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n.html: |
| Added. We can confirm ar-eg and he-il have RTL layout. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.txt: Added. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-l10n-expected.png: Added. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-keyboard-events-expected.txt: |
| * fast/forms/date-multiple-fields/date-multiple-fields-keyboard-events.html: |
| - Enable the lang-attribute-aware-form-control-UI feature. |
| - Set lang=he-il instead of dir=rtl because dir=rtl is ignored. |
| * fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events.html: Ditto. |
| * fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events.html: Ditto. |
| |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| Updated becaues dir=RTL doesn't affect. |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| Ditto. |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| Ditto. |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| Ditto. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| inspector/styles/styles-computed-trace.html is timing out |
| https://bugs.webkit.org/show_bug.cgi?id=99391 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| inspector/debugger/xhr-breakpoints.html is flaky |
| https://bugs.webkit.org/show_bug.cgi?id=99389 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| Layout Test webaudio/codec-tests/vorbis/vbr-70kbps-44khz.html is failing. |
| https://bugs.webkit.org/show_bug.cgi?id=99357 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| Rebaseline after r131358. |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-win-xp/css1/basic/inheritance-expected.png: Added. |
| * platform/chromium-win-xp/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-win-xp/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.png: Added. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: Added. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: Added. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: Added. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Added. |
| * platform/chromium-win-xp/tables/mozilla/bugs/bug73321-expected.png: Added. |
| |
| 2012-10-15 Dirk Pranke <dpranke@chromium.org> |
| |
| skip crashing softwarecompositing bugs |
| https://bugs.webkit.org/show_bug.cgi?id=99381 |
| |
| Reviewed by Adrienne Walker. |
| |
| These tests might be hanging the win (dbg)(2) bot; apart from |
| that, there's not a lot of point in running tests that are known |
| to be for unimplemented features. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, rolling out r131367. |
| http://trac.webkit.org/changeset/131367 |
| https://bugs.webkit.org/show_bug.cgi?id=98666 |
| |
| crashes on Apple Mac |
| |
| * css3/flexbox/flexitem-stretch-range-expected.html: Removed. |
| * css3/flexbox/flexitem-stretch-range.html: Removed. |
| * platform/chromium-linux/fast/dom/HTMLInputElement/input-slider-update-expected.txt: |
| * platform/chromium-linux/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: |
| * platform/chromium-linux/fast/forms/box-shadow-override-expected.txt: |
| * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: |
| * platform/chromium-linux/fast/forms/input-appearance-height-expected.txt: |
| * platform/chromium-linux/fast/forms/range/input-appearance-range-expected.png: |
| * platform/chromium-linux/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/chromium-linux/fast/forms/range/range-thumb-height-percentage-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-padding-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-thumb-shared-style-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-thumb-stylability-expected.txt: |
| * platform/chromium-linux/fast/hidpi/video-controls-in-hidpi-expected.txt: |
| * platform/chromium-linux/fast/multicol/client-rects-expected.txt: |
| * platform/chromium-linux/fast/repaint/slider-thumb-drag-release-expected.txt: |
| * platform/chromium-linux/fast/repaint/slider-thumb-float-expected.txt: |
| * platform/chromium-linux/media/track/track-cue-rendering-vertical-expected.txt: |
| * platform/chromium-win/fast/layers/video-layer-expected.txt: |
| * platform/chromium-win/media/audio-controls-rendering-expected.txt: |
| * platform/chromium-win/media/audio-repaint-expected.txt: |
| * platform/chromium-win/media/controls-after-reload-expected.txt: |
| * platform/chromium-win/media/controls-strict-expected.txt: |
| * platform/chromium-win/media/controls-styling-expected.txt: |
| * platform/chromium-win/media/controls-styling-strict-expected.txt: |
| * platform/chromium-win/media/controls-without-preload-expected.txt: |
| * platform/chromium-win/media/media-controls-clone-expected.txt: |
| * platform/chromium-win/media/media-document-audio-repaint-expected.txt: |
| * platform/chromium-win/media/track/track-cue-rendering-horizontal-expected.txt: |
| * platform/chromium-win/media/video-controls-rendering-expected.txt: |
| * platform/chromium-win/media/video-display-toggle-expected.txt: |
| * platform/chromium-win/media/video-empty-source-expected.txt: |
| * platform/chromium-win/media/video-no-audio-expected.txt: |
| * platform/chromium-win/media/video-playing-and-pause-expected.txt: |
| * platform/chromium-win/media/video-zoom-controls-expected.txt: |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-15 Chris Rogers <crogers@google.com> |
| |
| Rebaseline webaudio/codec-tests/vorbis/vbr-70kbps-44khz.html for chromium-linux |
| https://bugs.webkit.org/show_bug.cgi?id=99377 |
| |
| Unreviewed rebaseline. |
| |
| * platform/chromium-linux-x86/webaudio/codec-tests/vorbis/vbr-70kbps-44khz-expected.wav: Added. |
| * platform/chromium-linux/webaudio/codec-tests/vorbis/vbr-70kbps-44khz-expected.wav: Added. |
| * platform/chromium-mac/webaudio/codec-tests/vorbis/vbr-70kbps-44khz-expected.wav: Added. |
| |
| 2012-10-15 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Pass type of error causing abort to IDBTransaction::onAbort |
| https://bugs.webkit.org/show_bug.cgi?id=99097 |
| |
| Reviewed by Tony Chang. |
| |
| Verify that IDBTransaction.error is reporting ConstraintError when indexing fails. |
| |
| * storage/indexeddb/lazy-index-population-expected.txt: |
| * storage/indexeddb/lazy-index-population.html: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| Rebaselines after 131358. |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug24200-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug24200-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.png: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| Rebaselines after 131358 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-mac-snowleopard/css1/basic/inheritance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug73321-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug73321-expected.png: |
| |
| 2012-10-12 Tony Chang <tony@chromium.org> |
| |
| input[type=range] as a flex item renders thumb at wrong position |
| https://bugs.webkit.org/show_bug.cgi?id=98666 |
| |
| Reviewed by Ojan Vafai. |
| |
| Changing the render tree to use RenderFlexibleBox instead of RenderDeprecatedFlexibleBox |
| and not using a RenderLayer unless noted otherwise. |
| |
| * css3/flexbox/flexitem-stretch-range-expected.html: Added. |
| * css3/flexbox/flexitem-stretch-range.html: Added. New test to verify stretched flex item has the |
| thumb in the correct place. |
| * platform/chromium-linux/fast/dom/HTMLInputElement/input-slider-update-expected.txt: |
| * platform/chromium-linux/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: |
| * platform/chromium-linux/fast/forms/box-shadow-override-expected.txt: |
| * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Changed the default height to |
| 129px for vertical controls. This makes more sense than having a height of 100%. |
| * platform/chromium-linux/fast/forms/input-appearance-height-expected.txt: |
| * platform/chromium-linux/fast/forms/range/input-appearance-range-expected.png: The thumb now appears below the |
| focus ring. This matches other form controls like buttons and textareas. |
| * platform/chromium-linux/fast/forms/range/input-appearance-range-expected.txt: |
| * platform/chromium-linux/fast/forms/range/range-thumb-height-percentage-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-padding-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-thumb-shared-style-expected.txt: |
| * platform/chromium-linux/fast/forms/range/slider-thumb-stylability-expected.txt: |
| * platform/chromium-linux/fast/hidpi/video-controls-in-hidpi-expected.txt: |
| * platform/chromium-linux/fast/multicol/client-rects-expected.txt: |
| * platform/chromium-linux/fast/repaint/slider-thumb-drag-release-expected.txt: |
| * platform/chromium-linux/fast/repaint/slider-thumb-float-expected.txt: |
| * platform/chromium-linux/media/track/track-cue-rendering-vertical-expected.txt: |
| * platform/chromium-win/fast/layers/video-layer-expected.txt: |
| * platform/chromium-win/media/audio-controls-rendering-expected.txt: |
| * platform/chromium-win/media/audio-repaint-expected.txt: |
| * platform/chromium-win/media/controls-after-reload-expected.txt: |
| * platform/chromium-win/media/controls-strict-expected.txt: |
| * platform/chromium-win/media/controls-styling-expected.txt: |
| * platform/chromium-win/media/controls-styling-strict-expected.txt: |
| * platform/chromium-win/media/controls-without-preload-expected.txt: |
| * platform/chromium-win/media/media-controls-clone-expected.txt: |
| * platform/chromium-win/media/media-document-audio-repaint-expected.txt: |
| * platform/chromium-win/media/track/track-cue-rendering-horizontal-expected.txt: |
| * platform/chromium-win/media/video-controls-rendering-expected.txt: |
| * platform/chromium-win/media/video-display-toggle-expected.txt: |
| * platform/chromium-win/media/video-empty-source-expected.txt: |
| * platform/chromium-win/media/video-no-audio-expected.txt: |
| * platform/chromium-win/media/video-playing-and-pause-expected.txt: |
| * platform/chromium-win/media/video-zoom-controls-expected.txt: |
| |
| 2012-10-15 Chris Rogers <crogers@google.com> |
| |
| Rebaseline webaudio/codec-tests/vorbis/vbr-70kbps-44khz.html for Mac/Win |
| https://bugs.webkit.org/show_bug.cgi?id=99368 |
| |
| Unreviewed rebaseline. |
| |
| * platform/chromium-mac-snowleopard/webaudio/codec-tests/vorbis/vbr-70kbps-44khz-expected.wav: Added. |
| * platform/chromium-win-xp/webaudio/codec-tests/vorbis/vbr-70kbps-44khz-expected.wav: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Levi Weintraub <leviw@chromium.org> |
| |
| Regression r130057: incorrect block pref width for alternating InlineFlow and inline Replaced |
| https://bugs.webkit.org/show_bug.cgi?id=99194 |
| |
| Reviewed by Eric Seidel. |
| |
| * fast/block/block-with-inline-replaced-children-in-inline-flows-expected.html: Added. |
| * fast/block/block-with-inline-replaced-children-in-inline-flows.html: Added. |
| |
| 2012-10-15 Emil A Eklund <eae@chromium.org> |
| |
| Revert rounding change in RenderTable::paintObject |
| https://bugs.webkit.org/show_bug.cgi?id=99364 |
| |
| Reviewed by Levi Weintraub. |
| |
| Revert pixel expected results to what we had prior to r122769. |
| |
| * platform/chromium/TestExpectations: |
| * platform/chromium-linux/css1/basic/inheritance-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-linux/tables/mozilla/bugs/bug73321-expected.png: |
| |
| 2012-10-15 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Key paths should support non-ASCII identifiers |
| https://bugs.webkit.org/show_bug.cgi?id=98814 |
| |
| Reviewed by Kentaro Hara. |
| |
| Test representative characters from various Unicode character classes |
| as valid (or invalid) identifier lead and trailing characters. |
| |
| * storage/indexeddb/keypath-basics-expected.txt: |
| * storage/indexeddb/resources/keypath-basics.js: |
| (testValidKeyPaths): |
| |
| 2012-10-15 Mike West <mkwst@chromium.org> |
| |
| Console messages containing long URLs should cut at some reasonable length. |
| https://bugs.webkit.org/show_bug.cgi?id=97980 |
| |
| Reviewed by Pavel Feldman. |
| |
| * inspector/console/console-trim-long-urls-expected.txt: Added. |
| * inspector/console/console-trim-long-urls.html: Added. |
| * inspector/styles/inject-stylesheet-expected.txt: |
| * platform/chromium/inspector/styles/inject-stylesheet-expected.txt: |
| Updating test expectations. |
| |
| 2012-10-15 Mihnea Ovidenie <mihnea@adobe.com> |
| |
| [CSSRegions]Add support for auto-height regions (without region-breaks) |
| https://bugs.webkit.org/show_bug.cgi?id=97533 |
| |
| Reviewed by Julien Chaffraix. |
| |
| Added tests for auto-height regions, with different writing modes, with min/max-height. |
| The bug referenced in the tests is the master bug for auto-height support, 91097. |
| |
| * fast/regions/autoheight-abspos-region-expected.html: Added. |
| * fast/regions/autoheight-abspos-region.html: Added. |
| * fast/regions/autoheight-floatright-region-expected.html: Added. |
| * fast/regions/autoheight-floatright-region.html: Added. |
| * fast/regions/autoheight-horizontal-bt-expected.html: Added. |
| * fast/regions/autoheight-horizontal-bt.html: Added. |
| * fast/regions/autoheight-inlineblock-normalflow-region-expected.html: Added. |
| * fast/regions/autoheight-inlineblock-normalflow-region.html: Added. |
| * fast/regions/autoheight-maxheight-region-expected.html: Added. |
| * fast/regions/autoheight-maxheight-region.html: Added. |
| * fast/regions/autoheight-minheight-region-expected.html: Added. |
| * fast/regions/autoheight-minheight-region.html: Added. |
| * fast/regions/autoheight-normalflow-region-expected.html: Added. |
| * fast/regions/autoheight-normalflow-region.html: Added. |
| * fast/regions/autoheight-vertical-lr-expected.html: Added. |
| * fast/regions/autoheight-vertical-lr.html: Added. |
| * fast/regions/autoheight-vertical-rl-expected.html: Added. |
| * fast/regions/autoheight-vertical-rl.html: Added. |
| * fast/regions/webkit-named-flow-first-empty-region-index.html: Fix an element style (though the test was passing before). |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| Layout Test webaudio/codec-tests/vorbis/vbr-70kbps-44khz.html is failing |
| https://bugs.webkit.org/show_bug.cgi?id=99357 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Joshua Bell <jsbell@chromium.org> |
| |
| [Chromium] Unreviewed gardening. Fix bug link in TestExpectations. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| Layout Test inspector/debugger/dynamic-scripts.html is flaky |
| https://bugs.webkit.org/show_bug.cgi?id=99338 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Mike West <mkwst@chromium.org> |
| |
| CSP source expressions should support paths at file-level granularity. |
| https://bugs.webkit.org/show_bug.cgi?id=99250 |
| |
| Reviewed by Adam Barth. |
| |
| * http/tests/security/contentSecurityPolicy/source-list-parsing-paths-01.html: |
| Adjust tests by adding trailing slashes to source expressions that |
| should match directories. |
| * http/tests/security/contentSecurityPolicy/source-list-parsing-paths-02-expected.txt: |
| * http/tests/security/contentSecurityPolicy/source-list-parsing-paths-02.html: |
| Adjust tests to check the new behavior: matching individiual files, |
| and matching directories only with a trailing '/'. |
| |
| 2012-10-15 Jay Civelli <jcivelli@chromium.org> |
| |
| Calling WebCore::SharedBuffer::append(data, 0) on a shared buffer when |
| its current position is at a segment boundary (4096) ends up adding an |
| unitialized segment (with uninitialized memory) to the SharedBuffer. |
| https://bugs.webkit.org/show_bug.cgi?id=99000 |
| |
| Reviewed by Adam Barth. |
| |
| * mhtml/shared_buffer_bug-expected.txt: Added. |
| * mhtml/shared_buffer_bug.mht: Added. |
| |
| 2012-10-15 Luke Macpherson <macpherson@chromium.org> |
| |
| Make CSS variable names case-insensitive. |
| https://bugs.webkit.org/show_bug.cgi?id=98712 |
| |
| Reviewed by Tony Chang. |
| |
| Add test that variable names are match correctly when different case is used. |
| |
| * fast/css/variables/case-insensitive-expected.html: Added. |
| * fast/css/variables/case-insensitive.html: Added. |
| |
| 2012-10-15 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Unreviewed inspector tests fix. |
| |
| * http/tests/inspector-enabled/dynamic-scripts-expected.txt: |
| * http/tests/inspector-enabled/dynamic-scripts.html: |
| * inspector/debugger/dynamic-scripts-expected.txt: |
| * inspector/debugger/dynamic-scripts.html: |
| |
| 2012-10-15 Dana Jansens <danakj@chromium.org> |
| |
| Layout Test plugins/update-widgets-crash.html is failing |
| https://bugs.webkit.org/show_bug.cgi?id=99333 |
| |
| Unreviewed gardening. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-15 Dominik Röttsches <dominik.rottsches@intel.com> |
| |
| Unreviewed GTK gardening. |
| |
| * platform/gtk/TestExpectations: Silencing a style-checker warning. |
| |
| 2012-10-15 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Scripts for dynamically added script elements are not shown in sources panel. |
| https://bugs.webkit.org/show_bug.cgi?id=99324 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector-enabled/dynamic-scripts-expected.txt: Added. |
| * http/tests/inspector-enabled/dynamic-scripts.html: Added. |
| * http/tests/inspector-enabled/resources/dynamic-script.js: Added. |
| (fooDynamicScript): |
| * inspector/debugger/dynamic-scripts-expected.txt: Added. |
| * inspector/debugger/dynamic-scripts.html: Added. |
| * inspector/debugger/resources/dynamic-script.js: Added. |
| (fooDynamicScript): |
| |
| 2012-10-15 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] Unskip and rebase now passing tests. |
| https://bugs.webkit.org/show_bug.cgi?id=98824 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| Updating tests results. |
| |
| * platform/qt/TestExpectations: |
| * platform/qt/editing/selection/caret-rtl-2-expected.png: Added. |
| * platform/qt/editing/selection/caret-rtl-2-expected.txt: |
| * platform/qt/editing/selection/caret-rtl-expected.png: Added. |
| * platform/qt/editing/selection/caret-rtl-expected.txt: |
| * platform/qt/editing/selection/extend-selection-bidi-expected.png: Added. |
| * platform/qt/editing/selection/extend-selection-bidi-expected.txt: Added. |
| * platform/qt/editing/selection/move-past-trailing-space-expected.png: Added. |
| * platform/qt/editing/selection/move-past-trailing-space-expected.txt: Added. |
| |
| 2012-10-15 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-14 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-14 Jon Lee <jonlee@apple.com> |
| |
| Allow notification origin permission request when no js callback is provided |
| https://bugs.webkit.org/show_bug.cgi?id=63615 |
| <rdar://problem/11059590> |
| |
| Reviewed by Sam Weinig. |
| |
| * http/tests/notifications/legacy/request-expected.txt: |
| * http/tests/notifications/legacy/request-no-callback-expected.txt: Added. |
| * http/tests/notifications/legacy/request-no-callback.html: Calls webkitNotifications.requestPermission() |
| with no callback, with default and denied permission. For WebKit2, if the permission is not default, it |
| will short circuit instead of creating a pending request. |
| * http/tests/notifications/legacy/request.html: The test mistakenly uses the standard API instead of |
| the legacy API. The results don't change, but we make sure that we call |
| webkitNotifications.requestPermission() with a callback to test full coverage of the legacy API. We also |
| expand the test to cover both default and denied permissions. |
| * http/tests/notifications/request-expected.txt: |
| * http/tests/notifications/request.html: Expand test to cover both default and denied permissions. |
| |
| 2012-10-12 Adam Barth <abarth@webkit.org> |
| |
| Unreviewed gardening. |
| |
| * platform/chromium-linux/fast/forms/form-associated-element-crash3-expected.txt: Removed. |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-3-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-origins-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: |
| |
| 2012-10-12 Adam Barth <abarth@webkit.org> |
| |
| Fix lint error in TestExpectations. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-12 Simon Fraser <simon.fraser@apple.com> |
| |
| Fix GraphicsLayerCA visible rect computation in the face of perspective and preserve-3d |
| https://bugs.webkit.org/show_bug.cgi?id=99212 |
| |
| Reviewed by Tim Horton. |
| |
| Layer tree tests that include visible rect information, to test visible rect |
| computation for more complex layer trees. |
| |
| * compositing/visible-rect/3d-transform-style-expected.txt: Added. |
| * compositing/visible-rect/3d-transform-style.html: Added. |
| * compositing/visible-rect/3d-transformed-expected.txt: Added. |
| * compositing/visible-rect/3d-transformed.html: Added. |
| * compositing/visible-rect/nested-transform-expected.txt: Added. |
| * compositing/visible-rect/nested-transform.html: Added. |
| |
| 2012-10-12 Simon Fraser <simon.fraser@apple.com> |
| |
| Add some initial visible rect tests and tweak the visible wash layer |
| https://bugs.webkit.org/show_bug.cgi?id=99095 |
| |
| Reviewed by Tim Horton. |
| |
| Add some tests of the GraphicsLayerCA visibleRect for simple cases. |
| |
| Skip these tests on platforms that don't log layer visible rects |
| (all non-Mac). |
| |
| * compositing/visible-rect/2d-transformed-expected.txt: Added. |
| * compositing/visible-rect/2d-transformed.html: Added. |
| * compositing/visible-rect/clipped-by-viewport-expected.txt: Added. |
| * compositing/visible-rect/clipped-by-viewport.html: Added. |
| * compositing/visible-rect/clipped-visible-rect-expected.txt: Added. |
| * compositing/visible-rect/clipped-visible-rect.html: Added. |
| * platform/chromium-android/TestExpectations: |
| * platform/chromium/TestExpectations: |
| * platform/chromium/virtual/softwarecompositing/TestExpectations: Added. |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| |
| 2012-10-12 Roger Fong <roger_fong@apple.com> |
| |
| Unreviewed. Windows rebaseline afer r130411. |
| |
| * platform/win/editing/pasteboard/paste-text-008-expected.txt: |
| |
| 2012-10-12 Roger Fong <roger_fong@apple.com> |
| |
| Unreviewed. Test passes, unskip, update results. |
| |
| * platform/win/TestExpectations: |
| * platform/win/fast/text/international/float-as-only-child-of-isolate-crash-expected.txt: |
| |
| 2012-10-12 Jeffrey Pfau <jpfau@apple.com> |
| |
| Unreviewed. Checking in fast/js/random-array-gc-stress.html as timing out. |
| |
| * platform/mac/TestExpectations: |
| |
| 2012-10-12 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, chromium-mac-snowleopard rebaseline for a slider. |
| The thumb moved a small amount (maybe during shadow dom refactor?). |
| This matches the Apple Lion result. |
| |
| * platform/chromium-mac-snowleopard/fast/forms/range/input-appearance-range-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-12 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, remove duplicate TestExpectation entries. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-12 Roger Fong <roger_fong@apple.com> |
| |
| Unreviewed. Skipping tests involving CSS_COMPOSITING on Windows. Feature isn't and should not be enabled. |
| |
| * platform/win/TestExpectations: |
| |
| 2012-10-12 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed cleanup, remove unneeded XP specific rebaselines for chromium. |
| |
| * platform/chromium-win-xp/fast/speech: Removed. |
| * platform/chromium-win-xp/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed. |
| |
| 2012-10-12 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Updating expectations for fast/repaint/repaint-across-writing-mode-boundary.html |
| and switching the TestExpectations files for ports with SUBPIXEL_LAYOUT disabled to skip the entire |
| sub-pixel test folder. |
| |
| * platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-win-xp/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-win/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium/TestExpectations: |
| * platform/mac-lion/TestExpectations: |
| * platform/mac-snowleopard/TestExpectations: |
| * platform/mac-wk2/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-4.8/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win-wk2/TestExpectations: |
| * platform/win-xp/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-12 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium windows rebaseline for r131202. |
| |
| * platform/chromium-linux/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: Removed. |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-3-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-origins-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: |
| * platform/chromium-win/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: |
| * platform/chromium-win/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-win/fast/speech/input-appearance-searchandspeech-expected.txt: |
| * platform/chromium-win/fast/writing-mode/fieldsets-expected.png: |
| |
| 2012-10-12 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium rebaseline for r131216. |
| |
| * fast/box-sizing/box-sizing-expected.txt: Replaced. |
| * fast/repaint/repaint-during-scroll-with-zoom-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-mac/compositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-mac/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: |
| * platform/chromium-mac/fast/box-sizing/box-sizing-expected.txt: |
| * platform/chromium-mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: |
| * platform/chromium-mac/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-mac/fast/writing-mode/fieldsets-expected.txt: |
| * platform/chromium-mac/media/media-document-audio-repaint-expected.txt: |
| * platform/chromium-win-xp/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: Removed. |
| * platform/efl/fast/box-sizing/box-sizing-expected.txt: Removed. |
| * platform/efl/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: Removed. |
| * platform/gtk/fast/box-sizing/box-sizing-expected.txt: Removed. |
| * platform/gtk/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: Removed. |
| * platform/win-future/fast/box-sizing: Added. |
| * platform/win-future/fast/box-sizing/box-sizing-expected.txt: Added. |
| |
| 2012-10-12 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium windows rebaseline for vertical-rl-ltr test. |
| |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: |
| * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: |
| |
| 2012-10-12 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium rebaseline for r131202. |
| |
| * css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Added. |
| * css2.1/t100801-c544-valgn-01-d-ag-expected.txt: Added. |
| * css3/flexbox/flexbox-baseline-expected.txt: Added. |
| * fast/html/details-add-child-1-expected.txt: Added. |
| * fast/html/details-add-child-2-expected.txt: Added. |
| * fast/html/details-add-details-child-1-expected.txt: Added. |
| * fast/html/details-add-details-child-2-expected.txt: Added. |
| * fast/html/details-add-summary-1-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-1-expected.txt: Added. |
| * fast/html/details-add-summary-10-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-10-expected.txt: Added. |
| * fast/html/details-add-summary-2-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-2-expected.txt: Added. |
| * fast/html/details-add-summary-3-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-3-expected.txt: Added. |
| * fast/html/details-add-summary-4-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-4-expected.txt: Added. |
| * fast/html/details-add-summary-5-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-5-expected.txt: Added. |
| * fast/html/details-add-summary-6-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-6-expected.txt: Added. |
| * fast/html/details-add-summary-7-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-7-expected.txt: Added. |
| * fast/html/details-add-summary-8-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-8-expected.txt: Added. |
| * fast/html/details-add-summary-9-and-click-expected.txt: Added. |
| * fast/html/details-add-summary-9-expected.txt: Added. |
| * fast/html/details-add-summary-child-1-expected.txt: Added. |
| * fast/html/details-add-summary-child-2-expected.txt: Added. |
| * fast/html/details-nested-1-expected.txt: Added. |
| * fast/html/details-no-summary1-expected.txt: Added. |
| * fast/html/details-no-summary2-expected.txt: Added. |
| * fast/html/details-no-summary3-expected.txt: Added. |
| * fast/html/details-open1-expected.txt: Added. |
| * fast/html/details-open3-expected.txt: Added. |
| * fast/html/details-open5-expected.txt: Added. |
| * fast/html/details-open6-expected.txt: Added. |
| * fast/html/details-remove-child-1-expected.txt: Added. |
| * fast/html/details-remove-child-2-expected.txt: Added. |
| * fast/html/details-remove-summary-1-and-click-expected.txt: Added. |
| * fast/html/details-remove-summary-1-expected.txt: Added. |
| * fast/html/details-remove-summary-2-and-click-expected.txt: Added. |
| * fast/html/details-remove-summary-2-expected.txt: Added. |
| * fast/html/details-remove-summary-3-and-click-expected.txt: Added. |
| * fast/html/details-remove-summary-3-expected.txt: Added. |
| * fast/html/details-remove-summary-4-and-click-expected.txt: Added. |
| * fast/html/details-remove-summary-4-expected.txt: Added. |
| * fast/html/details-remove-summary-5-and-click-expected.txt: Added. |
| * fast/html/details-remove-summary-5-expected.txt: Added. |
| * fast/html/details-remove-summary-6-and-click-expected.txt: Added. |
| * fast/html/details-remove-summary-6-expected.txt: Added. |
| * fast/html/details-remove-summary-child-1-expected.txt: Added. |
| * fast/html/details-remove-summary-child-2-expected.txt: Added. |
| * fast/images/imagemap-focus-ring-zoom-expected.txt: Added. |
| * platform/chromium-linux/css2.1/t100801-c544-valgn-01-d-ag-expected.png: Added. |
| * platform/chromium-linux/css2.1/t100801-c544-valgn-01-d-ag-expected.txt: Added. |
| * platform/chromium-linux/fast/forms/form-associated-element-crash3-expected.png: Added. |
| * platform/chromium-linux/fast/forms/form-associated-element-crash3-expected.txt: Added. |
| * platform/chromium-linux/fast/forms/listbox-hit-test-zoomed-expected.png: Added. |
| * platform/chromium-linux/fast/forms/listbox-hit-test-zoomed-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/007-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-nested-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-nested-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-open6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-position-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-replace-text-expected.png: |
| * platform/chromium-mac-snowleopard/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: |
| * platform/chromium-mac/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.txt: |
| * platform/chromium-mac/fast/forms/007-expected.png: |
| * platform/chromium-mac/fast/forms/007-expected.txt: |
| * platform/chromium-mac/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-mac/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-mac/fast/forms/basic-textareas-expected.txt: |
| * platform/chromium-mac/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-mac/fast/forms/search-vertical-alignment-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-details-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-details-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-10-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-3-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-4-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-5-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-6-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-7-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-8-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-9-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-add-summary-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-marker-style-expected.png: |
| * platform/chromium-mac/fast/html/details-marker-style-expected.txt: |
| * platform/chromium-mac/fast/html/details-nested-1-expected.png: |
| * platform/chromium-mac/fast/html/details-nested-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-nested-2-expected.png: |
| * platform/chromium-mac/fast/html/details-nested-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary1-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary2-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary3-expected.txt: |
| * platform/chromium-mac/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-mac/fast/html/details-no-summary4-expected.txt: |
| * platform/chromium-mac/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-mac/fast/html/details-open-javascript-expected.txt: |
| * platform/chromium-mac/fast/html/details-open1-expected.png: |
| * platform/chromium-mac/fast/html/details-open1-expected.txt: |
| * platform/chromium-mac/fast/html/details-open2-expected.png: |
| * platform/chromium-mac/fast/html/details-open2-expected.txt: |
| * platform/chromium-mac/fast/html/details-open3-expected.png: |
| * platform/chromium-mac/fast/html/details-open3-expected.txt: |
| * platform/chromium-mac/fast/html/details-open4-expected.png: |
| * platform/chromium-mac/fast/html/details-open4-expected.txt: |
| * platform/chromium-mac/fast/html/details-open5-expected.png: |
| * platform/chromium-mac/fast/html/details-open5-expected.txt: |
| * platform/chromium-mac/fast/html/details-open6-expected.png: |
| * platform/chromium-mac/fast/html/details-open6-expected.txt: |
| * platform/chromium-mac/fast/html/details-position-expected.png: |
| * platform/chromium-mac/fast/html/details-position-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-3-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-4-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-5-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-6-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-1-expected.txt: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-mac/fast/html/details-remove-summary-child-2-expected.txt: |
| * platform/chromium-mac/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-mac/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-mac/fast/html/details-replace-text-expected.png: |
| * platform/chromium-mac/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-mac/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-mac/fast/html/details-writing-mode-expected.txt: |
| * platform/chromium-mac/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-mac/fast/images/imagemap-focus-ring-zoom-expected.txt: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-2-expected.txt: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-expected.txt: |
| * platform/chromium-mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: |
| * platform/chromium-mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: |
| * platform/chromium-mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: |
| * platform/chromium-mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.txt: |
| * platform/chromium-win-xp/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Added. |
| * platform/chromium-win/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: |
| * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: |
| * platform/chromium-win/fast/dom/HTMLProgressElement/progress-element-expected.png: |
| * platform/chromium-win/fast/forms/007-expected.png: |
| * platform/chromium-win/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-win/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-win/fast/forms/listbox-hit-test-zoomed-expected.png: Added. |
| * platform/chromium-win/fast/forms/listbox-hit-test-zoomed-expected.txt: Added. |
| * platform/chromium-win/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-win/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-win/fast/forms/searchfield-heights-expected.txt: |
| * platform/chromium-win/fast/forms/textarea-metrics-expected.txt: Added. |
| * platform/chromium-win/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-marker-style-expected.png: |
| * platform/chromium-win/fast/html/details-nested-1-expected.png: |
| * platform/chromium-win/fast/html/details-nested-2-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-win/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-win/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-win/fast/html/details-open1-expected.png: |
| * platform/chromium-win/fast/html/details-open2-expected.png: |
| * platform/chromium-win/fast/html/details-open3-expected.png: |
| * platform/chromium-win/fast/html/details-open4-expected.png: |
| * platform/chromium-win/fast/html/details-open5-expected.png: |
| * platform/chromium-win/fast/html/details-open6-expected.png: |
| * platform/chromium-win/fast/html/details-position-expected.png: |
| * platform/chromium-win/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-win/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-win/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-win/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-win/fast/html/details-replace-text-expected.png: |
| * platform/chromium-win/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-win/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-win/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium/TestExpectations: |
| * platform/efl/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Removed. |
| * platform/efl/css2.1/t100801-c544-valgn-01-d-ag-expected.txt: Removed. |
| * platform/efl/css3/flexbox/flexbox-baseline-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-child-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-child-2-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-details-child-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-details-child-2-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-1-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-10-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-10-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-2-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-2-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-3-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-3-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-4-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-4-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-5-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-5-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-6-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-6-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-7-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-7-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-8-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-8-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-9-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-9-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-child-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-add-summary-child-2-expected.txt: Removed. |
| * platform/efl/fast/html/details-nested-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-no-summary1-expected.txt: Removed. |
| * platform/efl/fast/html/details-no-summary2-expected.txt: Removed. |
| * platform/efl/fast/html/details-no-summary3-expected.txt: Removed. |
| * platform/efl/fast/html/details-open1-expected.txt: Removed. |
| * platform/efl/fast/html/details-open3-expected.txt: Removed. |
| * platform/efl/fast/html/details-open5-expected.txt: Removed. |
| * platform/efl/fast/html/details-open6-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-child-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-child-2-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-1-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-2-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-2-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-3-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-3-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-4-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-4-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-5-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-5-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-6-and-click-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-6-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-child-1-expected.txt: Removed. |
| * platform/efl/fast/html/details-remove-summary-child-2-expected.txt: Removed. |
| * platform/efl/fast/images/imagemap-focus-ring-zoom-expected.txt: Removed. |
| * platform/efl/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Removed. |
| * platform/efl/tables/mozilla/bugs/bug30692-expected.txt: Removed. |
| * platform/gtk/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Removed. |
| * platform/gtk/css2.1/t100801-c544-valgn-01-d-ag-expected.txt: Removed. |
| * platform/gtk/css3/flexbox: Removed. |
| * platform/gtk/css3/flexbox/flexbox-baseline-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-child-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-child-2-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-details-child-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-details-child-2-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-1-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-10-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-10-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-2-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-2-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-3-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-3-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-4-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-4-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-5-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-5-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-6-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-6-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-7-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-7-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-8-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-8-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-9-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-9-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-child-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-add-summary-child-2-expected.txt: Removed. |
| * platform/gtk/fast/html/details-nested-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-no-summary1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-no-summary2-expected.txt: Removed. |
| * platform/gtk/fast/html/details-no-summary3-expected.txt: Removed. |
| * platform/gtk/fast/html/details-open1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-open3-expected.txt: Removed. |
| * platform/gtk/fast/html/details-open5-expected.txt: Removed. |
| * platform/gtk/fast/html/details-open6-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-child-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-child-2-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-1-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-2-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-2-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-3-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-3-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-4-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-4-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-5-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-5-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-6-and-click-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-6-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-child-1-expected.txt: Removed. |
| * platform/gtk/fast/html/details-remove-summary-child-2-expected.txt: Removed. |
| * platform/gtk/fast/images/imagemap-focus-ring-zoom-expected.txt: Removed. |
| * platform/gtk/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Removed. |
| * platform/gtk/tables/mozilla/bugs/bug30692-expected.txt: Removed. |
| * svg/zoom/page/zoom-hixie-mixed-009-expected.png: Added. |
| * tables/mozilla/bugs/bug30692-expected.txt: Added. |
| |
| 2012-10-12 James Simonsen <simonjam@chromium.org> |
| |
| [RequestAnimationFrame] Remove vendor prefix |
| https://bugs.webkit.org/show_bug.cgi?id=99116 |
| |
| Reviewed by Adam Barth. |
| |
| * fast/animation/request-animation-frame-callback-id.html: |
| * fast/animation/request-animation-frame-cancel-expected.txt: |
| * fast/animation/request-animation-frame-detach-element.html: |
| * fast/animation/request-animation-frame-detach-element2.html: |
| * fast/animation/request-animation-frame-during-modal.html: |
| * fast/animation/request-animation-frame-iframe2.html: |
| * fast/animation/request-animation-frame-missing-arguments-expected.txt: |
| * fast/animation/request-animation-frame-missing-arguments.html: |
| * fast/animation/script-tests/request-animation-frame-cancel.js: |
| (window): |
| * fast/animation/script-tests/request-animation-frame-cancel2.js: |
| * fast/animation/script-tests/request-animation-frame-disabled.js: |
| * fast/animation/script-tests/request-animation-frame-subframe.html: |
| * fast/animation/script-tests/request-animation-frame-timestamps-advance.js: |
| (window.requestAnimationFrame): |
| * fast/animation/script-tests/request-animation-frame-timestamps.js: |
| * fast/animation/script-tests/request-animation-frame-within-callback.js: |
| (window): |
| * fast/animation/script-tests/request-animation-frame.js: |
| * fast/canvas/script-tests/canvas-imageSmoothingEnabled-repaint.js: |
| (BrowserPaint): |
| * fast/canvas/webgl/webgl-texture-binding-preserved.html: |
| * fast/dom/Window/post-message-crash.html: |
| * inspector/timeline/timeline-animation-frame.html: |
| |
| 2012-10-12 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium lucid rebaseline for r131202. |
| |
| * platform/chromium-linux-x86/svg/as-border-image: Removed. |
| * platform/chromium-linux-x86/svg/as-border-image/svg-as-border-image-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed. |
| * platform/chromium-linux-x86/svg/zoom/page/zoom-background-images-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/svg/as-border-image: Removed. |
| * platform/chromium-mac-snowleopard/svg/as-border-image/svg-as-border-image-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-background-images-expected.png: Removed. |
| * platform/chromium-win-xp/svg/as-border-image: Removed. |
| * platform/chromium-win-xp/svg/as-border-image/svg-as-border-image-expected.png: Removed. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-background-images-expected.png: Removed. |
| |
| 2012-10-12 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium mac rebaseline for r131202. |
| |
| * platform/chromium-linux-x86/fast/block/float: Removed. |
| * platform/chromium-linux-x86/fast/block/float/float-avoidance-expected.png: Removed. |
| * platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/3690703-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/3690719-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png: |
| * platform/chromium-mac-snowleopard/editing/selection/selection-button-text-expected.png: |
| * platform/chromium-mac-snowleopard/fast/block/float/float-avoidance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.png: |
| * platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/001-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/box-shadow-override-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-direction-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-disabled-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/file/input-file-re-render-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/form-element-geometry-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-appearance-height-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/input-value-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/menulist-clip-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/validation-message-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: |
| * platform/chromium-mac-snowleopard/fast/overflow/scrollRevealButton-expected.png: |
| * platform/chromium-mac-snowleopard/fast/replaced/replaced-breaking-expected.png: |
| * platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.png: |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-mac-snowleopard/fast/text/textIteratorNilRenderer-expected.png: |
| * platform/chromium-mac-snowleopard/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: |
| * platform/chromium-mac/editing/selection/3690703-2-expected.png: |
| * platform/chromium-mac/editing/selection/3690703-2-expected.txt: |
| * platform/chromium-mac/editing/selection/3690703-expected.png: |
| * platform/chromium-mac/editing/selection/3690703-expected.txt: |
| * platform/chromium-mac/editing/selection/3690719-expected.png: |
| * platform/chromium-mac/editing/selection/3690719-expected.txt: |
| * platform/chromium-mac/editing/selection/4397952-expected.png: |
| * platform/chromium-mac/editing/selection/4397952-expected.txt: |
| * platform/chromium-mac/editing/selection/5240265-expected.png: |
| * platform/chromium-mac/editing/selection/5240265-expected.txt: |
| * platform/chromium-mac/editing/selection/selection-button-text-expected.png: |
| * platform/chromium-mac/editing/selection/selection-button-text-expected.txt: |
| * platform/chromium-mac/fast/block/float/032-expected.txt: |
| * platform/chromium-mac/fast/block/float/float-avoidance-expected.png: |
| * platform/chromium-mac/fast/block/float/float-avoidance-expected.txt: |
| * platform/chromium-mac/fast/css/continuationCrash-expected.png: |
| * platform/chromium-mac/fast/css/continuationCrash-expected.txt: |
| * platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.png: |
| * platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.txt: |
| * platform/chromium-mac/fast/css/rtl-ordering-expected.png: |
| * platform/chromium-mac/fast/css/rtl-ordering-expected.txt: |
| * platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: |
| * platform/chromium-mac/fast/forms/001-expected.png: |
| * platform/chromium-mac/fast/forms/001-expected.txt: |
| * platform/chromium-mac/fast/forms/blankbuttons-expected.png: |
| * platform/chromium-mac/fast/forms/blankbuttons-expected.txt: |
| * platform/chromium-mac/fast/forms/box-shadow-override-expected.png: |
| * platform/chromium-mac/fast/forms/box-shadow-override-expected.txt: |
| * platform/chromium-mac/fast/forms/button-sizes-expected.png: |
| * platform/chromium-mac/fast/forms/button-sizes-expected.txt: |
| * platform/chromium-mac/fast/forms/button-style-color-expected.png: |
| * platform/chromium-mac/fast/forms/button-style-color-expected.txt: |
| * platform/chromium-mac/fast/forms/button-table-styles-expected.png: |
| * platform/chromium-mac/fast/forms/button-table-styles-expected.txt: |
| * platform/chromium-mac/fast/forms/button-text-transform-expected.png: |
| * platform/chromium-mac/fast/forms/button-text-transform-expected.txt: |
| * platform/chromium-mac/fast/forms/control-restrict-line-height-expected.png: |
| * platform/chromium-mac/fast/forms/control-restrict-line-height-expected.txt: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/file/file-input-direction-expected.png: |
| * platform/chromium-mac/fast/forms/file/file-input-direction-expected.txt: |
| * platform/chromium-mac/fast/forms/file/file-input-disabled-expected.png: |
| * platform/chromium-mac/fast/forms/file/file-input-disabled-expected.txt: |
| * platform/chromium-mac/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/chromium-mac/fast/forms/file/input-file-re-render-expected.png: |
| * platform/chromium-mac/fast/forms/file/input-file-re-render-expected.txt: |
| * platform/chromium-mac/fast/forms/form-element-geometry-expected.png: |
| * platform/chromium-mac/fast/forms/form-element-geometry-expected.txt: |
| * platform/chromium-mac/fast/forms/formmove3-expected.png: |
| * platform/chromium-mac/fast/forms/formmove3-expected.txt: |
| * platform/chromium-mac/fast/forms/input-appearance-height-expected.png: |
| * platform/chromium-mac/fast/forms/input-appearance-height-expected.txt: |
| * platform/chromium-mac/fast/forms/input-button-sizes-expected.png: |
| * platform/chromium-mac/fast/forms/input-button-sizes-expected.txt: |
| * platform/chromium-mac/fast/forms/input-value-expected.png: |
| * platform/chromium-mac/fast/forms/input-value-expected.txt: |
| * platform/chromium-mac/fast/forms/menulist-clip-expected.png: |
| * platform/chromium-mac/fast/forms/menulist-clip-expected.txt: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/targeted-frame-submission-expected.png: |
| * platform/chromium-mac/fast/forms/targeted-frame-submission-expected.txt: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-disabled-readonly-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/validation-message-appearance-expected.png: |
| * platform/chromium-mac/fast/forms/validation-message-appearance-expected.txt: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: |
| * platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt: |
| * platform/chromium-mac/fast/overflow/scrollRevealButton-expected.png: |
| * platform/chromium-mac/fast/overflow/scrollRevealButton-expected.txt: |
| * platform/chromium-mac/fast/replaced/replaced-breaking-expected.png: |
| * platform/chromium-mac/fast/replaced/replaced-breaking-expected.txt: |
| * platform/chromium-mac/fast/replaced/width100percent-button-expected.png: |
| * platform/chromium-mac/fast/replaced/width100percent-button-expected.txt: |
| * platform/chromium-mac/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.png: |
| * platform/chromium-mac/fast/sub-pixel/file-upload-control-at-fractional-offset-expected.txt: |
| * platform/chromium-mac/fast/text/international/vertical-text-glyph-test-expected.png: |
| * platform/chromium-mac/fast/text/international/vertical-text-glyph-test-expected.txt: |
| * platform/chromium-mac/fast/text/textIteratorNilRenderer-expected.png: |
| * platform/chromium-mac/fast/text/textIteratorNilRenderer-expected.txt: |
| * platform/chromium-mac/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/chromium-mac/http/tests/navigation/javascriptlink-frames-expected.txt: |
| * platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac/platform/chromium/virtual/softwarecompositing: Added. |
| * platform/chromium-mac/platform/chromium/virtual/softwarecompositing/shadows: Added. |
| * platform/chromium-mac/platform/chromium/virtual/softwarecompositing/shadows/shadow-drawing-expected.txt: Added. |
| * platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug2479-4-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.txt: |
| * platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.png: |
| * platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.txt: |
| * platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.png: |
| * platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: |
| * platform/chromium-mac/tables/mozilla/dom/tableDom-expected.png: |
| * platform/chromium-mac/tables/mozilla/dom/tableDom-expected.txt: |
| * platform/chromium-mac/tables/mozilla/other/move_row-expected.png: |
| * platform/chromium-mac/tables/mozilla/other/move_row-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: |
| * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: |
| * platform/chromium-win-xp/fast/block/float: Removed. |
| * platform/chromium-win-xp/fast/block/float/float-avoidance-expected.png: Removed. |
| * platform/chromium-win-xp/tables/mozilla_expected_failures/bugs: Removed. |
| * platform/chromium-win-xp/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Removed. |
| |
| 2012-10-12 Rob Buis <rbuis@rim.com> |
| |
| [BlackBerry] Add tests of WebSocketEnabled preference |
| https://bugs.webkit.org/show_bug.cgi?id=84982 |
| |
| Reviewed by Yong Li. |
| |
| * platform/blackberry/http/tests/websocket/tests/enable-disable-setting-expected.txt: Added. |
| * platform/blackberry/http/tests/websocket/tests/enable-disable-setting.html: Added. |
| |
| 2012-10-11 Emil A Eklund <eae@chromium.org> |
| |
| [Sub pixel layout] Change RenderBox to not round logicalTop/Left for RenderReplaced |
| https://bugs.webkit.org/show_bug.cgi?id=99108 |
| |
| Reviewed by Levi Weintraub. |
| |
| Update tests expectations to reflect more correct rounding behavior. |
| Specifically many images and other replaced content is no longer rendered at y -1. |
| |
| * platform/chromium-linux/css2.1/t090501-c414-flt-03-b-g-expected.txt: |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-linux/fast/dom/HTMLProgressElement/progress-element-expected.png: |
| * platform/chromium-linux/fast/forms/007-expected.png: |
| * platform/chromium-linux/fast/forms/basic-buttons-expected.png: |
| * platform/chromium-linux/fast/forms/basic-buttons-expected.txt: |
| * platform/chromium-linux/fast/forms/input-baseline-expected.txt: |
| * platform/chromium-linux/fast/forms/input-placeholder-paint-order-expected.png: |
| * platform/chromium-linux/fast/forms/search-vertical-alignment-expected.png: |
| * platform/chromium-linux/fast/forms/searchfield-heights-expected.png: |
| * platform/chromium-linux/fast/forms/searchfield-heights-expected.txt: |
| * platform/chromium-linux/fast/html/details-add-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-details-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-details-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-10-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-2-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-3-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-4-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-5-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-6-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-7-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-8-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-9-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-add-summary-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-marker-style-expected.png: |
| * platform/chromium-linux/fast/html/details-nested-1-expected.png: |
| * platform/chromium-linux/fast/html/details-nested-2-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary1-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary2-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary3-expected.png: |
| * platform/chromium-linux/fast/html/details-no-summary4-expected.png: |
| * platform/chromium-linux/fast/html/details-open-javascript-expected.png: |
| * platform/chromium-linux/fast/html/details-open1-expected.png: |
| * platform/chromium-linux/fast/html/details-open2-expected.png: |
| * platform/chromium-linux/fast/html/details-open3-expected.png: |
| * platform/chromium-linux/fast/html/details-open4-expected.png: |
| * platform/chromium-linux/fast/html/details-open5-expected.png: |
| * platform/chromium-linux/fast/html/details-open6-expected.png: |
| * platform/chromium-linux/fast/html/details-position-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-2-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-3-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-4-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-5-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-6-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-child-1-expected.png: |
| * platform/chromium-linux/fast/html/details-remove-summary-child-2-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-summary-child-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-summary-child-expected.txt: |
| * platform/chromium-linux/fast/html/details-replace-text-expected.png: |
| * platform/chromium-linux/fast/html/details-replace-text-expected.txt: |
| * platform/chromium-linux/fast/html/details-writing-mode-expected.png: |
| * platform/chromium-linux/fast/images/imagemap-focus-ring-zoom-expected.png: |
| * platform/chromium-linux/fast/repaint/reflection-repaint-test-expected.png: |
| * platform/chromium-linux/fast/repaint/repaint-during-scroll-with-zoom-expected.png: |
| * platform/chromium-linux/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: |
| * platform/chromium-linux/fast/repaint/transform-layout-repaint-expected.png: |
| * platform/chromium-linux/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/chromium-linux/fast/speech/input-appearance-searchandspeech-expected.txt: |
| * platform/chromium-linux/fast/writing-mode/fieldsets-expected.png: |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-2-expected.png: |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-009-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium-win/compositing/shadows/shadow-drawing-expected.txt: |
| * platform/chromium-win/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.txt: |
| * platform/chromium-win/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: |
| * platform/chromium-win/fast/box-sizing/box-sizing-expected.txt: |
| * platform/chromium-win/fast/forms/007-expected.txt: |
| * platform/chromium-win/fast/forms/placeholder-position-expected.txt: |
| * platform/chromium-win/fast/forms/search-vertical-alignment-expected.txt: |
| * platform/chromium-win/fast/html/details-add-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-details-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-details-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-10-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-2-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-3-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-4-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-5-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-6-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-7-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-8-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-9-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-add-summary-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-marker-style-expected.txt: |
| * platform/chromium-win/fast/html/details-nested-1-expected.txt: |
| * platform/chromium-win/fast/html/details-nested-2-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary1-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary2-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary3-expected.txt: |
| * platform/chromium-win/fast/html/details-no-summary4-expected.txt: |
| * platform/chromium-win/fast/html/details-open-javascript-expected.txt: |
| * platform/chromium-win/fast/html/details-open1-expected.txt: |
| * platform/chromium-win/fast/html/details-open2-expected.txt: |
| * platform/chromium-win/fast/html/details-open3-expected.txt: |
| * platform/chromium-win/fast/html/details-open4-expected.txt: |
| * platform/chromium-win/fast/html/details-open5-expected.txt: |
| * platform/chromium-win/fast/html/details-open6-expected.txt: |
| * platform/chromium-win/fast/html/details-position-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-2-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-3-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-4-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-5-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-6-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-child-1-expected.txt: |
| * platform/chromium-win/fast/html/details-remove-summary-child-2-expected.txt: |
| * platform/chromium-win/fast/html/details-writing-mode-expected.txt: |
| * platform/chromium-win/fast/images/imagemap-focus-ring-zoom-expected.txt: |
| * platform/chromium-win/fast/inline-block/contenteditable-baseline-expected.txt: |
| * platform/chromium-win/fast/writing-mode/fieldsets-expected.txt: |
| * platform/chromium-win/media/media-document-audio-repaint-expected.txt: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-2-expected.txt: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-expected.txt: |
| * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: |
| * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: |
| * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: |
| * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: |
| * platform/chromium-win/tables/mozilla/bugs/bug30692-expected.txt: |
| * platform/chromium/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.txt: |
| |
| 2012-10-05 Jer Noble <jer.noble@apple.com> |
| |
| Enable ENCRYPTED_MEDIA support on Mac. |
| https://bugs.webkit.org/show_bug.cgi?id=98044 |
| |
| Reviewed by Anders Carlsson. |
| |
| Add platform specific expected results. |
| |
| * platform/mac/fast/events/constructors/media-key-event-constructor-expected.txt: Added. |
| * platform/chromium/fast/events/constructors/media-key-event-constructor-expected.txt: Copied from |
| fast/events/constructors/media-key-event-constructor-expected.txt due to chromium expected results |
| search order including platform/mac. |
| |
| 2012-10-12 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unreviewed gardening. |
| |
| Move some WontFix tests to the right place in the file, and add |
| some ImageOnlyFailures that showed up after updating Cairo to |
| 1.12.4. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-12 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening. |
| |
| * platform/qt-5.0-wk2/css3/filters/composited-during-animation-layertree-expected.txt: Updated. |
| * platform/qt/TestExpectations: Skip a flakey test. |
| |
| 2012-10-12 Adam Barth <abarth@webkit.org> |
| |
| More baselines updates after http://trac.webkit.org/changeset/131134. |
| It seems http://trac.webkit.org/changeset/131158 wasn't quite complete. |
| |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-no-markup-expected.png: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-linux-x86/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-linux-x86/svg/text/bidi-text-query-expected.txt: Removed. |
| * platform/chromium-linux-x86/transforms/2d/hindi-rotated-expected.png: Removed. |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-no-markup-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-linux/svg/text/bidi-text-query-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/svg/text/bidi-text-query-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Removed. |
| * platform/chromium-win-xp/svg/text/bidi-text-query-expected.txt: Removed. |
| |
| 2012-10-12 Adam Barth <abarth@webkit.org> |
| |
| Note that this test is flaky. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-12 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] More pixel expectations and gardening. |
| |
| Skip some pixel tests which are failing in WK1 and add correct PNG |
| baselines for quite a few tests which render correctly in WK2. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/efl/compositing/fixed-position-scroll-offset-history-restore-expected.png: Added. |
| * platform/efl/compositing/geometry/fixed-in-composited-expected.png: |
| * platform/efl/compositing/geometry/horizontal-scroll-composited-expected.png: |
| * platform/efl/compositing/geometry/video-fixed-scrolling-expected.png: |
| * platform/efl/compositing/overflow/fixed-position-ancestor-clip-expected.png: |
| * platform/efl/compositing/repaint/newly-composited-repaint-rect-expected.png: Added. |
| * platform/efl/fast/block/positioning/rtl-fixed-positioning-expected.png: |
| * platform/efl/fast/block/positioning/vertical-rl/fixed-positioning-expected.png: |
| * platform/efl/fast/dynamic/anchor-lock-expected.png: |
| * platform/efl/fast/events/autoscroll-expected.png: |
| * platform/efl/fast/events/reveal-link-when-focused-expected.png: |
| * platform/efl/fast/layers/scroll-rect-to-visible-expected.png: |
| * platform/efl/fast/multicol/scrolling-overflow-expected.png: |
| * platform/efl/fast/multicol/shrink-to-column-height-for-pagination-expected.png: |
| * platform/efl/fast/overflow/clip-rects-fixed-ancestor-expected.png: |
| * platform/efl/fast/overflow/position-fixed-transform-clipping-expected.png: |
| * platform/efl/fast/overflow/scrollRevealButton-expected.png: |
| * platform/efl/fast/repaint/absolute-position-changed-expected.png: |
| * platform/efl/fast/repaint/fixed-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-and-absolute-position-scrolled-expected.png: |
| * platform/efl/fast/repaint/fixed-child-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-expected.png: |
| * platform/efl/fast/repaint/fixed-move-after-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-scale-expected.png: |
| * platform/efl/fast/repaint/fixed-scroll-simple-expected.png: |
| * platform/efl/fast/repaint/fixed-table-cell-expected.png: |
| * platform/efl/fast/repaint/fixed-table-overflow-expected.png: |
| * platform/efl/fast/repaint/fixed-table-overflow-zindex-expected.png: |
| * platform/efl/fast/repaint/fixed-tranformed-expected.png: |
| * platform/efl/fast/repaint/repaint-during-scroll-expected.png: |
| * platform/efl/fast/repaint/scroll-absolute-layer-with-reflection-expected.png: |
| * platform/efl/fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.png: |
| * platform/efl/fast/repaint/scroll-fixed-layer-with-reflection-expected.png: |
| * platform/efl/fast/repaint/scroll-fixed-layer-with-transformed-parent-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-fixed-reflected-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-in-fixed-layer-expected.png: |
| * platform/efl/fast/repaint/scroll-relative-table-inside-table-cell-expected.png: Added. |
| * platform/efl/fast/text/atsui-negative-spacing-features-expected.png: |
| * platform/efl/fast/text/justify-ideograph-complex-expected.png: |
| * platform/efl/fast/text/large-text-composed-char-expected.png: |
| * platform/efl/http/tests/loading/simple-subframe-expected.png: Added. |
| * platform/efl/svg/as-image/img-preserveAspectRatio-support-1-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-baseFrequency-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug1647-expected.png: Added. |
| |
| 2012-10-12 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Gardening of the WK2 Debug Bot failing tests |
| https://bugs.webkit.org/show_bug.cgi?id=99184 |
| |
| Unreviewed EFL gardening. |
| |
| Skip failing tests on WK2 debug bot. Also, unskip tests that are |
| consistently passing. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl-wk2/http/tests/loading/text-content-type-with-binary-extension-expected.txt: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-12 Alexander Pavlov <apavlov@chromium.org> |
| |
| Unreviewed, rebaseline inspector/styles/region-style-crash.html after r131176. |
| |
| * inspector/styles/region-style-crash-expected.txt: |
| |
| 2012-10-12 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: [Styles] !important priority not honored inside the same declaration |
| https://bugs.webkit.org/show_bug.cgi?id=99170 |
| |
| Reviewed by Yury Semikhatsky. |
| |
| * inspector/elements/elements-panel-styles-expected.txt: |
| * inspector/elements/resources/elements-panel-styles.css: |
| (.foo): |
| |
| 2012-10-12 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Gardening to make the bots green |
| https://bugs.webkit.org/show_bug.cgi?id=99176 |
| |
| Unreviewed EFL gardening. |
| |
| Skip failing tests in order to make the bots green. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-12 Michał Pakuła vel Rutka <m.pakula@samsung.com> |
| |
| Unreviewed EFL gardening. |
| https://bugs.webkit.org/show_bug.cgi?id=99161 |
| |
| Unskip editing/pasteboard and add test expectations for failing tests. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-12 Pavel Feldman <pfeldman@chromium.org> |
| |
| Web Inspector: relies on current Function.prototype.bind in the frame |
| https://bugs.webkit.org/show_bug.cgi?id=99164 |
| |
| Reviewed by Yury Semikhatsky. |
| |
| * inspector/console/command-line-api-expected.txt: |
| * inspector/console/console-bind-fake-expected.txt: Added. |
| * inspector/console/console-bind-fake.html: Added. |
| |
| 2012-10-12 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, update expected files, skip new failing tests. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0-wk2/css3/filters/composited-during-animation-layertree-expected.txt: Added. |
| * platform/qt-5.0-wk2/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Added. |
| |
| 2012-10-12 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: [Styles] Colors should be "As authored" by default |
| https://bugs.webkit.org/show_bug.cgi?id=99017 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| Test rebaselines. |
| |
| * inspector/elements/elements-panel-styles-expected.txt: |
| * inspector/styles/inject-stylesheet-expected.txt: |
| * inspector/styles/lazy-computed-style-expected.txt: |
| * inspector/styles/styles-computed-trace-expected.txt: |
| * inspector/styles/styles-overriden-properties-expected.txt: |
| * inspector/styles/styles-update-from-js-expected.txt: |
| * inspector/styles/variables/css-variables-expected.txt: |
| * platform/chromium/inspector/styles/inject-stylesheet-expected.txt: |
| |
| 2012-10-12 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: Extract domain specific editing handling logic from UISourceCode descendants (step 1). |
| https://bugs.webkit.org/show_bug.cgi?id=98912 |
| |
| Reviewed by Pavel Feldman. |
| |
| * inspector/debugger/live-edit.html: |
| * inspector/extensions/extensions-resources.html: |
| |
| 2012-10-12 Kenichi Ishibashi <bashi@chromium.org> |
| |
| Unreviewed test expectations update after r131134 |
| |
| * platform/chromium-linux/css3/font-feature-settings-rendering-expected.txt: |
| * platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.png: |
| * platform/chromium-linux/fast/text/atsui-spacing-features-expected.png: |
| * platform/chromium-linux/fast/text/cg-vs-atsui-expected.png: |
| * platform/chromium-linux/fast/text/complex-text-opacity-expected.png: |
| * platform/chromium-linux/fast/text/drawBidiText-expected.png: |
| * platform/chromium-linux/fast/text/international/arabic-justify-expected.png: |
| * platform/chromium-linux/fast/text/international/arabic-vertical-offset-expected.png: |
| * platform/chromium-linux/fast/text/international/complex-joining-using-gpos-expected.png: |
| * platform/chromium-linux/fast/text/international/hebrew-vowels-expected.png: |
| * platform/chromium-linux/fast/text/international/hindi-spacing-expected.png: |
| * platform/chromium-linux/fast/text/international/khmer-selection-expected.png: |
| * platform/chromium-linux/fast/text/international/khmer-selection-expected.txt: |
| * platform/chromium-linux/fast/text/international/text-spliced-font-expected.png: |
| * platform/chromium-linux/fast/text/international/thai-line-breaks-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/g-dirLTR-ubOverride-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/g-dirRTL-ubOverride-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-no-markup-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: |
| * platform/chromium-linux/svg/W3C-I18N/text-dirRTL-ubOverride-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/tspan-direction-rtl-expected.png: |
| * platform/chromium-linux/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.png: |
| * platform/chromium-linux/svg/W3C-SVG-1.1/text-intro-05-t-expected.png: |
| * platform/chromium-linux/svg/text/bidi-text-query-expected.png: |
| * platform/chromium-linux/svg/text/bidi-text-query-expected.txt: |
| * platform/chromium-linux/svg/text/bidi-tspans-expected.png: |
| * platform/chromium-linux/svg/text/text-intro-05-t-expected.png: |
| * platform/chromium-linux/svg/text/text-with-geometric-precision-expected.png: |
| * platform/chromium-linux/transforms/2d/hindi-rotated-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-12 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Rebaselining fast/dom/Window/window-properties-performance.html after r131106. |
| Adding a failure expectation for a transitions blend mode test added in r131146. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/dom/Window/window-properties-performance-expected.txt: |
| |
| 2012-10-12 Kenichi Ishibashi <bashi@chromium.org> |
| |
| [WebSocket] Add "Cache-Control: no-cache" to handshake request |
| https://bugs.webkit.org/show_bug.cgi?id=98000 |
| |
| Reviewed by Yuta Kitamura. |
| |
| Add a test for no-cache headers check. |
| |
| * http/tests/websocket/tests/hybi/nocache-expected.txt: Added. |
| * http/tests/websocket/tests/hybi/nocache-test_wsh.py: Added. |
| (web_socket_do_extra_handshake): |
| (web_socket_transfer_data): |
| * http/tests/websocket/tests/hybi/nocache.html: Added. |
| |
| 2012-10-12 Zoltan Arvai <zarvai@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening. Skip test using disabled SHADOW_DOM. |
| |
| * platform/qt/TestExpectations: Skip fast/dom/shadow/insertion-point-resetStyleInheritance.html. |
| |
| 2012-10-11 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectation updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-11 Rik Cabanier <cabanier@adobe.com> |
| |
| Bad copy constructor in StyleRareNonInheritedData |
| https://bugs.webkit.org/show_bug.cgi?id=98950 |
| |
| Reviewed by Eric Seidel. |
| |
| Typo in copy constructor caused blendmode to always be the default. |
| |
| * platform/chromium/TestExpectations: |
| * transitions/blendmode-transitions-expected.txt: Added. |
| * transitions/blendmode-transitions.html: Added. |
| * transitions/resources/transition-test-helpers.js: |
| * transitions/svg-transitions-expected.txt: |
| |
| 2012-10-11 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectation updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-11 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, TestExpectations updated. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-11 Takashi Sakamoto <tasak@google.com> |
| |
| [Shadow DOM] Insertion points need resetStyleInheritance |
| https://bugs.webkit.org/show_bug.cgi?id=93922 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/insertion-point-resetStyleInheritance-expected.txt: Added. |
| * fast/dom/shadow/insertion-point-resetStyleInheritance.html: Added. |
| |
| 2012-10-11 Kenichi Ishibashi <bashi@chromium.org> |
| |
| [Chromium] Use harfbuzz-ng by default on Linux |
| https://bugs.webkit.org/show_bug.cgi?id=97281 |
| |
| Reviewed by Tony Chang. |
| |
| * platform/chromium/TestExpectations: Added temporary expectations. |
| |
| 2012-10-11 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, rebaselined. |
| |
| * platform/chromium-linux/platform/chromium/compositing/tiny-layer-rotated-expected.png: |
| * platform/chromium-mac/platform/chromium/compositing/tiny-layer-rotated-expected.png: |
| * platform/chromium-win/platform/chromium/compositing/tiny-layer-rotated-expected.png: |
| |
| 2012-10-11 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, rebaselined. |
| |
| * platform/chromium-mac-snowleopard/svg/custom/foreign-object-skew-expected.png: |
| |
| 2012-10-11 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r131100. |
| http://trac.webkit.org/changeset/131100 |
| https://bugs.webkit.org/show_bug.cgi?id=99127 |
| |
| Caused an ASSERT (Requested by abarth|gardening on #webkit). |
| |
| * css3/filters/custom/custom-filter-composite-operators-expected.png: Removed. |
| * css3/filters/custom/custom-filter-composite-operators-expected.txt: Removed. |
| * css3/filters/custom/custom-filter-composite-operators.html: Removed. |
| |
| 2012-10-11 Adam Barth <abarth@webkit.org> |
| |
| Add baselines for the rest of the platforms after |
| http://trac.webkit.org/changeset/131111 |
| |
| * platform/chromium-linux/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Added. |
| * platform/chromium-mac/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Added. |
| * platform/chromium-mac/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Added. |
| * platform/chromium-win/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Added. |
| * platform/chromium-win/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Added. |
| |
| 2012-10-11 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r131107. |
| http://trac.webkit.org/changeset/131107 |
| https://bugs.webkit.org/show_bug.cgi?id=99126 |
| |
| Causes an ASSERT (Requested by abarth|gardening on #webkit). |
| |
| * accessibility/secure-textfield-title-ui.html: |
| * accessibility/title-ui-element-correctness-expected.txt: Removed. |
| * accessibility/title-ui-element-correctness.html: Removed. |
| * perf/accessibility-title-ui-element-expected.txt: Removed. |
| * perf/accessibility-title-ui-element.html: Removed. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-11 Jeffrey Pfau <jpfau@apple.com> |
| |
| [Mac] Temporarily mark fast/canvas/webgl/arraybuffer-transfer-of-control.html as failing |
| https://bugs.webkit.org/show_bug.cgi?id=99096 |
| |
| * platform/mac/TestExpectations: |
| |
| 2012-10-11 Levi Weintraub <leviw@chromium.org> |
| |
| [Sub pixel layout] Fast-path iframe scrolling can picks up an extra pixel |
| https://bugs.webkit.org/show_bug.cgi?id=98571 |
| |
| Reviewed by Emil A Eklund. |
| |
| Tests scrolling of sub-pixel layers on sub-pixel platforms (Chromium). |
| |
| * fast/sub-pixel/sub-pixel-iframe-copy-on-scroll.html: Added. |
| * platform/chromium-linux/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Added. |
| * platform/chromium-linux/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Added. |
| * platform/chromium-linux/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| The repaint rect shrinks safely by one pixel. |
| * platform/chromium/TestExpectations: |
| * platform/mac-lion/TestExpectations: |
| * platform/mac-snowleopard/TestExpectations: |
| * platform/mac-wk2/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-4.8/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win-wk2/TestExpectations: |
| * platform/win-xp/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-11 Dominic Mazzoni <dmazzoni@google.com> |
| |
| AX: labelForElement is slow when there are a lot of DOM elements |
| https://bugs.webkit.org/show_bug.cgi?id=97825 |
| |
| Reviewed by Ryosuke Niwa. |
| |
| Adds two new tests for titleUIElement that run on both Mac and |
| Chromium. One tests correctness, the other tests speed. |
| |
| Fixes one test so that it passes on Chromium. |
| Enables other tests that now pass on Chromium. |
| |
| * accessibility/secure-textfield-title-ui.html: |
| * accessibility/title-ui-element-correctness-expected.txt: Added. |
| * accessibility/title-ui-element-correctness.html: Added. |
| * perf/accessibility-title-ui-element-expected.txt: Added. |
| * perf/accessibility-title-ui-element.html: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-11 James Simonsen <simonjam@chromium.org> |
| |
| unprefix window.performance.webkitNow() |
| https://bugs.webkit.org/show_bug.cgi?id=88278 |
| |
| Reviewed by Tony Gentilcore. |
| |
| * fast/dom/Window/window-properties-performance-expected.txt: |
| * fast/performance/performance-now-timestamps-expected.txt: |
| * fast/performance/script-tests/performance-now-timestamps.js: |
| * platform/chromium/TestExpectations: Remove skipped expectation. |
| * platform/efl/TestExpectations: |
| * platform/efl/fast/dom/Window/window-properties-performance-expected.txt: |
| * platform/gtk/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/dom/Window/window-properties-performance-expected.txt: |
| * resources/magnitude-perf.js: |
| (Magnitude._runIteration): |
| |
| 2012-10-11 Huang Dongsung <luxtella@company100.net> |
| |
| [CSS Shaders] Make custom filters use a premultiplied buffer. |
| https://bugs.webkit.org/show_bug.cgi?id=98396 |
| |
| Reviewed by Dean Jackson. |
| |
| Add test to check that the DOM element texture composites correctly |
| when source alpha is a fractional value. |
| |
| * css3/filters/custom/custom-filter-composite-fractional-source-alpha-expected.html: Added. |
| * css3/filters/custom/custom-filter-composite-fractional-source-alpha.html: Added. |
| |
| 2012-10-11 Huang Dongsung <luxtella@company100.net> |
| |
| [CSS Shaders] Implement all composite operators except destination and lighter. |
| https://bugs.webkit.org/show_bug.cgi?id=97859 |
| |
| Reviewed by Dean Jackson. |
| |
| Add test to check that the DOM element texture composites correctly with the css_MixColor |
| variable from the author's shader for each composite operator. |
| |
| * css3/filters/custom/custom-filter-composite-operators-expected.png: Added. |
| * css3/filters/custom/custom-filter-composite-operators-expected.txt: Added. |
| * css3/filters/custom/custom-filter-composite-operators.html: Added. |
| |
| 2012-10-11 Adam Barth <abarth@webkit.org> |
| |
| One more baseline tweak after v8-i18n roll. |
| |
| * platform/chromium/fast/js/date-proto-generic-invocation-expected.txt: Replaced. |
| |
| 2012-10-11 Filip Pizlo <fpizlo@apple.com> |
| |
| UInt32ToNumber and OSR exit should be aware of copy propagation and correctly recover both versions of a variable that was subject to a UInt32ToNumber cast |
| https://bugs.webkit.org/show_bug.cgi?id=99100 |
| <rdar://problem/12480955> |
| |
| Reviewed by Michael Saboff and Mark Hahnenberg. |
| |
| * fast/js/dfg-uint32-to-number-in-middle-of-copy-propagation-expected.txt: Added. |
| * fast/js/dfg-uint32-to-number-in-middle-of-copy-propagation.html: Added. |
| * fast/js/jsc-test-list: |
| * fast/js/script-tests/dfg-uint32-to-number-in-middle-of-copy-propagation.js: Added. |
| (foo): |
| |
| 2012-10-11 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: IDL types defined in spec should be visible to scripts |
| https://bugs.webkit.org/show_bug.cgi?id=99093 |
| |
| Reviewed by Adam Barth. |
| |
| Verify that interfaces defined in the IDB spec's WebIDL are present on the |
| global object. |
| |
| * storage/indexeddb/interfaces-expected.txt: Added. |
| * storage/indexeddb/interfaces.html: Added. |
| * storage/indexeddb/resources/interfaces.js: Added. |
| * storage/indexeddb/resources/shared.js: Remove assertion redundant with this test. |
| (test): |
| |
| 2012-10-11 Adam Barth <abarth@webkit.org> |
| |
| Rebaseline these tests after v8-i18n roll. |
| |
| * platform/chromium/fast/js/kde/StringObject-expected.txt: |
| * platform/chromium/fast/js/kde/function_length-expected.txt: Added. |
| * platform/chromium/fast/js/kde/inbuilt_function_tostring-expected.txt: Added. |
| * platform/chromium/fast/js/string-prototype-properties-expected.txt: |
| * platform/chromium/inspector-protocol/runtime-getProperties-expected.txt: |
| |
| 2012-10-11 Jeffrey Pfau <jpfau@apple.com> |
| |
| [WK2] WTR needs an implementation of setAsynchronousSpellCheckingEnabled |
| https://bugs.webkit.org/show_bug.cgi?id=81042 |
| |
| Unreviewed, skipped a test that requires setAsynchronousSpellCheckingEnabled |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-11 Adam Barth <abarth@webkit.org> |
| |
| I'm not 100% sure what caused this test to change behavior, but fewer |
| unexpected exceptions seems like a good thing. |
| |
| * platform/chromium/http/tests/media: Added. |
| * platform/chromium/http/tests/media/media-source: Added. |
| * platform/chromium/http/tests/media/media-source/video-media-source-add-and-remove-buffers-expected.txt: Added. |
| |
| 2012-10-11 Adam Barth <abarth@webkit.org> |
| |
| Note that this test is flaky. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-11 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, skip new failing tests. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-11 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, unskip and rebase now passing tests. |
| |
| * platform/qt/TestExpectations: |
| * platform/qt/css2.1/20110323/inline-table-001-expected.png: Added. |
| * platform/qt/css2.1/20110323/inline-table-001-expected.txt: Added. |
| * platform/qt/css2.1/20110323/inline-table-002a-expected.png: Copied from LayoutTests/platform/qt/svg/custom/visibility-override-filter-expected.png. |
| * platform/qt/css2.1/20110323/inline-table-002a-expected.txt: Added. |
| * platform/qt/css2.1/20110323/inline-table-003-expected.png: Added. |
| * platform/qt/css2.1/20110323/inline-table-003-expected.txt: Added. |
| * platform/qt/css2.1/20110323/table-height-algorithm-023-expected.png: Added. |
| * platform/qt/css2.1/20110323/table-height-algorithm-023-expected.txt: Added. |
| * platform/qt/css2.1/20110323/table-height-algorithm-024-expected.png: Added. |
| * platform/qt/css2.1/20110323/table-height-algorithm-024-expected.txt: Added. |
| * platform/qt/css2.1/t051201-c23-first-line-00-b-expected.png: Added. |
| * platform/qt/css2.1/t051201-c23-first-line-00-b-expected.txt: |
| * platform/qt/css3/filters/blur-filter-page-scroll-expected.png: |
| * platform/qt/css3/filters/blur-filter-page-scroll-parents-expected.png: |
| * platform/qt/css3/filters/blur-filter-page-scroll-self-expected.png: Copied from LayoutTests/platform/qt/css3/filters/blur-filter-page-scroll-expected.png. |
| * platform/qt/css3/filters/blur-filter-page-scroll-self-expected.txt: Added. |
| * platform/qt/css3/filters/composited-during-animation-expected.txt: Added. |
| * platform/qt/css3/filters/composited-during-animation-layertree-expected.txt: Added. |
| * platform/qt/css3/filters/composited-during-transition-layertree-expected.txt: Added. |
| * platform/qt/css3/filters/effect-reference-ordering-expected.png: |
| * platform/qt/css3/images/cross-fade-background-size-expected.png: Added. |
| * platform/qt/css3/images/cross-fade-background-size-expected.txt: Added. |
| * platform/qt/css3/unicode-bidi-isolate-basic-expected.png: Added. |
| * platform/qt/css3/unicode-bidi-isolate-basic-expected.txt: Added. |
| * platform/qt/editing/inserting/multiple-lines-selected-expected.png: Added. |
| * platform/qt/editing/inserting/multiple-lines-selected-expected.txt: Added. |
| * platform/qt/fast/borders/rtl-border-04-expected.png: Added. |
| * platform/qt/fast/borders/rtl-border-04-expected.txt: Added. |
| * platform/qt/fast/borders/rtl-border-05-expected.png: Added. |
| * platform/qt/fast/borders/rtl-border-05-expected.txt: Added. |
| * platform/qt/fast/box-shadow/single-pixel-shadow-expected.png: Added. |
| * platform/qt/fast/box-shadow/single-pixel-shadow-expected.txt: Added. |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added. |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-center-expected.png: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-center-expected.txt: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-justify-expected.png: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-justify-expected.txt: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-left-expected.png: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-left-expected.txt: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-right-expected.png: Added. |
| * platform/qt/fast/css/text-overflow-ellipsis-text-align-right-expected.txt: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-center-expected.png: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-center-expected.txt: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-justify-expected.png: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-justify-expected.txt: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-left-expected.png: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-left-expected.txt: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-right-expected.png: Added. |
| * platform/qt/fast/css/vertical-text-overflow-ellipsis-text-align-right-expected.txt: Added. |
| * platform/qt/fast/dom/34176-expected.png: Added. |
| * platform/qt/fast/dom/34176-expected.txt: Added. |
| * platform/qt/fast/forms/input-placeholder-paint-order-expected.png: Added. |
| * platform/qt/fast/forms/input-placeholder-paint-order-expected.txt: Added. |
| * platform/qt/fast/forms/select/optgroup-rendering-expected.png: Added. |
| * platform/qt/fast/forms/select/optgroup-rendering-expected.txt: Added. |
| * platform/qt/fast/forms/textarea/textarea-placeholder-paint-order-expected.png: Added. |
| * platform/qt/fast/forms/textarea/textarea-placeholder-paint-order-expected.txt: Added. |
| * platform/qt/fast/inline/inline-box-background-expected.png: Added. |
| * platform/qt/fast/inline/inline-box-background-expected.txt: Added. |
| * platform/qt/fast/inline/inline-box-background-long-image-expected.png: Added. |
| * platform/qt/fast/inline/inline-box-background-long-image-expected.txt: Added. |
| * platform/qt/fast/inline/inline-box-background-repeat-x-expected.png: Added. |
| * platform/qt/fast/inline/inline-box-background-repeat-x-expected.txt: Added. |
| * platform/qt/fast/inline/inline-box-background-repeat-y-expected.png: Added. |
| * platform/qt/fast/inline/inline-box-background-repeat-y-expected.txt: Added. |
| * platform/qt/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Copied from LayoutTests/platform/qt/svg/custom/visibility-override-filter-expected.png. |
| * platform/qt/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Added. |
| * platform/qt/fast/reflections/reflection-with-zoom-expected.png: Added. |
| * platform/qt/fast/reflections/reflection-with-zoom-expected.txt: Added. |
| * platform/qt/fast/repaint/repaint-during-scroll-with-zoom-expected.png: Copied from LayoutTests/platform/qt/css3/filters/blur-filter-page-scroll-expected.png. |
| * platform/qt/fast/repaint/repaint-during-scroll-with-zoom-expected.txt: Added. |
| * platform/qt/fast/speech/input-appearance-searchandspeech-expected.png: |
| * platform/qt/fast/speech/input-appearance-searchandspeech-expected.txt: |
| * platform/qt/fast/speech/input-appearance-speechbutton-expected.png: |
| * platform/qt/fast/speech/input-appearance-speechbutton-expected.txt: |
| * platform/qt/fast/table/mozilla-bug10296-vertical-align-1-expected.png: Added. |
| * platform/qt/fast/table/mozilla-bug10296-vertical-align-1-expected.txt: Added. |
| * platform/qt/fast/table/mozilla-bug10296-vertical-align-2-expected.png: Added. |
| * platform/qt/fast/table/mozilla-bug10296-vertical-align-2-expected.txt: Added. |
| * platform/qt/fast/table/table-row-outline-paint-expected.png: Added. |
| * platform/qt/fast/table/table-row-outline-paint-expected.txt: Added. |
| * platform/qt/http/tests/misc/willCacheResponse-delegate-callback-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.png: Added. |
| * platform/qt/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.png: Added. |
| * platform/qt/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: Added. |
| * platform/qt/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.png: Added. |
| * platform/qt/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.png: Added. |
| * platform/qt/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png: Added. |
| * platform/qt/svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.png: Added. |
| * platform/qt/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt: Added. |
| * platform/qt/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt: |
| * platform/qt/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt: |
| * platform/qt/svg/batik/filters/feTile-expected.png: Added. |
| * platform/qt/svg/batik/filters/feTile-expected.txt: |
| * platform/qt/svg/batik/paints/patternRegions-expected.png: |
| * platform/qt/svg/batik/paints/patternRegions-expected.txt: |
| * platform/qt/svg/batik/paints/patternRegions-positioned-objects-expected.png: |
| * platform/qt/svg/batik/paints/patternRegions-positioned-objects-expected.txt: |
| * platform/qt/svg/batik/text/textEffect-expected.png: |
| * platform/qt/svg/batik/text/textEffect-expected.txt: |
| * platform/qt/svg/batik/text/textEffect3-expected.png: |
| * platform/qt/svg/batik/text/textEffect3-expected.txt: |
| * platform/qt/svg/batik/text/textLayout-expected.png: Added. |
| * platform/qt/svg/batik/text/textLayout-expected.txt: Added. |
| * platform/qt/svg/batik/text/textOnPathSpaces-expected.png: Added. |
| * platform/qt/svg/batik/text/textOnPathSpaces-expected.txt: Added. |
| * platform/qt/svg/batik/text/textStyles-expected.png: Added. |
| * platform/qt/svg/batik/text/textStyles-expected.txt: Added. |
| * platform/qt/svg/batik/text/verticalText-expected.png: Added. |
| * platform/qt/svg/batik/text/verticalText-expected.txt: Added. |
| * platform/qt/svg/batik/text/xmlSpace-expected.png: Added. |
| * platform/qt/svg/batik/text/xmlSpace-expected.txt: Added. |
| * platform/qt/svg/clip-path/clip-in-clip-expected.png: Copied from LayoutTests/platform/qt/svg/custom/visibility-override-filter-expected.png. |
| * platform/qt/svg/clip-path/clip-in-clip-expected.txt: Added. |
| * platform/qt/svg/clip-path/clipper-placement-issue-expected.png: Copied from LayoutTests/platform/qt/svg/custom/visibility-override-filter-expected.png. |
| * platform/qt/svg/clip-path/clipper-placement-issue-expected.txt: Added. |
| * platform/qt/svg/css/group-with-shadow-expected.png: Added. |
| * platform/qt/svg/css/group-with-shadow-expected.txt: Added. |
| * platform/qt/svg/custom/clip-path-with-css-transform-1-expected.png: Copied from LayoutTests/platform/qt/css3/filters/blur-filter-page-scroll-expected.png. |
| * platform/qt/svg/custom/clip-path-with-css-transform-1-expected.txt: Added. |
| * platform/qt/svg/custom/clip-path-with-css-transform-2-expected.png: Copied from LayoutTests/platform/qt/css3/filters/blur-filter-page-scroll-expected.png. |
| * platform/qt/svg/custom/clip-path-with-css-transform-2-expected.txt: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Discrete-expected.png: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Discrete-expected.txt: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Gamma-expected.png: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Gamma-expected.txt: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Linear-expected.png: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Linear-expected.txt: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Table-expected.png: Added. |
| * platform/qt/svg/custom/feComponentTransfer-Table-expected.txt: Added. |
| * platform/qt/svg/custom/gradient-deep-referencing-expected.txt: |
| * platform/qt/svg/custom/gradient-with-1d-boundingbox-expected.txt: |
| * platform/qt/svg/custom/hit-test-with-br-expected.png: Added. |
| * platform/qt/svg/custom/hit-test-with-br-expected.txt: Added. |
| * platform/qt/svg/custom/js-late-pattern-and-object-creation-expected.png: Added. |
| * platform/qt/svg/custom/js-late-pattern-and-object-creation-expected.txt: Added. |
| * platform/qt/svg/custom/js-late-pattern-creation-expected.png: Added. |
| * platform/qt/svg/custom/js-late-pattern-creation-expected.txt: Added. |
| * platform/qt/svg/custom/junk-data-expected.png: Added. |
| * platform/qt/svg/custom/junk-data-expected.txt: Added. |
| * platform/qt/svg/custom/missing-xlink-expected.png: |
| * platform/qt/svg/custom/missing-xlink-expected.txt: |
| * platform/qt/svg/custom/non-scaling-stroke-expected.png: |
| * platform/qt/svg/custom/non-scaling-stroke-expected.txt: |
| * platform/qt/svg/custom/painting-marker-07-f-inherit-expected.png: Copied from LayoutTests/platform/qt/css3/filters/blur-filter-page-scroll-expected.png. |
| * platform/qt/svg/custom/painting-marker-07-f-inherit-expected.txt: Added. |
| * platform/qt/svg/custom/path-bad-data-expected.png: |
| * platform/qt/svg/custom/path-bad-data-expected.txt: |
| * platform/qt/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png: |
| * platform/qt/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.txt: Added. |
| * platform/qt/svg/custom/recursive-gradient-expected.txt: |
| * platform/qt/svg/custom/relative-sized-content-with-resources-expected.png: |
| * platform/qt/svg/custom/relative-sized-content-with-resources-expected.txt: |
| * platform/qt/svg/custom/small-rect-scale-expected.png: Copied from LayoutTests/platform/qt/svg/custom/visibility-override-filter-expected.png. |
| * platform/qt/svg/custom/small-rect-scale-expected.txt: Added. |
| * platform/qt/svg/custom/stroked-pattern-expected.txt: |
| * platform/qt/svg/custom/use-font-face-crash-expected.png: |
| * platform/qt/svg/custom/use-font-face-crash-expected.txt: |
| * platform/qt/svg/custom/use-invalid-pattern-expected.txt: Added. |
| * platform/qt/svg/custom/visibility-override-filter-expected.png: |
| * platform/qt/svg/dom/length-list-parser-expected.txt: |
| * platform/qt/svg/filters/big-sized-filter-2-expected.png: Added. |
| * platform/qt/svg/filters/big-sized-filter-2-expected.txt: Added. |
| * platform/qt/svg/filters/big-sized-filter-expected.png: Added. |
| * platform/qt/svg/filters/big-sized-filter-expected.txt: Added. |
| * platform/qt/svg/foreignObject/fO-display-none-expected.png: Copied from LayoutTests/platform/qt/css3/filters/blur-filter-page-scroll-expected.png. |
| * platform/qt/svg/foreignObject/fO-display-none-expected.txt: Added. |
| * platform/qt/svg/foreignObject/fO-display-none-with-relative-pos-content-expected.png: Copied from LayoutTests/platform/qt/css3/filters/blur-filter-page-scroll-expected.png. |
| * platform/qt/svg/foreignObject/fO-display-none-with-relative-pos-content-expected.txt: Added. |
| * platform/qt/svg/hixie/data-types/002-expected.png: Added. |
| * platform/qt/svg/hixie/data-types/002-expected.txt: Added. |
| * platform/qt/svg/hixie/error/012-expected.png: Added. |
| * platform/qt/svg/hixie/error/012-expected.txt: Added. |
| * platform/qt/svg/hixie/perf/006-expected.png: |
| * platform/qt/svg/hixie/perf/006-expected.txt: |
| * platform/qt/svg/text/bidi-embedded-direction-expected.png: Added. |
| * platform/qt/svg/text/bidi-embedded-direction-expected.txt: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.png: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.txt: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.png: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.txt: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.png: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.txt: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.png: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.txt: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.txt: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.txt: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png: Added. |
| * platform/qt/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.txt: Added. |
| * platform/qt/svg/text/text-rescale-expected.png: Added. |
| * platform/qt/svg/text/text-rescale-expected.txt: Added. |
| * platform/qt/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png: |
| * platform/qt/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt: |
| * platform/qt/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png: Added. |
| * platform/qt/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt: |
| |
| 2012-10-11 Dan Bernstein <mitz@apple.com> |
| |
| <rdar://problem/12477191> Combined text reverts to full-width font after a style change |
| https://bugs.webkit.org/show_bug.cgi?id=99009 |
| |
| Reviewed by John Sullivan. |
| |
| * fast/text/text-combine-width-after-style-change-expected.html: Added. |
| * fast/text/text-combine-width-after-style-change.html: Added. |
| |
| 2012-10-11 Hayato Ito <hayato@chromium.org> |
| |
| Update ComposedShadowTreeWalker for Shadow DOM re-projection. |
| https://bugs.webkit.org/show_bug.cgi?id=97151 |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/composed-shadow-tree-walker-expected.txt: |
| * fast/dom/shadow/composed-shadow-tree-walker.html: |
| * fast/dom/shadow/resources/shadow-dom.js: |
| (createShadowRootWithAttributes): |
| (createDOM): |
| * fast/dom/shadow/shadow-dom-event-dispatching.html: |
| * fast/dom/shadow/shadowdom-reprojection-1-expected.html: Added. |
| * fast/dom/shadow/shadowdom-reprojection-1.html: Added. |
| * fast/dom/shadow/shadowdom-reprojection-2-expected.html: Added. |
| * fast/dom/shadow/shadowdom-reprojection-2.html: Added. |
| |
| 2012-10-11 Joshua Bell <jsbell@chromium.org> |
| |
| WebIDL: overloaded methods prevent number -> string conversion |
| https://bugs.webkit.org/show_bug.cgi?id=85326 |
| |
| Reviewed by Kentaro Hara. |
| |
| Updated expectations - new (more generic) console warnings. |
| |
| * storage/indexeddb/cursor-overloads-expected.txt: |
| * storage/indexeddb/legacy-constants-expected.txt: |
| |
| 2012-10-11 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Cleaning up the expected failures section. Any test that is marked as a WontFix |
| should now have a small comment about the reasoning for such expectation, but no |
| bug modifier. Any other expectation should now have a dedicated bug entry in the |
| bugzilla that has the Gtk and LayoutTestFailure keywords. Also removed some |
| outdated expectations or moved them into the failing tests section. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-11 Ádám Kallai <kadam@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening after 131050, 131051. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-11 Kenichi Ishibashi <bashi@chromium.org> |
| |
| REGRESSION(130231): Causes 3 complex font test failures on EFL / Harfbuzz+Freetype |
| https://bugs.webkit.org/show_bug.cgi?id=98247 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Removing temporary failures of complex font cases. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-11 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| REGRESSION (r129478-r129480): http/tests/loading/text-content-type-with-binary-extension.html failing on Apple MountainLion Debug WK2 (Tests) |
| https://bugs.webkit.org/show_bug.cgi?id=98527 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Rebased http/tests/loading/text-content-type-with-binary-extension.html for WK2 EFL, as dumping order is affected. |
| Other WK2 ports will have to do the same. |
| |
| * platform/efl-wk2/http/tests/loading/text-content-type-with-binary-extension-expected.txt: Added. |
| * platform/gtk-wk2/TestExpectations: |
| * platform/mac-wk2/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-11 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding platform-specific baseline for svg/custom/clip-mask-negative-scale.html |
| that's required after r130090. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/svg/custom/clip-mask-negative-scale-expected.png: Added. |
| * platform/gtk/svg/custom/clip-mask-negative-scale-expected.txt: Added. |
| |
| 2012-10-11 Keishi Hattori <keishi@webkit.org> |
| |
| F4 key should open the picker popup on Windows and Linux |
| https://bugs.webkit.org/show_bug.cgi?id=98754 |
| |
| Reviewed by Kent Tamura. |
| |
| * fast/forms/date/calendar-picker-key-operations.html: |
| * platform/chromium-win/fast/forms/date/calendar-picker-key-operations-expected.txt: Added. |
| * platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-key-operations-expected.txt: |
| * platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-key-operations-expected.txt: |
| * platform/chromium/fast/forms/date/date-suggestion-picker-key-operations-expected.txt: |
| * platform/chromium/fast/forms/date/date-suggestion-picker-key-operations.html: |
| * platform/chromium/fast/forms/time/time-suggestion-picker-key-operations-expected.txt: |
| * platform/chromium/fast/forms/time/time-suggestion-picker-key-operations.html: |
| |
| 2012-10-11 Ádám Kallai <kadam@inf.u-szeged.hu> |
| |
| [Qt] Reviewing Qt TestExpectations. Unskip now passing tests. |
| |
| * platform/qt-5.0-wk1/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-11 Pavel Feldman <pfeldman@chromium.org> |
| |
| Not reviewed: revert 131004, 131012, 131016, 131042, 131043 for breaking inspector console |
| https://bugs.webkit.org/show_bug.cgi?id=99042 |
| |
| * fast/css-generated-content/before-content-continuation-chain-expected.txt: |
| * platform/chromium-mac-snowleopard/fast/css-generated-content/table-row-group-to-inline-expected.png: |
| * platform/chromium-mac/fast/css-generated-content/table-row-group-to-inline-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/fast/css-generated-content/table-row-group-to-inline-expected.txt: |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/css-generated-content/table-row-group-to-inline-expected.txt: |
| * platform/mac/fast/css-generated-content/table-row-group-to-inline-expected.png: |
| * platform/mac/fast/css-generated-content/table-row-group-to-inline-expected.txt: |
| |
| 2012-10-11 Kristóf Kosztyó <kkristof@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening after r131044. |
| |
| Skip the failing tests. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-11 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| Unreviewed Qt gardening. |
| |
| Unskip more tests that now passes in DRT after the implementation of beginDragWithFiles. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-11 Arpita Bahuguna <arpitabahuguna@gmail.com> |
| |
| REGRESSION (r96393): In some cases, generated content is never shown |
| https://bugs.webkit.org/show_bug.cgi?id=88196 |
| |
| Reviewed by Antti Koivisto. |
| |
| * fast/selectors/style-sharing-attribute-selector-with-pseudo-element-expected.html: Added. |
| * fast/selectors/style-sharing-attribute-selector-with-pseudo-element.html: Added. |
| Ref test added for verifying that the attribute selector style, when specified |
| in conjucntion with pseudo-elements, is applied to the corresponding element. |
| |
| 2012-10-11 Shinya Kawanaka <shinyak@chromium.org> |
| |
| Some shadow roots are not showing up in Inspector. |
| https://bugs.webkit.org/show_bug.cgi?id=88251 |
| |
| Reviewed by Pavel Feldman. |
| |
| * inspector/elements/shadow-root-expected.txt: Added. |
| * inspector/elements/shadow-root.html: Added. |
| |
| 2012-10-11 Jussi Kukkonen <jussi.kukkonen@intel.com> |
| |
| [WK2] Enable tests that use setAlwaysAcceptCookies() |
| https://bugs.webkit.org/show_bug.cgi?id=98891 |
| |
| Unreviewed gardening. Enable WebKit2 tests that use |
| setAlwaysAcceptCookies(): this feature was added several months ago. |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-11 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline fast/css-generated-content/table-row-group-to-inline.html after r131004. |
| |
| * platform/efl/fast/css-generated-content/table-row-group-to-inline-expected.txt: |
| |
| 2012-10-11 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Rebaselining fast/css-generated-content/table-row-group-to-inline.html after r131004. |
| Adding a flaky crashing expectation for fast/css/style-scoped/style-scoped-apply-authot-styles.html. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/css-generated-content/table-row-group-to-inline-expected.txt: |
| |
| 2012-10-11 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip fast/dom/shadow/shadowdom-dynamic-styling.html |
| |
| Seems to be passing consistently now. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-11 Michał Pakuła vel Rutka <m.pakula@samsung.com> |
| |
| [EFL] Add baselines for editing/pasteboard. |
| https://bugs.webkit.org/show_bug.cgi?id=99018 |
| |
| Unreviewed EFL gardening. |
| |
| * platform/efl/editing/pasteboard/: 26 new baselines. |
| |
| 2012-10-11 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] More unreviewed gardening. |
| |
| Revert my r130959, it turns out the tests being reported as |
| failing were ones which were not listed in TestExpectations at |
| all, so no cookie for me. |
| |
| Also add `Missing' as a valid expectation for |
| fast/css/text-rendering.html. While at it remove the text |
| expectations for it, since the test is failing for us anyway. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/fast/css/text-rendering-expected.txt: Removed. |
| |
| 2012-10-11 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: [Elements] Breadcrumbs are not updated upon involved elements' className changes |
| https://bugs.webkit.org/show_bug.cgi?id=98887 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| * inspector/elements/breadcrumb-updates-expected.txt: Added. |
| * inspector/elements/breadcrumb-updates.html: Added. |
| |
| 2012-10-11 Kunihiko Sakamoto <ksakamoto@chromium.org> |
| |
| Final newline (LF or CRLF) in paste buffer is converted to space |
| https://bugs.webkit.org/show_bug.cgi?id=80838 |
| |
| Reviewed by Ryosuke Niwa. |
| |
| Verify that trailing newlines are stripped when pasted into text inputs. |
| |
| * editing/input/paste-text-ending-with-interchange-newline-expected.txt: |
| Updated the expectation. |
| * fast/forms/paste-multiline-text-input.html: |
| Changed to use document.execCommand to mimic pasting, because setting |
| input.value attribute does not trigger beforeTextInserted event. |
| Added a test case to test trailing newlines. |
| |
| 2012-10-11 Ilya Tikhonovsky <loislo@chromium.org> |
| |
| Unreviewed. Skip inspector/profiler/memory-instrumentation-canvas.html on JSC platforms until proper fix in platform specific canvas code. |
| https://bugs.webkit.org/show_bug.cgi?id=99001 |
| |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-11 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, test expectation update. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-11 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed morning gardening, skip new failing tests. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-10 Ilya Tikhonovsky <loislo@chromium.org> |
| |
| Web Inspector: NMI instrument HTMLCanvas element. |
| https://bugs.webkit.org/show_bug.cgi?id=98917 |
| |
| Reviewed by Yury Semikhatsky. |
| |
| It also includes non intrusive instrumentation for skia classes. |
| |
| * inspector/profiler/memory-instrumentation-cached-images-expected.txt: |
| * inspector/profiler/memory-instrumentation-cached-images.html: |
| * inspector/profiler/memory-instrumentation-canvas.html: Added. |
| * inspector/profiler/memory-instrumentation-test.js: Added. |
| (initialize_MemoryInstrumentationTest.InspectorTest._memoryBlockSize): |
| (initialize_MemoryInstrumentationTest.InspectorTest.validateMemoryBlockSize): |
| (initialize_MemoryInstrumentationTest): |
| |
| 2012-10-10 Shinya Kawanaka <shinyak@chromium.org> |
| |
| [Chromium] Unreviewed gardening, rebaselined. |
| |
| * platform/chromium-mac-snowleopard/fast/css-generated-content/table-row-group-to-inline-expected.png: |
| * platform/chromium-mac/fast/css-generated-content/table-row-group-to-inline-expected.png: Removed. |
| |
| 2012-10-10 Simon Fraser <simon.fraser@apple.com> |
| |
| compositing/images/truncated-direct-png-image.html has been failing on Mac since it was |
| added. Mark it as an expected image failure. |
| |
| * platform/mac/TestExpectations: |
| |
| 2012-10-10 Simon Fraser <simon.fraser@apple.com> |
| |
| compositing/tiling/crash-reparent-tiled-layer.html is flakey |
| https://bugs.webkit.org/show_bug.cgi?id=82546 |
| |
| Reviewed by Beth Dakin. |
| |
| Unskip a previously-flakey tiled layer test that should not be flakey after this change. |
| |
| * platform/mac/TestExpectations: |
| |
| 2012-10-10 James Simonsen <simonjam@chromium.org> |
| |
| Import W3C test suite for performance.now() |
| https://bugs.webkit.org/show_bug.cgi?id=98953 |
| |
| Reviewed by Tony Gentilcore. |
| |
| * http/tests/w3c/webperf/approved/HighResolutionTime/basic-expected.txt: Added. |
| * http/tests/w3c/webperf/approved/HighResolutionTime/basic.html: Added. |
| * http/tests/w3c/webperf/approved/HighResolutionTime/monotonic-clock-expected.txt: Added. |
| * http/tests/w3c/webperf/approved/HighResolutionTime/monotonic-clock.html: Added. |
| * http/tests/w3c/webperf/approved/HighResolutionTime/resources/now_frame.html: Added. |
| * http/tests/w3c/webperf/approved/HighResolutionTime/test_cross_frame_start-expected.txt: Added. |
| * http/tests/w3c/webperf/approved/HighResolutionTime/test_cross_frame_start.html: Added. |
| * platform/chromium/TestExpectations: Skipped everywhere until we remove the prefix. |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-10 Dan Bernstein <mitz@apple.com> |
| |
| <rdar://problem/12472460> text-combine doesn’t use third- and quarter-width variants when used with @font-face |
| https://bugs.webkit.org/show_bug.cgi?id=98961 |
| |
| Reviewed by Tim Horton. |
| |
| * fast/text/text-combine-with-font-face-expected.html: Added. |
| * fast/text/text-combine-with-font-face.html: Added. |
| |
| 2012-10-10 Elliott Sprehn <esprehn@chromium.org> |
| |
| Move :before and :after into the DOM |
| https://bugs.webkit.org/show_bug.cgi?id=95117 |
| |
| Reviewed by Eric Seidel. |
| |
| Regenerated some baselines for tests given the new generated content architecture and disabled |
| tests that are testing generated content on inputs which were wrong. |
| |
| * fast/css-generated-content/before-content-continuation-chain-expected.txt: |
| * platform/chromium-mac/fast/css-generated-content/table-row-group-to-inline-expected.png: |
| * platform/chromium/TestExpectations: Disable the tests for generated content on inputs. A follow up CL with remove these tests. |
| * platform/mac/fast/css-generated-content/table-row-group-to-inline-expected.png: |
| * platform/mac/fast/css-generated-content/table-row-group-to-inline-expected.txt: |
| This test always produced wrong output because we leave an anonymous RenderTable in the tree, |
| and now that generated content is handled like DOM nodes this test renders differently since the |
| content ends up after the left over RenderTable. Both outputs are wrong until Bug 86261 is fixed. |
| |
| 2012-10-10 Levi Weintraub <leviw@chromium.org> |
| |
| Tests failure on Chromium Mac after r130821 |
| https://bugs.webkit.org/show_bug.cgi?id=98865 |
| |
| Reviewed by Adam Barth. |
| |
| Removing failing test entries. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Stephen Chenney <schenney@chromium.org> |
| |
| SVGTextRunRenderingContext changes font data in the glyph page, but it shouldn't |
| https://bugs.webkit.org/show_bug.cgi?id=98755 |
| |
| Reviewed by Eric Seidel. |
| |
| New test case that includes an alt-glyph that comes from the system |
| fallback font (because the alt-glyph doesn't reference anything). This |
| test crashes on Chromium linux without the patch, and may crash on |
| other platforms too. |
| |
| * svg/text/alt-glpyh-on-fallback-font-crash.html: Added. |
| |
| 2012-10-10 Tab Atkins <jackalmage@gmail.com> |
| |
| column-count: 0 should not prevent margin-collapse through |
| https://bugs.webkit.org/show_bug.cgi?id=65159 |
| |
| Reviewed by Tony Chang. |
| |
| Fixed the zeroColumnCount.html test to properly test that "0" is an invalid CSS value, |
| rather than just ensuring that it doesn't crash. |
| |
| * fast/multicol/zeroColumnCount-expected.txt: |
| * fast/multicol/zeroColumnCount.html: |
| |
| 2012-10-10 Alexander Shalamov <alexander.shalamov@intel.com> |
| |
| Invalid values for media query features are not handled |
| https://bugs.webkit.org/show_bug.cgi?id=97006 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Imported CSS3 Media Queries test suite from http://www.w3.org/Style/CSS/Test/MediaQueries/20120229/ |
| |
| * fast/media/media-query-invalid-value.html: Fixed invalid media query. |
| * fast/media/media-query-serialization.html: Fixed invalid media query. |
| * fast/media/w3c/README: Added. |
| * fast/media/w3c/resources/media_queries_iframe.html: Added. (Imported from w3c test suite) |
| * fast/media/w3c/test_media_queries-expected.txt: Added. |
| * fast/media/w3c/test_media_queries.html: Added. (Imported from w3c test suite) |
| |
| 2012-10-10 MORITA Hajime <morrita@google.com> |
| |
| https://bugs.webkit.org/show_bug.cgi?id=95664 |
| [Shadow DOM] should be able to be available without <style scoped> |
| |
| Reviewed by Dimitri Glazkov. |
| |
| * fast/dom/shadow/style-scoped-not-enabled-expected.txt: Added. |
| * fast/dom/shadow/style-scoped-not-enabled.html: Added. |
| |
| 2012-10-10 Ojan Vafai <ojan@chromium.org> |
| |
| check-layout.js should always dumpAsText |
| https://bugs.webkit.org/show_bug.cgi?id=98959 |
| |
| Reviewed by Tony Chang. |
| |
| Every checkLayout test was already dumpAsText except for |
| css3/flexbox/flex-item-child-overflow.html, which is a reftest |
| and really doesn't need to be a checkLayout test. |
| |
| * css3/flexbox/auto-height-dynamic.html: |
| * css3/flexbox/box-sizing-min-max-sizes.html: |
| * css3/flexbox/box-sizing.html: |
| * css3/flexbox/columns-auto-size.html: |
| * css3/flexbox/columns-height-set-via-top-bottom.html: |
| * css3/flexbox/flex-algorithm-min-max.html: |
| * css3/flexbox/flex-algorithm-with-margins.html: |
| * css3/flexbox/flex-algorithm.html: |
| * css3/flexbox/flex-align-column.html: |
| * css3/flexbox/flex-align-end.html: |
| * css3/flexbox/flex-align-max.html: |
| * css3/flexbox/flex-align-percent-height.html: |
| * css3/flexbox/flex-align-stretch.html: |
| * css3/flexbox/flex-align-vertical-writing-mode.html: |
| * css3/flexbox/flex-align.html: |
| * css3/flexbox/flex-flow-auto-margins.html: |
| * css3/flexbox/flex-flow-border.html: |
| * css3/flexbox/flex-flow-margins-auto-size.html: |
| * css3/flexbox/flex-flow-margins.html: |
| * css3/flexbox/flex-flow-orientations.html: |
| * css3/flexbox/flex-flow-overflow.html: |
| * css3/flexbox/flex-flow-padding.html: |
| * css3/flexbox/flex-flow.html: |
| * css3/flexbox/flex-item-child-overflow-expected.html: |
| * css3/flexbox/flex-item-child-overflow.html: |
| * css3/flexbox/flex-item-min-size.html: |
| * css3/flexbox/flex-justify-content.html: |
| * css3/flexbox/flex-no-flex.html: |
| * css3/flexbox/flex-rounding.html: |
| * css3/flexbox/flexitem-stretch-image.html: |
| * css3/flexbox/flexitem.html: |
| * css3/flexbox/floated-flexbox.html: |
| * css3/flexbox/inline-flex.html: |
| * css3/flexbox/line-wrapping.html: |
| * css3/flexbox/multiline-align-content-horizontal-column.html: |
| * css3/flexbox/multiline-align-content.html: |
| * css3/flexbox/multiline-align-self.html: |
| * css3/flexbox/multiline-column-auto.html: |
| * css3/flexbox/multiline-justify-content.html: |
| * css3/flexbox/multiline-reverse-wrap-overflow.html: |
| * css3/flexbox/multiline.html: |
| * css3/flexbox/nested-stretch.html: |
| * css3/flexbox/orthogonal-flex-directions.html: |
| * css3/flexbox/percent-margins.html: |
| * css3/flexbox/percentage-heights.html: |
| * css3/flexbox/percentage-sizes-quirks.html: |
| * css3/flexbox/percentage-sizes.html: |
| * css3/flexbox/perpendicular-writing-modes-inside-flex-item.html: |
| * css3/flexbox/position-absolute-child.html: |
| * css3/flexbox/position-absolute-children.html: |
| * css3/flexbox/preferred-widths-orthogonal.html: |
| * css3/flexbox/preferred-widths.html: |
| * css3/flexbox/relayout-image-load.html: |
| * css3/flexbox/style-change.html: |
| * css3/flexbox/true-centering.html: |
| * css3/flexbox/writing-modes.html: |
| * fast/block/margins-perpendicular-containing-block.html: |
| * fast/css-grid-layout/place-cell-by-index.html: |
| * fast/css/deprecated-flexbox-auto-min-size.html: |
| * fast/css/nested-percent-height-on-replaced.html: |
| * fast/css/percentage-height-auto-sized-body-quirks.html: |
| * fast/flexbox/flexing-overflow-scroll-item.html: |
| * fast/replaced/vertical-writing-mode-max-logical-width-replaced.html: |
| * fast/table/bad-replaced-sizing-preferred-logical-widths.html: |
| * fast/table/margins-flipped-text-direction.html: |
| * fast/table/margins-perpendicular-containing-block.html: |
| * fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks.html: |
| * fast/writing-mode/percentage-height-orthogonal-writing-modes.html: |
| * resources/check-layout.js: |
| |
| 2012-10-10 Jeffrey Pfau <jpfau@apple.com> |
| |
| [Mac][WK2] Unreviewed, skipping fast/parser/document-open-in-unload.html |
| |
| * platform/mac-wk2/TestExpectations: |
| |
| 2012-10-10 Ojan Vafai <ojan@chromium.org> |
| |
| Remove perf tests that haven't failed in the past 500 runs. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| More unreviewed Chromium gardening. |
| |
| * platform/chromium/TestExpectations: |
| Removed 11 more entries that have not failed in last 100 runs according to the flakiness dashboard. |
| |
| 2012-10-10 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> |
| |
| [WK2][WTR] WebKitTestRunner UI process should be aware of Custom Policy Delegate |
| https://bugs.webkit.org/show_bug.cgi?id=95974 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipped fast/loader/onload-policy-ignore-for-frame.html for WK2. |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-10 Adam Barth <abarth@webkit.org> |
| |
| This test can also fail with TEXT. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| * platform/chromium-linux/fast/repaint/reflection-repaint-test-expected.png: |
| * platform/chromium-linux/fast/repaint/transform-layout-repaint-expected.png: |
| * platform/chromium-mac/fast/repaint/reflection-repaint-test-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/transform-layout-repaint-expected.png: Added. |
| * platform/chromium-win/fast/repaint/reflection-repaint-test-expected.png: |
| * platform/chromium-win/fast/repaint/transform-layout-repaint-expected.png: |
| The flakiness dashboard was lying on this entry. After talking with Emil, the baselines are correct so |
| rebaselined these tests. |
| |
| * platform/chromium/TestExpectations: |
| Marked fast/dom/gc-dom-tree-lifetime.html as timeout as marking it slow didn't remove the flakiness. |
| |
| 2012-10-10 Adam Barth <abarth@webkit.org> |
| |
| When we check in image baselines, we use the -expected.png suffix |
| rather than the -actual.png suffix. (This is likely a typo in |
| http://trac.webkit.org/changeset/130940.) |
| |
| * platform/chromium-win/editing/spelling/inline-spelling-markers-hidpi-actual.png: Removed. |
| * platform/chromium-win/editing/spelling/inline-spelling-markers-hidpi-expected.png: Copied from LayoutTests/platform/chromium-win/editing/spelling/inline-spelling-markers-hidpi-actual.png. |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Skip the color-correction tests. |
| |
| Just specifying `Missing' makes the build bots sometimes report |
| these tests as failing. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-10 Adam Barth <abarth@webkit.org> |
| |
| Add a note that this test is flaky and can trigger an ASSERT. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 David Barton <dbarton@mathscribe.com> |
| |
| Turn on ENABLE_MATHML for Chromium |
| https://bugs.webkit.org/show_bug.cgi?id=96960 |
| |
| Reviewed by Adam Barth. |
| |
| We're enabling MathML now partly to let the automated fuzzers go to work. Some layout tuning will also be done in the |
| next few days, so we expect MathML pixel tests to be changing during that time. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| * platform/chromium/TestExpectations: |
| Removed 10 entries that have not failed in last 100 runs according to the flakiness dashboard. |
| |
| 2012-10-10 Mike West <mkwst@chromium.org> |
| |
| Web Inspector: add support for %c (style) in console API |
| https://bugs.webkit.org/show_bug.cgi?id=69401 |
| |
| Reviewed by Pavel Feldman. |
| |
| * http/tests/inspector/console-test.js: |
| (initialize_ConsoleTest.InspectorTest.dumpConsoleMessagesWithStyles): |
| Helper to dump the style associated with a console message. |
| * inspector/console/console-format-style-expected.txt: Added. |
| * inspector/console/console-format-style.html: Added. |
| |
| 2012-10-10 Varun Jain <varunjain@chromium.org> |
| |
| [chromium] Spelling and grammar markers are pixelated in hidpi. |
| https://bugs.webkit.org/show_bug.cgi?id=98339 |
| |
| Reviewed by Stephen White. |
| |
| We create separate bitmaps for markers in normal and hidpi mode as per |
| specification from UX and choose the right bitmap based on the current |
| device scale factor. |
| |
| * editing/spelling/grammar-markers-hidpi-expected.txt: Added. |
| * editing/spelling/grammar-markers-hidpi.html: Added. |
| * editing/spelling/inline-spelling-markers-hidpi-expected.txt: Added. |
| * editing/spelling/inline-spelling-markers-hidpi.html: Added. |
| * platform/chromium-linux/editing/spelling/grammar-markers-hidpi-expected.png: Added. |
| * platform/chromium-linux/editing/spelling/inline-spelling-markers-hidpi-expected.png: Added. |
| * platform/chromium-mac/editing/spelling/grammar-markers-hidpi-expected.png: Added. |
| * platform/chromium-mac/editing/spelling/inline-spelling-markers-hidpi-expected.png: Added. |
| * platform/chromium-win/editing/spelling/grammar-markers-hidpi-expected.png: Added. |
| * platform/chromium-win/editing/spelling/inline-spelling-markers-hidpi-actual.png: Added. |
| |
| 2012-10-10 Adam Barth <abarth@webkit.org> |
| |
| These tests appear to pass now. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Adam Barth <abarth@webkit.org> |
| |
| These tests appear to pass. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 David Grogan <dgrogan@chromium.org> |
| |
| Inspector: display IndexedDB integer versions |
| https://bugs.webkit.org/show_bug.cgi?id=95816 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| * http/tests/inspector/indexeddb/database-structure-expected.txt: |
| * http/tests/inspector/indexeddb/database-structure.html: |
| |
| 2012-10-10 Shinya Kawanaka <shinyak@chromium.org> |
| |
| Needs internal API to return distributed nodes for InsertionPoint |
| https://bugs.webkit.org/show_bug.cgi?id=98868 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/dom/shadow/distributed-nodes-expected.txt: Added. |
| * fast/dom/shadow/distributed-nodes.html: Added. |
| |
| 2012-10-10 Peter Beverloo <peter@chromium.org> |
| |
| Update more baselines and some entries in TestExpectations for Android. |
| |
| Unreviewed rebaselining. |
| |
| * platform/chromium-android/compositing/: 5 new baselines. |
| * platform/chromium-android/css2.1/: 5 new baselines. |
| * platform/chromium-android/css3/: 2 new baselines. |
| * platform/chromium-android/editing/: 5 new baselines. |
| * platform/chromium-android/fast/: 67 new baselines. |
| * platform/chromium-android/http/: 3 new baselines. |
| * platform/chromium-android/ietestcenter/: 4 new baselines. |
| * platform/chromium-android/platform/: 51 new baselines. |
| * platform/chromium-android/svg/: 111 new baselines. |
| * platform/chromium-android/tables/: 57 new baselines. |
| * platform/chromium-android/transitions/: 1 new baseline. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| * platform/chromium/TestExpectations: |
| Amend bad change from r130904, the test *IS* timing out on all Debug platforms, |
| not just on Android Debug. |
| |
| 2012-10-10 Andrei Bucur <abucur@adobe.com> |
| |
| [CSS Regions] Create a separate list for the invalid regions |
| https://bugs.webkit.org/show_bug.cgi?id=98752 |
| |
| Reviewed by Andreas Kling. |
| |
| The result for fast/regions/flows-dependency-same-flow.html was adapted to the new dump format. |
| Also, the platform expected results files were removed and a generic baseline was added. |
| |
| * fast/regions/flows-dependency-same-flow-expected.png: Added. |
| * fast/regions/flows-dependency-same-flow-expected.txt: Renamed from LayoutTests/platform/qt/fast/regions/flows-dependency-same-flow-expected.txt. |
| * platform/efl/fast/regions/flows-dependency-same-flow-expected.png: Removed. |
| * platform/efl/fast/regions/flows-dependency-same-flow-expected.txt: Removed. |
| * platform/gtk/fast/regions/flows-dependency-same-flow-expected.png: Removed. |
| * platform/gtk/fast/regions/flows-dependency-same-flow-expected.txt: Removed. |
| * platform/mac/fast/regions/flows-dependency-same-flow-expected.png: Removed. |
| * platform/mac/fast/regions/flows-dependency-same-flow-expected.txt: Removed. |
| * platform/qt/fast/regions/flows-dependency-same-flow-expected.png: Removed. |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Remove a few wrong expectations from the tree and properly skip the tests. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/fast/css/color-correction-backgrounds-and-text-expected.png: Removed. |
| * platform/efl/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed. |
| * platform/efl/fast/css/color-correction-expected.png: Removed. |
| * platform/efl/fast/css/color-correction-expected.txt: Removed. |
| * platform/efl/fast/css/color-correction-on-background-image-expected.txt: Removed. |
| * platform/efl/fast/css/color-correction-on-backgrounds-expected.txt: Removed. |
| * platform/efl/fast/css/color-correction-on-box-shadow-expected.txt: Removed. |
| * platform/efl/fast/css/color-correction-on-text-shadow-expected.txt: Removed. |
| * platform/efl/fast/css/color-correction-untagged-images-expected.txt: Removed. |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] More gardening. |
| |
| * platform/efl/TestExpectations: Unskip a few tests which have had |
| their pixel expectations committed. |
| * platform/efl/svg/css/text-gradient-shadow-expected.png: Added. |
| |
| 2012-10-10 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Rebaselining tests after r130851. |
| |
| * platform/gtk/fast/text/justify-ideograph-complex-expected.txt: |
| * platform/gtk/platform: Added. |
| * platform/gtk/platform/gtk: Added. |
| * platform/gtk/platform/gtk/fonts: Added. |
| * platform/gtk/platform/gtk/fonts/complex-text-shadows-expected.txt: Added. |
| * platform/gtk/platform/gtk/fonts/font-face-with-complex-text-expected.txt: Added. |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Add more missing pixel expectations to lots of different directories. |
| |
| * platform/efl/compositing/geometry/fixed-position-composited-page-scale-down-expected.png: Added. |
| * platform/efl/compositing/geometry/fixed-position-composited-page-scale-expected.png: Added. |
| * platform/efl/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png: Added. |
| * platform/efl/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png: Added. |
| * platform/efl/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: Added. |
| * platform/efl/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png: Added. |
| * platform/efl/compositing/geometry/foreground-layer-expected.png: Added. |
| * platform/efl/compositing/layer-creation/spanOverlapsCanvas-expected.png: Added. |
| * platform/efl/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Added. |
| * platform/efl/compositing/video/video-controls-layer-creation-expected.png: Added. |
| * platform/efl/editing/pasteboard/drag-drop-dead-frame-expected.png: Added. |
| * platform/efl/editing/selection/5354455-2-expected.png: Added. |
| * platform/efl/editing/undo/4063751-expected.png: Added. |
| * platform/efl/editing/undo/5378473-expected.png: Added. |
| * platform/efl/editing/undo/redo-typing-001-expected.png: Added. |
| * platform/efl/editing/undo/undo-combined-delete-boundary-expected.png: Added. |
| * platform/efl/editing/undo/undo-combined-delete-expected.png: Added. |
| * platform/efl/editing/undo/undo-delete-boundary-expected.png: Added. |
| * platform/efl/editing/undo/undo-delete-expected.png: Added. |
| * platform/efl/editing/undo/undo-forward-delete-boundary-expected.png: Added. |
| * platform/efl/editing/undo/undo-forward-delete-expected.png: Added. |
| * platform/efl/editing/undo/undo-misspellings-expected.png: Added. |
| * platform/efl/editing/undo/undo-typing-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background-color-applied-to-rounded-inline-element-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background-color-border-box-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-002-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-applies-to-block-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background_color_padding_box-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-002-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-003-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-004-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-005-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-010-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-017-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-clip-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-not-inherited-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-003-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-005-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-002-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-002-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-003-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-004-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/color-behind-images-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.png: Added. |
| * platform/efl/ietestcenter/css3/bordersbackgrounds/order-of-images-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-001-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-002-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-003-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-004-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-005-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-006-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-007-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-009-expected.png: Added. |
| * platform/efl/ietestcenter/css3/text/textshadow-010-expected.png: Added. |
| * platform/efl/printing/iframe-print-expected.png: Added. |
| |
| 2012-10-10 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [GTK] svg/W3C-SVG-1.1/animate-elem-08-t.svg needs rebaselining after r130840 |
| https://bugs.webkit.org/show_bug.cgi?id=98910 |
| |
| Unreviewed, rebaseline GTK+ test results. |
| |
| * platform/gtk/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt: |
| |
| 2012-10-10 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] REGRESSION: 5 tests started to fail with newer Qt5 |
| https://bugs.webkit.org/show_bug.cgi?id=90687 |
| |
| Unreviewed gardening after r129234. |
| |
| Moves the Qt 5 specific results to qt-5.0 directory, while moving the old results to qt-4.8. |
| |
| * platform/qt-4.8/http/tests/xmlhttprequest/methods-expected.txt: Copied from LayoutTests/platform/qt/http/tests/xmlhttprequest/methods-expected.txt. |
| * platform/qt-4.8/http/tests/xmlhttprequest/workers/methods-async-expected.txt: Copied from LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/methods-async-expected.txt. |
| * platform/qt-4.8/http/tests/xmlhttprequest/workers/methods-expected.txt: Copied from LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/methods-expected.txt. |
| * platform/qt-4.8/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt: Copied from LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt. |
| * platform/qt-5.0/http/tests/cookies/double-quoted-value-with-semi-colon-expected.txt: Renamed from LayoutTests/platform/qt/http/tests/cookies/double-quoted-value-with-semi-colon-expected.txt. |
| * platform/qt-5.0/http/tests/xmlhttprequest/methods-expected.txt: Renamed from LayoutTests/platform/qt/http/tests/xmlhttprequest/methods-expected.txt. |
| * platform/qt-5.0/http/tests/xmlhttprequest/workers/methods-async-expected.txt: Renamed from LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/methods-async-expected.txt. |
| * platform/qt-5.0/http/tests/xmlhttprequest/workers/methods-expected.txt: Renamed from LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/methods-expected.txt. |
| * platform/qt-5.0/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt: Renamed from LayoutTests/platform/qt/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt. |
| |
| 2012-10-10 Adam Barth <abarth@webkit.org> |
| |
| Record that these tests have additional failure modes. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Peter Beverloo <peter@chromium.org> |
| |
| [Chromium-Android] Another batch of TestExpectation updates for Android |
| https://bugs.webkit.org/show_bug.cgi?id=98909 |
| |
| Unreviewed test expectation update. |
| |
| Many of the failures were actually ImageOnlyFailure, which isn't part |
| of the Failure state. This also includes a number of new expected |
| results, mostly focusing on crashing and timing out tests. |
| |
| * platform/chromium-android/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Layout Test platform/chromium/fast/forms/*/*-suggestion-picker-*-operations.html are flaky |
| https://bugs.webkit.org/show_bug.cgi?id=98906 |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Add some css3 expectations, rebaseline a css2.1 PNG. |
| |
| * platform/efl/css2.1/20110323/abspos-containing-block-initial-001-expected.png: |
| * platform/efl/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/efl/css3/flexbox/flexbox-baseline-expected.txt: Added. |
| * platform/efl/css3/images/cross-fade-background-size-expected.png: Added. |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Hopefully finish adding SVG pixel expectations. |
| |
| * platform/efl/svg/W3C-I18N/g-dirLTR-ubNone-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/g-dirLTR-ubOverride-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/text-dirLTR-ubNone-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/text-dirRTL-ubNone-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/text-dirRTL-ubOverride-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-direction-ltr-expected.png: Added. |
| * platform/efl/svg/W3C-I18N/tspan-direction-rtl-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-03-t-expected.png: Added. |
| * platform/efl/svg/as-background-image/animated-svg-as-background-expected.png: Added. |
| * platform/efl/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png: Added. |
| * platform/efl/svg/as-background-image/background-image-tiled-expected.png: Added. |
| * platform/efl/svg/as-background-image/same-image-two-instances-background-image-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-as-background-2-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-as-background-5-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-as-background-6-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-as-background-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-as-background-with-relative-size-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-as-background-with-viewBox-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-as-tiled-background-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-background-partial-redraw-expected.png: Added. |
| * platform/efl/svg/as-background-image/svg-width-100p-as-background-expected.png: Added. |
| * platform/efl/svg/as-image/image-respects-pageScaleFactor-change-expected.png: Added. |
| * platform/efl/svg/as-image/image-respects-pageScaleFactor-expected.png: Added. |
| * platform/efl/svg/as-image/svg-as-image-expected.png: Added. |
| * platform/efl/svg/as-image/svg-as-relative-image-expected.png: Added. |
| * platform/efl/svg/as-image/svg-as-relative-image-with-explicit-size-expected.png: Added. |
| * platform/efl/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: Added. |
| * platform/efl/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: Added. |
| * platform/efl/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png: Added. |
| * platform/efl/svg/as-object/embedded-svg-size-changes-expected.png: Added. |
| * platform/efl/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.png: Added. |
| * platform/efl/svg/as-object/nested-embedded-svg-size-changes-expected.png: Added. |
| * platform/efl/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: Added. |
| * platform/efl/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: Added. |
| * platform/efl/svg/carto.net/combobox-expected.png: Added. |
| * platform/efl/svg/carto.net/scrollbar-expected.png: Added. |
| * platform/efl/svg/carto.net/selectionlist-expected.png: Added. |
| * platform/efl/svg/carto.net/textbox-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-in-clip-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-in-mask-objectBoundingBox-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-childs-clipped-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-clipped-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-clipped-nonzero-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-objectBoundingBox-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-on-clipped-use-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-on-g-and-child-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-on-g-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-on-svg-and-child-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-on-svg-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-recursive-call-by-child-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-recursive-call-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-text-and-stroke-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-text-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-transform-2-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-tspan-and-stroke-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-use-as-child-expected.png: Added. |
| * platform/efl/svg/clip-path/clip-path-userSpaceOnUse-expected.png: Added. |
| * platform/efl/svg/css/arrow-with-shadow-expected.png: Added. |
| * platform/efl/svg/css/background-image-svg-expected.png: Added. |
| * platform/efl/svg/css/circle-in-mask-with-shadow-expected.png: Added. |
| * platform/efl/svg/css/composite-shadow-text-expected.png: Added. |
| * platform/efl/svg/css/css-box-min-width-expected.png: Added. |
| * platform/efl/svg/css/path-with-shadow-expected.png: Added. |
| * platform/efl/svg/css/rect-gradient-stroke-shadow-expected.png: Added. |
| * platform/efl/svg/css/shadow-and-opacity-expected.png: Added. |
| * platform/efl/svg/css/shadow-with-large-radius-expected.png: Added. |
| * platform/efl/svg/css/shadow-with-negative-offset-expected.png: Added. |
| * platform/efl/svg/css/text-shadow-multiple-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-appendItem-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-basics-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-getItem-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-initialize-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-insertItemBefore-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-removeItem-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-replaceItem-expected.png: Added. |
| * platform/efl/svg/dom/SVGLengthList-xml-dom-modifications-expected.png: Added. |
| * platform/efl/svg/dom/SVGLocatable-getCTM-svg-root-expected.png: Added. |
| * platform/efl/svg/dom/SVGNumberList-basics-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-appendItem-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-clear-and-initialize-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-insertItemBefore-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-removeItem-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-replaceItem-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-segment-modification-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png: Added. |
| * platform/efl/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png: Added. |
| * platform/efl/svg/dom/SVGPointList-basics-expected.png: Added. |
| * platform/efl/svg/dom/SVGRectElement: Added. |
| * platform/efl/svg/dom/SVGRectElement/rect-modify-rx-expected.png: Added. |
| * platform/efl/svg/dom/SVGStringList-basics-expected.png: Added. |
| * platform/efl/svg/dom/SVGTransformList-basics-expected.png: Added. |
| * platform/efl/svg/filters/color-interpolation-filters-expected.png: Added. |
| * platform/efl/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.png: Added. |
| * platform/efl/svg/foreignObject/fO-display-none-expected.png: Added. |
| * platform/efl/svg/foreignObject/fO-display-none-with-relative-pos-content-expected.png: Added. |
| * platform/efl/svg/foreignObject/fO-parent-display-changes-expected.png: Added. |
| * platform/efl/svg/foreignObject/fO-parent-display-none-expected.png: Added. |
| * platform/efl/svg/foreignObject/fO-parent-display-none-with-relative-pos-content-expected.png: Added. |
| * platform/efl/svg/foreignObject/fO-parent-of-parent-display-none-expected.png: Added. |
| * platform/efl/svg/foreignObject/fO-parent-of-parent-display-none-with-relative-pos-content-expected.png: Added. |
| * platform/efl/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.png: Added. |
| * platform/efl/svg/foreignObject/svg-document-as-direct-child-expected.png: Added. |
| * platform/efl/svg/foreignObject/svg-document-in-html-document-expected.png: Added. |
| * platform/efl/svg/foreignObject/text-tref-02-b-expected.png: Added. |
| |
| 2012-10-10 Max Vujovic <mvujovic@adobe.com> |
| |
| SVG root element's inspector highlight has different dimensions than the element when zooming the page |
| https://bugs.webkit.org/show_bug.cgi?id=78031 |
| |
| Reviewed by Pavel Feldman. |
| |
| Add test that verifies the position and size of the highlight rectangles overlayed on an SVG |
| root element when the page is zoomed. |
| |
| * inspector/elements/highlight-svg-root-zoomed-expected.txt: Added. |
| * inspector/elements/highlight-svg-root-zoomed.html: Added. |
| |
| 2012-10-10 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Test drivers should handle repaint rects |
| https://bugs.webkit.org/show_bug.cgi?id=68870 |
| |
| Reviewed by Zoltan Herczeg. |
| |
| Rebasline results. Added new expectations where the results were good. |
| I evaulated the results based on the mac and chromium-mac ports. In some |
| cases I accepted our diverging result if it seemed to be ok by looking |
| into the test. Marked bad results as image failure. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0-wk2/compositing/iframes/fixed-position-iframe-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/iframes/scroll-fixed-transformed-element-expected.png: Copied from LayoutTests/platform/qt/fast/layers/add-layer-with-nested-stacking-expected.png. |
| * platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-scroll-expected.png: |
| * platform/qt-5.0-wk2/compositing/repaint/newly-composited-on-scroll-expected.png: |
| * platform/qt-5.0-wk2/compositing/repaint/shrink-layer-expected.png: Copied from LayoutTests/platform/qt/svg/custom/clip-path-href-changes-expected.png. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/clip-with-layout-delta-expected.png. |
| * platform/qt-5.0-wk2/compositing/scaling/tiled-layer-recursion-expected.png: |
| * platform/qt-5.0-wk2/compositing/transitions/singular-scale-transition-expected.png: Added. |
| * platform/qt-5.0-wk2/css3/filters/filter-change-repaint-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/backgrounds/solid-color-context-restore-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/canvas/canvas-incremental-repaint-2-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/subtree-root-clip-3-expected.png. |
| * platform/qt-5.0-wk2/fast/canvas/setWidthResetAfterForcedRender-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/forms/listbox-clip-expected.png: Copied from LayoutTests/platform/qt/svg/repaint/repainting-after-animation-element-removal-expected.png. |
| * platform/qt-5.0-wk2/fast/reflections/inline-crash-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/body-background-image-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/delete-into-nested-block-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-after-scroll-expected.png: Copied from LayoutTests/platform/qt/svg/custom/use-disappears-after-style-update-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-scale-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/iframe-scroll-repaint-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-scroll-simple-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/overflow-clip-subtree-layout-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-table-cell-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/button-spurious-layout-hint-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-table-overflow-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/subtree-root-clip-2-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/fixed-table-overflow-zindex-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/subtree-root-clip-2-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/iframe-scroll-repaint-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/clip-with-layout-delta-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/reflection-repaint-test-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/region-painting-invalidation-expected.png: Copied from LayoutTests/platform/qt/fast/layers/add-layer-with-nested-stacking-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/region-painting-via-layout-expected.png: Copied from LayoutTests/platform/qt/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/scale-page-shrink-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/selection-after-delete-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/selection-after-remove-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/repaint/selection-clear-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/table-hover-on-link-expected.png. |
| * platform/qt-5.0-wk2/fast/repaint/selection-gap-overflow-scroll-2-expected.png: Added. |
| * platform/qt-5.0-wk2/fast/table/border-collapsing/cached-69296-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/table-two-pass-layout-overpaint-expected.png. |
| * platform/qt-5.0-wk2/fast/text/font-initial-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/text/remove-text-node-from-tspan-expected.png: Added. |
| * platform/qt-5.0-wk2/svg/text/remove-tspan-from-text-expected.png: Added. |
| * platform/qt/fast/canvas/canvas-as-image-incremental-repaint-expected.png: |
| * platform/qt/fast/canvas/canvas-incremental-repaint-expected.png: Added. |
| * platform/qt/fast/dynamic/containing-block-change-expected.png: |
| * platform/qt/fast/frames/transparent-scrollbar-expected.png: Copied from LayoutTests/platform/qt/svg/custom/repaint-on-constant-size-change-expected.png. |
| * platform/qt/fast/layers/add-layer-with-nested-stacking-expected.png: |
| * platform/qt/fast/layers/inline-dirty-z-order-lists-expected.png: |
| * platform/qt/fast/layers/layer-content-visibility-change-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/layout-state-only-positioned-expected.png. |
| * platform/qt/fast/layers/remove-layer-with-nested-stacking-expected.png: |
| * platform/qt/fast/repaint/4774354-expected.png: |
| * platform/qt/fast/repaint/4776765-expected.png: |
| * platform/qt/fast/repaint/backgroundSizeRepaint-expected.png: |
| * platform/qt/fast/repaint/block-layout-inline-children-float-positioned-expected.png: |
| * platform/qt/fast/repaint/block-layout-inline-children-replaced-expected.png: |
| * platform/qt/fast/repaint/block-no-inflow-children-expected.png: |
| * platform/qt/fast/repaint/border-fit-lines-expected.png: |
| * platform/qt/fast/repaint/border-radius-repaint-expected.png: |
| * platform/qt/fast/repaint/border-repaint-glitch-expected.png: |
| * platform/qt/fast/repaint/box-shadow-dynamic-expected.png: |
| * platform/qt/fast/repaint/bugzilla-3509-expected.png: |
| * platform/qt/fast/repaint/bugzilla-5699-expected.png: |
| * platform/qt/fast/repaint/bugzilla-6278-expected.png: |
| * platform/qt/fast/repaint/bugzilla-6388-expected.png: |
| * platform/qt/fast/repaint/bugzilla-6473-expected.png: |
| * platform/qt/fast/repaint/bugzilla-7235-expected.png: |
| * platform/qt/fast/repaint/button-spurious-layout-hint-expected.png: |
| * platform/qt/fast/repaint/caret-outside-block-expected.png: |
| * platform/qt/fast/repaint/change-transform-expected.png: |
| * platform/qt/fast/repaint/clip-with-layout-delta-expected.png: |
| * platform/qt/fast/repaint/clipped-relative-expected.png: |
| * platform/qt/fast/repaint/containing-block-position-change-expected.png: |
| * platform/qt/fast/repaint/content-into-overflow-expected.png: |
| * platform/qt/fast/repaint/continuation-after-outline-expected.png: |
| * platform/qt/fast/repaint/control-clip-expected.png: |
| * platform/qt/fast/repaint/create-layer-repaint-expected.png: |
| * platform/qt/fast/repaint/delete-into-nested-block-expected.png: |
| * platform/qt/fast/repaint/dynamic-table-vertical-alignment-change-expected.png: |
| * platform/qt/fast/repaint/fixed-child-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-tranformed-expected.png: |
| * platform/qt/fast/repaint/float-move-during-layout-expected.png: |
| * platform/qt/fast/repaint/float-overflow-expected.png: |
| * platform/qt/fast/repaint/float-overflow-right-expected.png: |
| * platform/qt/fast/repaint/gradients-em-stops-repaint-expected.png: |
| * platform/qt/fast/repaint/iframe-scroll-repaint-expected.png: |
| * platform/qt/fast/repaint/inline-color-change-expected.png: |
| * platform/qt/fast/repaint/inline-outline-repaint-expected.png: |
| * platform/qt/fast/repaint/invisible-objects-expected.png: |
| * platform/qt/fast/repaint/layer-visibility-expected.png: Copied from LayoutTests/platform/qt/fast/layers/add-layer-with-nested-stacking-expected.png. |
| * platform/qt/fast/repaint/layout-state-only-positioned-expected.png: |
| * platform/qt/fast/repaint/layout-state-relative-expected.png: |
| * platform/qt/fast/repaint/layout-state-scrolloffset-expected.png: |
| * platform/qt/fast/repaint/layout-state-scrolloffset2-expected.png: |
| * platform/qt/fast/repaint/layout-state-scrolloffset3-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-1-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-10-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-2-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-3-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-4-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-5-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-6-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-7-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-8-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-9-expected.png: |
| * platform/qt/fast/repaint/line-in-scrolled-clipped-block-expected.png: |
| * platform/qt/fast/repaint/line-overflow-expected.png: |
| * platform/qt/fast/repaint/lines-with-layout-delta-expected.png: |
| * platform/qt/fast/repaint/list-marker-2-expected.png: |
| * platform/qt/fast/repaint/make-children-non-inline-expected.png: |
| * platform/qt/fast/repaint/multicol-repaint-expected.png: |
| * platform/qt/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.png: |
| * platform/qt/fast/repaint/opacity-change-on-overflow-float-expected.png: |
| * platform/qt/fast/repaint/outline-child-repaint-expected.png: |
| * platform/qt/fast/repaint/outline-inset-expected.png: |
| * platform/qt/fast/repaint/outline-repaint-glitch-expected.png: |
| * platform/qt/fast/repaint/outline-shrinking-expected.png: |
| * platform/qt/fast/repaint/overflow-clip-subtree-layout-expected.png: |
| * platform/qt/fast/repaint/overflow-delete-line-expected.png: |
| * platform/qt/fast/repaint/overflow-flipped-writing-mode-block-in-regions-expected.png: |
| * platform/qt/fast/repaint/overflow-into-content-expected.png: |
| * platform/qt/fast/repaint/overflow-scroll-delete-expected.png: |
| * platform/qt/fast/repaint/reflection-redraw-expected.png: |
| * platform/qt/fast/repaint/reflection-repaint-test-expected.png: |
| * platform/qt/fast/repaint/region-painting-invalidation-expected.png: |
| * platform/qt/fast/repaint/region-painting-via-layout-expected.png: |
| * platform/qt/fast/repaint/rel-positioned-inline-with-overflow-expected.png: |
| * platform/qt/fast/repaint/repaint-during-scroll-expected.png: |
| * platform/qt/fast/repaint/repaint-resized-overflow-expected.png: |
| * platform/qt/fast/repaint/search-field-cancel-expected.png: |
| * platform/qt/fast/repaint/select-option-background-color-expected.png: |
| * platform/qt/fast/repaint/selected-replaced-expected.png: |
| * platform/qt/fast/repaint/selection-after-delete-expected.png: |
| * platform/qt/fast/repaint/selection-after-remove-expected.png: |
| * platform/qt/fast/repaint/selection-clear-expected.png: |
| * platform/qt/fast/repaint/selection-gap-overflow-scroll-2-expected.png: |
| * platform/qt/fast/repaint/selection-rl-expected.png: |
| * platform/qt/fast/repaint/stacked-diacritics-expected.png: |
| * platform/qt/fast/repaint/subtree-layoutstate-transform-expected.png: |
| * platform/qt/fast/repaint/subtree-root-clip-2-expected.png: |
| * platform/qt/fast/repaint/subtree-root-clip-3-expected.png: |
| * platform/qt/fast/repaint/subtree-root-clip-expected.png: |
| * platform/qt/fast/repaint/subtree-root-skipped-expected.png: |
| * platform/qt/fast/repaint/table-cell-collapsed-border-expected.png: |
| * platform/qt/fast/repaint/table-cell-move-expected.png: |
| * platform/qt/fast/repaint/table-collapsed-border-expected.png: |
| * platform/qt/fast/repaint/table-extra-bottom-grow-expected.png: |
| * platform/qt/fast/repaint/table-hover-on-link-expected.png: |
| * platform/qt/fast/repaint/table-section-repaint-expected.png: |
| * platform/qt/fast/repaint/table-two-pass-layout-overpaint-expected.png: |
| * platform/qt/fast/repaint/text-append-dirty-lines-expected.png: |
| * platform/qt/fast/repaint/transform-absolute-child-expected.png: |
| * platform/qt/fast/repaint/transform-absolute-in-positioned-container-expected.png: |
| * platform/qt/fast/repaint/transform-disable-layoutstate-expected.png: |
| * platform/qt/fast/repaint/transform-layout-repaint-expected.png: |
| * platform/qt/fast/repaint/transform-relative-position-expected.png: |
| * platform/qt/fast/repaint/transform-repaint-descendants-expected.png: |
| * platform/qt/fast/repaint/transform-replaced-shadows-expected.png: |
| * platform/qt/fast/repaint/transform-rotate-and-remove-expected.png: |
| * platform/qt/fast/repaint/transform-translate-expected.png: |
| * platform/qt/fast/table/border-collapsing/cached-69296-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/layout-state-only-positioned-expected.png. |
| * platform/qt/fast/table/border-collapsing/cached-change-cell-sl-border-color-expected.png: Copied from LayoutTests/platform/qt/svg/zoom/page/relative-sized-document-scrollbars-expected.png. |
| * platform/qt/fast/table/border-collapsing/cached-change-row-border-width-expected.png: Copied from LayoutTests/platform/qt/svg/repaint/repainting-after-animation-element-removal-expected.png. |
| * platform/qt/fast/table/border-collapsing/cached-change-tbody-border-width-expected.png: Copied from LayoutTests/platform/qt/fast/repaint/table-two-pass-layout-overpaint-expected.png. |
| * platform/qt/http/tests/misc/slow-loading-image-in-pattern-expected.png: |
| * platform/qt/svg/as-background-image/svg-background-partial-redraw-expected.png: |
| * platform/qt/svg/as-image/animated-svg-as-image-expected.png: |
| * platform/qt/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png: |
| * platform/qt/svg/as-image/animated-svg-as-image-same-image-expected.png: |
| * platform/qt/svg/as-image/svg-image-change-content-size-expected.png: |
| * platform/qt/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: |
| * platform/qt/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: |
| * platform/qt/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.png: |
| * platform/qt/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: |
| * platform/qt/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: |
| * platform/qt/svg/carto.net/window-expected.png: |
| * platform/qt/svg/custom/absolute-sized-content-with-resources-expected.png: |
| * platform/qt/svg/custom/animate-path-discrete-expected.png: |
| * platform/qt/svg/custom/animate-path-morphing-expected.png: |
| * platform/qt/svg/custom/animate-target-id-changed-expected.png: |
| * platform/qt/svg/custom/animate-target-removed-from-document-expected.png: |
| * platform/qt/svg/custom/circle-move-invalidation-expected.png: |
| * platform/qt/svg/custom/clip-path-child-changes-expected.png: |
| * platform/qt/svg/custom/clip-path-href-changes-expected.png: |
| * platform/qt/svg/custom/clip-path-units-changes-expected.png: |
| * platform/qt/svg/custom/deep-dynamic-updates-expected.png: |
| * platform/qt/svg/custom/fill-opacity-update-expected.png: |
| * platform/qt/svg/custom/foreignObject-crash-on-hover-expected.png: |
| * platform/qt/svg/custom/gradient-add-stops-expected.png: |
| * platform/qt/svg/custom/gradient-stop-style-change-expected.png: |
| * platform/qt/svg/custom/hit-test-unclosed-subpaths-expected.png: |
| * platform/qt/svg/custom/js-late-clipPath-and-object-creation-expected.png: |
| * platform/qt/svg/custom/js-late-clipPath-creation-expected.png: |
| * platform/qt/svg/custom/js-late-gradient-and-object-creation-expected.png: |
| * platform/qt/svg/custom/js-late-gradient-creation-expected.png: |
| * platform/qt/svg/custom/js-late-marker-and-object-creation-expected.png: |
| * platform/qt/svg/custom/js-late-marker-creation-expected.png: |
| * platform/qt/svg/custom/js-late-mask-and-object-creation-expected.png: |
| * platform/qt/svg/custom/js-late-mask-creation-expected.png: |
| * platform/qt/svg/custom/js-update-bounce-expected.png: |
| * platform/qt/svg/custom/js-update-container-expected.png: |
| * platform/qt/svg/custom/js-update-container2-expected.png: |
| * platform/qt/svg/custom/js-update-gradient-expected.png: |
| * platform/qt/svg/custom/js-update-image-expected.png: |
| * platform/qt/svg/custom/js-update-path-changes-expected.png: |
| * platform/qt/svg/custom/js-update-path-removal-expected.png: |
| * platform/qt/svg/custom/js-update-pattern-child-expected.png: |
| * platform/qt/svg/custom/js-update-pattern-expected.png: |
| * platform/qt/svg/custom/js-update-polygon-changes-expected.png: |
| * platform/qt/svg/custom/js-update-polygon-removal-expected.png: |
| * platform/qt/svg/custom/js-update-stop-expected.png: |
| * platform/qt/svg/custom/js-update-stop-linked-gradient-expected.png: |
| * platform/qt/svg/custom/js-update-style-expected.png: |
| * platform/qt/svg/custom/js-update-transform-addition-expected.png: |
| * platform/qt/svg/custom/js-update-transform-changes-expected.png: |
| * platform/qt/svg/custom/marker-child-changes-css-expected.png: |
| * platform/qt/svg/custom/marker-child-changes-expected.png: |
| * platform/qt/svg/custom/marker-viewBox-changes-expected.png: |
| * platform/qt/svg/custom/mask-child-changes-expected.png: |
| * platform/qt/svg/custom/mask-invalidation-expected.png: |
| * platform/qt/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: |
| * platform/qt/svg/custom/prevent-default-expected.png: |
| * platform/qt/svg/custom/relative-sized-content-expected.png: |
| * platform/qt/svg/custom/relative-sized-deep-shadow-tree-content-expected.png: |
| * platform/qt/svg/custom/relative-sized-image-expected.png: |
| * platform/qt/svg/custom/relative-sized-inner-svg-expected.png: |
| * platform/qt/svg/custom/relative-sized-shadow-tree-content-expected.png: |
| * platform/qt/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png: |
| * platform/qt/svg/custom/relative-sized-use-on-symbol-expected.png: |
| * platform/qt/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png: |
| * platform/qt/svg/custom/repaint-moving-svg-and-div-expected.png: |
| * platform/qt/svg/custom/repaint-on-constant-size-change-expected.png: |
| * platform/qt/svg/custom/repaint-on-image-bounds-change-expected.png: |
| * platform/qt/svg/custom/repaint-stroke-width-changes-expected.png: |
| * platform/qt/svg/custom/resource-client-removal-expected.png: |
| * platform/qt/svg/custom/resource-invalidate-on-target-update-expected.png: |
| * platform/qt/svg/custom/scroll-hit-test-expected.png: |
| * platform/qt/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: |
| * platform/qt/svg/custom/stroke-opacity-update-expected.png: |
| * platform/qt/svg/custom/svg-absolute-children-expected.png: |
| * platform/qt/svg/custom/text-dom-removal-expected.png: |
| * platform/qt/svg/custom/text-repaint-including-stroke-expected.png: |
| * platform/qt/svg/custom/text-xy-updates-SVGList-expected.png: |
| * platform/qt/svg/custom/use-clipped-hit-expected.png: |
| * platform/qt/svg/custom/use-detach-expected.png: |
| * platform/qt/svg/custom/use-disappears-after-style-update-expected.png: |
| * platform/qt/svg/custom/use-elementInstance-event-target-expected.png: |
| * platform/qt/svg/custom/use-elementInstance-methods-expected.png: |
| * platform/qt/svg/custom/use-event-handler-on-referenced-element-expected.png: |
| * platform/qt/svg/custom/use-event-handler-on-use-element-expected.png: |
| * platform/qt/svg/custom/use-setAttribute-crash-expected.png: |
| * platform/qt/svg/dom/SVGPathSegList-segment-modification-expected.png: |
| * platform/qt/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png: |
| * platform/qt/svg/dom/SVGRectElement/rect-modify-rx-expected.png: |
| * platform/qt/svg/filters/feImage-change-target-id-expected.png: |
| * platform/qt/svg/filters/feImage-multiple-targets-id-change-expected.png: |
| * platform/qt/svg/filters/feImage-reference-invalidation-expected.png: Copied from LayoutTests/platform/qt/svg/custom/animate-target-removed-from-document-expected.png. |
| * platform/qt/svg/filters/feImage-remove-target-expected.png: |
| * platform/qt/svg/filters/feImage-target-add-to-document-expected.png: |
| * platform/qt/svg/filters/feImage-target-attribute-change-expected.png: |
| * platform/qt/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.png: |
| * platform/qt/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.png: |
| * platform/qt/svg/filters/feImage-target-changes-id-expected.png: |
| * platform/qt/svg/filters/feImage-target-id-change-expected.png: |
| * platform/qt/svg/filters/feImage-target-inline-style-change-expected.png: |
| * platform/qt/svg/filters/feImage-target-property-change-expected.png: |
| * platform/qt/svg/filters/feImage-target-reappend-to-document-expected.png: |
| * platform/qt/svg/filters/feImage-target-remove-from-document-expected.png: |
| * platform/qt/svg/filters/feImage-target-style-change-expected.png: |
| * platform/qt/svg/filters/filter-refresh-expected.png: |
| * platform/qt/svg/filters/filter-width-update-expected.png: |
| * platform/qt/svg/filters/invalidate-on-child-layout-expected.png: |
| * platform/qt/svg/hixie/perf/001-expected.png: |
| * platform/qt/svg/hixie/perf/002-expected.png: |
| * platform/qt/svg/hixie/perf/003-expected.png: |
| * platform/qt/svg/hixie/perf/004-expected.png: |
| * platform/qt/svg/hixie/perf/005-expected.png: |
| * platform/qt/svg/hixie/perf/007-expected.png: |
| * platform/qt/svg/repaint/filter-child-repaint-expected.png: |
| * platform/qt/svg/repaint/inner-svg-change-viewBox-contract-expected.png: |
| * platform/qt/svg/repaint/inner-svg-change-viewBox-expected.png: |
| * platform/qt/svg/repaint/inner-svg-change-viewPort-relative-expected.png: |
| * platform/qt/svg/repaint/mask-clip-target-transform-expected.png: |
| * platform/qt/svg/repaint/repainting-after-animation-element-removal-expected.png: |
| * platform/qt/svg/repaint/text-mask-update-expected.png: |
| * platform/qt/svg/text/append-text-node-to-tspan-expected.png: |
| * platform/qt/svg/text/ems-display-none-expected.png: |
| * platform/qt/svg/text/exs-display-none-expected.png: |
| * platform/qt/svg/text/modify-text-node-in-tspan-expected.png: |
| * platform/qt/svg/text/text-text-05-t-expected.png: |
| * platform/qt/svg/text/text-viewbox-rescale-expected.png: |
| * platform/qt/svg/text/tspan-dynamic-positioning-expected.png: |
| * platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.png: |
| * platform/qt/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.png: |
| * platform/qt/svg/zoom/page/relative-sized-document-scrollbars-expected.png: |
| * platform/qt/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.png: |
| * platform/qt/svg/zoom/text/absolute-sized-document-scrollbars-expected.png: |
| * platform/qt/svg/zoom/text/relative-sized-document-scrollbars-expected.png: |
| * platform/qt/svg/zoom/text/zoom-foreignObject-expected.png: |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Skip fast/css/color-correction-on-text.html. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Gardening for the some SVG pixel expectations. |
| |
| * platform/efl/svg/W3C-SVG-1.1/painting-marker-03-f-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/text-text-01-b-expected.png: |
| * platform/efl/svg/filters/animate-fill-expected.png: Added. |
| * platform/efl/svg/filters/feImage-reference-invalidation-expected.png: Added. |
| * platform/efl/svg/hixie/data-types/001-expected.png: Added. |
| * platform/efl/svg/hixie/dynamic/002-expected.png: Added. |
| * platform/efl/svg/hixie/dynamic/003-expected.png: Added. |
| * platform/efl/svg/hixie/dynamic/004-expected.png: Added. |
| * platform/efl/svg/hixie/dynamic/005-expected.png: Added. |
| * platform/efl/svg/hixie/dynamic/006-expected.png: Added. |
| * platform/efl/svg/hixie/error/002-expected.png: Added. |
| * platform/efl/svg/hixie/error/006-expected.png: Added. |
| * platform/efl/svg/hixie/error/007-expected.png: Added. |
| * platform/efl/svg/hixie/error/008-expected.png: Added. |
| * platform/efl/svg/hixie/error/009-expected.png: Added. |
| * platform/efl/svg/hixie/error/010-expected.png: Added. |
| * platform/efl/svg/hixie/error/011-expected.png: Added. |
| * platform/efl/svg/hixie/error/014-test-expected.png: Added. |
| * platform/efl/svg/hixie/error/015-expected.png: Added. |
| * platform/efl/svg/hixie/error/016-expected.png: Added. |
| * platform/efl/svg/hixie/intrinsic/001-expected.png: Added. |
| * platform/efl/svg/hixie/intrinsic/002-expected.png: Added. |
| * platform/efl/svg/hixie/intrinsic/003-expected.png: Added. |
| * platform/efl/svg/hixie/links/001-expected.png: Added. |
| * platform/efl/svg/hixie/links/002-expected.png: Added. |
| * platform/efl/svg/hixie/painting/001-expected.png: Added. |
| * platform/efl/svg/hixie/processing-model/005-expected.png: Added. |
| * platform/efl/svg/hixie/rendering-model/003a-expected.png: Added. |
| * platform/efl/svg/hixie/text/001-expected.png: Added. |
| * platform/efl/svg/hixie/text/002-expected.png: Added. |
| * platform/efl/svg/hixie/text/003a-expected.png: Added. |
| * platform/efl/svg/hixie/text/003b-expected.png: Added. |
| * platform/efl/svg/hixie/use/002-test-expected.png: Added. |
| * platform/efl/svg/hixie/viewbox/001-expected.png: Added. |
| * platform/efl/svg/hixie/viewbox/002-expected.png: Added. |
| * platform/efl/svg/hixie/viewbox/003-expected.png: Added. |
| * platform/efl/svg/hixie/viewbox/004-expected.png: Added. |
| * platform/efl/svg/hixie/viewbox/preserveAspectRatio/001-expected.png: Added. |
| * platform/efl/svg/hixie/viewbox/preserveAspectRatio/002-expected.png: Added. |
| * platform/efl/svg/overflow/overflow-on-foreignObject-expected.png: Added. |
| * platform/efl/svg/overflow/overflow-on-inner-svg-element-defaults-expected.png: Added. |
| * platform/efl/svg/repaint/image-href-change-expected.png: Added. |
| * platform/efl/svg/repaint/image-with-clip-path-expected.png: Added. |
| * platform/efl/svg/repaint/inner-svg-change-viewBox-expected.png: Added. |
| * platform/efl/svg/repaint/mask-clip-target-transform-expected.png: Added. |
| * platform/efl/svg/repaint/repainting-after-animation-element-removal-expected.png: Added. |
| * platform/efl/svg/stroke/zero-length-arc-linecaps-rendering-expected.png: Added. |
| * platform/efl/svg/wicd/sizing-flakiness-expected.png: Added. |
| * platform/efl/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.png: Added. |
| * platform/efl/svg/zoom/page/absolute-sized-document-scrollbars-expected.png: Added. |
| * platform/efl/svg/zoom/page/relative-sized-document-scrollbars-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-background-images-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-as-background-with-relative-size-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-as-image-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-as-object-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-as-relative-image-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-float-border-padding-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: Added. |
| * platform/efl/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Added. |
| * platform/efl/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.png: Added. |
| * platform/efl/svg/zoom/text/absolute-sized-document-scrollbars-expected.png: Added. |
| * platform/efl/svg/zoom/text/relative-sized-document-scrollbars-expected.png: Added. |
| |
| 2012-10-10 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Unreviewed inspector test fix. |
| |
| * http/tests/inspector/search/resources-search-match-index.html: |
| |
| 2012-10-10 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Update some pixel expectations for the new Cairo, and add more baselines for other tests. |
| |
| * platform/efl/fast/block/positioning/vertical-rl/fixed-positioning-expected.png: |
| * platform/efl/fast/borders/border-radius-valid-border-clipping-expected.png: Added. |
| * platform/efl/fast/borders/border-shadow-large-radius-expected.png: Added. |
| * platform/efl/fast/borders/fieldsetBorderRadius-expected.png: |
| * platform/efl/fast/canvas/canvas-composite-fill-repaint-expected.png: Added. |
| * platform/efl/fast/canvas/canvas-imageSmoothingEnabled-patterns-expected.png: Added. |
| * platform/efl/fast/canvas/canvas-resize-after-paint-without-layout-expected.png: Added. |
| * platform/efl/fast/css/color-correction-on-text-expected.png: Removed. |
| * platform/efl/fast/css/color-correction-on-text-expected.txt: Removed. |
| * platform/efl/fast/css/square-button-appearance-expected.png: Added. |
| * platform/efl/fast/css/text-overflow-ellipsis-text-align-center-expected.png: Added. |
| * platform/efl/fast/css/text-overflow-ellipsis-text-align-justify-expected.png: Added. |
| * platform/efl/fast/css/text-overflow-ellipsis-text-align-left-expected.png: Added. |
| * platform/efl/fast/css/text-overflow-ellipsis-text-align-right-expected.png: Added. |
| * platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-center-expected.png: Added. |
| * platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-justify-expected.png: Added. |
| * platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-left-expected.png: Added. |
| * platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-right-expected.png: Added. |
| * platform/efl/fast/events/context-no-deselect-expected.png: Added. |
| * platform/efl/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Added. |
| * platform/efl/fast/forms/datalist/input-appearance-range-with-transform-expected.png: Added. |
| * platform/efl/fast/forms/input-placeholder-paint-order-expected.png: Added. |
| * platform/efl/fast/forms/textarea: Added. |
| * platform/efl/fast/forms/textarea/textarea-placeholder-paint-order-expected.png: Added. |
| * platform/efl/fast/gradients/border-image-gradient-sides-and-corners-expected.png: Added. |
| * platform/efl/fast/html/details-marker-style-expected.png: Added. |
| * platform/efl/fast/images/image-css3-content-data-expected.png: Added. |
| * platform/efl/fast/images/imagemap-focus-ring-zoom-expected.png: Added. |
| * platform/efl/fast/images/paint-subrect-expected.png: Added. |
| * platform/efl/fast/images/paint-subrect-grid-expected.png: Added. |
| * platform/efl/fast/images/repaint-subrect-grid-expected.png: Added. |
| * platform/efl/fast/images/rgb-jpeg-with-adobe-marker-only-expected.png: Added. |
| * platform/efl/fast/images/rgb-png-with-cmyk-color-profile-expected.png: Added. |
| * platform/efl/fast/images/ycbcr-with-cmyk-color-profile-expected.png: Added. |
| * platform/efl/fast/js: Added. |
| * platform/efl/fast/js/exception-linenums-in-html-3-expected.png: Added. |
| * platform/efl/fast/js/missing-style-end-tag-js-expected.png: Added. |
| * platform/efl/fast/js/missing-title-end-tag-js-expected.png: Added. |
| * platform/efl/fast/layers/scroll-with-transform-composited-layer-expected.png: Added. |
| * platform/efl/fast/layers/scroll-with-transform-layer-expected.png: Added. |
| * platform/efl/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Added. |
| * platform/efl/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Added. |
| * platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-vertical-rl-expected.png: Added. |
| * platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-vertical-rl-expected.txt: Added. |
| * platform/efl/fast/repaint/overflow-auto-in-overflow-auto-scrolled-expected.png: Added. |
| * platform/efl/fast/repaint/overflow-scroll-in-overflow-scroll-scrolled-expected.png: Added. |
| * platform/efl/fast/repaint/table-overflow-auto-in-overflow-auto-scrolled-expected.png: Added. |
| * platform/efl/fast/repaint/table-overflow-hidden-in-overflow-hidden-scrolled-expected.png: Added. |
| * platform/efl/fast/repaint/table-overflow-scroll-in-overflow-scroll-scrolled-expected.png: Added. |
| * platform/efl/fast/scrolling: Added. |
| * platform/efl/fast/scrolling/scrollbar-tickmarks-styled-expected.png: Added. |
| * platform/efl/fast/table/colspanMinWidth-vertical-expected.png: Added. |
| * platform/efl/fast/table/table-row-focus-ring-paint-expected.png: Added. |
| * platform/efl/fast/text/text-shadow-no-default-color-expected.png: Added. |
| |
| 2012-10-10 Christophe Dumez <christophe.dumez@intel.com> |
| |
| SQLResultSet.rowsAffected not cleared |
| https://bugs.webkit.org/show_bug.cgi?id=46070 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Add layout test to check that SQLResultSet.rowsAffected is |
| correct in executeSql() success callback. |
| |
| * storage/websql/execute-sql-rowsAffected-expected.txt: Added. |
| * storage/websql/execute-sql-rowsAffected.html: Added. |
| |
| 2012-10-10 KwangYong Choi <ky0.choi@samsung.com> |
| |
| [EFL] Rebaseline after r129972 which enabled plugin feature |
| https://bugs.webkit.org/show_bug.cgi?id=98750 |
| |
| Unreviewed. Plugin feature is enabled on EFL port after r129972. |
| |
| * platform/efl-wk1/TestExpectations: EFL WK1 does not support plugins yet. |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/efl/plugins/iframe-plugin-bgcolor-expected.txt: Added. |
| * platform/efl/plugins/mouse-click-plugin-clears-selection-expected.txt: Added. |
| * platform/efl/plugins/netscape-dom-access-expected.txt: Added. |
| * platform/efl/plugins/plugin-javascript-access-expected.txt: Added. |
| * platform/efl/plugins/resize-from-plugin-expected.txt: Added. |
| |
| 2012-10-09 Kent Tamura <tkent@chromium.org> |
| |
| Add behavior tests for input[type=date] with multiple fields |
| https://bugs.webkit.org/show_bug.cgi?id=98480 |
| |
| Reviewed by Kentaro Hara. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-ax-aria-attributes-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-ax-aria-attributes.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-blur-and-focus-events-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-blur-and-focus-events.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-keyboard-events-expected.txt: |
| * fast/forms/date-multiple-fields/date-multiple-fields-keyboard-events.html: |
| * fast/forms/date-multiple-fields/date-multiple-fields-mouse-events-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-mouse-events.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-preserve-value-after-history-back-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-preserve-value-after-history-back.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-reset-value-after-reloads-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-reset-value-after-reloads.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-spinbutton-change-and-input-events-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-spinbutton-change-and-input-events.html: Copied from LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-spinbutton-change-and-input-events.html. |
| * fast/forms/date-multiple-fields/date-multiple-fields-wheel-event-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-wheel-event.html: Copied from LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-spinbutton-change-and-input-events.html. |
| * fast/forms/date/date-reset-value-expected.html: Added. |
| * fast/forms/date/date-reset-value.html: Added. |
| |
| * fast/forms/resources/common-spinbutton-change-and-input-events.js: |
| (testSpinButtonChangeAndInputEvents): |
| Uses getElementByPseudoId() to obtain spin button position. The date |
| type and the time type have their spin button at different positions |
| because of a picker indicator triangle. |
| * fast/forms/number/number-spinbutton-change-and-input-events.html: |
| Need to import comon.js because common-spinbutton-change-and-input-events.js depends on it. |
| * fast/forms/time-multiple-fields/time-multiple-fields-spinbutton-change-and-input-events.html: |
| Ditto. |
| |
| * fast/forms/resources/common-wheel-event.js: |
| (testWheelEvent): Fix a wrong message. |
| * fast/forms/time-multiple-fields/time-multiple-fields-wheel-event-expected.txt: Ditto. |
| |
| * fast/forms/resources/multiple-fields-blur-and-focus-events.js: |
| Added. Move the code from time-multiple-fields-blur-and-focus-events.html. |
| * fast/forms/time-multiple-fields/time-multiple-fields-blur-and-focus-events.html: |
| Moved the code to multiple-fields-blur-and-focus-events.js. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-10 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: Semantically incorrect CSS rules result in broken source code data |
| https://bugs.webkit.org/show_bug.cgi?id=98520 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| * inspector/styles/parse-stylesheet-errors-expected.txt: |
| * inspector/styles/parse-stylesheet-errors.html: |
| |
| 2012-10-09 Jocelyn Turcotte <jocelyn.turcotte@digia.com> |
| |
| [Qt][WK2] REGRESSION(r130629): It made touchadjustment/focusout-on-touch.html fai1 |
| https://bugs.webkit.org/show_bug.cgi?id=98642 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| * platform/qt-5.0-wk2/TestExpectations: Unskip focusout-on-touch.html |
| |
| 2012-10-10 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] DumpRenderTree needs a beginDragWithFiles implementation |
| https://bugs.webkit.org/show_bug.cgi?id=50902 |
| |
| Reviewed by Simon Hausmann. |
| |
| Move some skipped tests that now passing in DRT to only being skipped in WTR. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-10 Zoltan Arvai <zarvai@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening. Skip failing test. |
| https://bugs.webkit.org/show_bug.cgi?id=98876 |
| |
| * platform/qt/TestExpectations: skip fast/text/word-space-with-kerning.html. |
| |
| 2012-10-09 Kent Tamura <tkent@chromium.org> |
| |
| Add a test to check a step attribute works for a calendar picker |
| https://bugs.webkit.org/show_bug.cgi?id=98866 |
| |
| Reviewed by Yuta Kitamura. |
| |
| * platform/chromium-android/TestExpectations: |
| * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.txt: Added. |
| * platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step.html: Added. |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, skip tests to paint the bot green. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-09 Noel Gordon <noel.gordon@gmail.com> |
| |
| Flush load-and-stall.php output after sleeping |
| https://bugs.webkit.org/show_bug.cgi?id=98862 |
| |
| Reviewed by Kent Tamura. |
| |
| Should not be a behavioral change: testing the bots with this change to see if |
| it helps with chromium linux/win test flakyness. |
| |
| * http/tests/resources/load-and-stall.php: |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| Note test failures after http://trac.webkit.org/changeset/130851. We |
| plan to follow up in the morning in |
| https://bugs.webkit.org/show_bug.cgi?id=98867. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Enrica Casucci <enrica@apple.com> |
| |
| Tests failure on Chromium Mac after r130821. |
| https://bugs.webkit.org/show_bug.cgi?id=98865 |
| |
| Unreviewed. |
| |
| Marking tests as failing. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Noel Gordon <noel.gordon@gmail.com> |
| |
| Initialize $written variable in load-and-stall.php script |
| https://bugs.webkit.org/show_bug.cgi?id=98854 |
| |
| Reviewed by Kent Tamura. |
| |
| * http/tests/resources/load-and-stall.php: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening. |
| |
| * platform/qt-5.0-wk1/fast/history/history-back-initial-vs-final-url-expected.txt: Renamed from LayoutTests/platform/qt/fast/history/history-back-initial-vs-final-url-expected.txt. |
| |
| 2012-10-09 Kent Tamura <tkent@chromium.org> |
| |
| Sub-fields in input[type=time] should not be focusable if the input is disabled or read-only |
| https://bugs.webkit.org/show_bug.cgi?id=98850 |
| |
| Reviewed by Kentaro Hara. |
| |
| * fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events-expected.txt: |
| * fast/forms/time-multiple-fields/time-multiple-fields-keyboard-events.html: |
| * fast/forms/time-multiple-fields/time-multiple-fields-mouse-events-expected.txt: |
| * fast/forms/time-multiple-fields/time-multiple-fields-mouse-events.html: |
| |
| 2012-10-09 Pablo Flouret <pablof@motorola.com> |
| |
| [Qt]REGRESSION(r120107): It made http/tests/xmlhttprequest/origin-exact-matching.html fails |
| https://bugs.webkit.org/show_bug.cgi?id=88913 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| Blind fix to try to fix the test. |
| |
| * http/tests/xmlhttprequest/access-control-allow-lists-starting-with-comma.html: |
| * http/tests/xmlhttprequest/resources/access-control-allow-lists.php: |
| |
| 2012-10-09 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Update EFL baselines after r130840 |
| https://bugs.webkit.org/show_bug.cgi?id=98846 |
| |
| Unreviewed EFL gardening. |
| |
| Update baselines after the cairo update in r130840. |
| |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt: |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt: |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt: |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-01-t-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt: |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-02-t-expected.png: |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt: |
| |
| 2012-10-09 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] new test http/tests/cookies/single-quoted-value.html is failing |
| https://bugs.webkit.org/show_bug.cgi?id=86066 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| Unskipping test. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [Cairo] Bump Cairo to fix more canvas/philip tests |
| https://bugs.webkit.org/show_bug.cgi?id=97658 |
| |
| Reviewed by Martin Robinson. |
| |
| Update platform-specific baselines after the cairo update. Also, |
| unksip canvas/philip tests which are passing now. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/fast/box-shadow/box-shadow-clipped-slices-expected.png: |
| * platform/efl/fast/canvas/canvas-incremental-repaint-expected.png: |
| * platform/efl/fast/dynamic/window-scrollbars-test-expected.png: |
| * platform/efl/fast/images/pixel-crack-image-background-webkit-transform-scale-expected.png: |
| * platform/efl/svg/as-image/img-preserveAspectRatio-support-1-expected.png: |
| * platform/efl/svg/batik/text/smallFonts-expected.png: |
| * platform/efl/svg/batik/text/smallFonts-expected.txt: |
| * platform/efl/svg/batik/text/textGlyphOrientationHorizontal-expected.png: |
| * platform/efl/svg/batik/text/textGlyphOrientationHorizontal-expected.txt: |
| * platform/efl/svg/batik/text/textOnPath-expected.png: |
| * platform/efl/svg/batik/text/textOnPath-expected.txt: |
| * platform/efl/svg/batik/text/textOnPath2-expected.png: |
| * platform/efl/svg/batik/text/textOnPath2-expected.txt: |
| * platform/efl/svg/batik/text/textOnPath3-expected.png: |
| * platform/efl/svg/batik/text/textOnPath3-expected.txt: |
| * platform/efl/svg/batik/text/textOnPathSpaces-expected.png: |
| * platform/efl/svg/batik/text/textOnPathSpaces-expected.txt: |
| * platform/efl/svg/batik/text/verticalTextOnPath-expected.png: |
| * platform/efl/svg/batik/text/verticalTextOnPath-expected.txt: |
| * platform/efl/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png: |
| * platform/efl/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png: |
| * platform/efl/transforms/2d/transform-fixed-container-expected.png: |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/canvas/canvas-incremental-repaint-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/paths-data-01-t-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/paths-data-02-t-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt: |
| * platform/gtk/svg/batik/text/smallFonts-expected.png: |
| * platform/gtk/svg/batik/text/smallFonts-expected.txt: |
| * platform/gtk/svg/batik/text/textGlyphOrientationHorizontal-expected.png: |
| * platform/gtk/svg/batik/text/textGlyphOrientationHorizontal-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPath-expected.png: |
| * platform/gtk/svg/batik/text/textOnPath-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPath2-expected.png: |
| * platform/gtk/svg/batik/text/textOnPath2-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPath3-expected.png: |
| * platform/gtk/svg/batik/text/textOnPath3-expected.txt: |
| * platform/gtk/svg/batik/text/textOnPathSpaces-expected.png: |
| * platform/gtk/svg/batik/text/textOnPathSpaces-expected.txt: |
| * platform/gtk/svg/batik/text/verticalTextOnPath-expected.png: |
| * platform/gtk/svg/batik/text/verticalTextOnPath-expected.txt: |
| * platform/gtk/svg/custom/js-update-path-changes-expected.png: |
| * platform/gtk/svg/custom/js-update-path-changes-expected.txt: |
| * platform/gtk/svg/custom/js-update-path-removal-expected.png: |
| * platform/gtk/svg/custom/js-update-path-removal-expected.txt: |
| * platform/gtk/svg/custom/path-textPath-simulation-expected.png: |
| * platform/gtk/svg/custom/path-textPath-simulation-expected.txt: |
| |
| 2012-10-09 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| fast/canvas/canvas-fillRect-gradient-shadow.html failing |
| https://bugs.webkit.org/show_bug.cgi?id=98760 |
| |
| Reviewed by Martin Robinson. |
| |
| Adjust the test case to verify the pixel in the middle of the shadow, |
| instead of the outer edge, to make sure that the test will not fail |
| in case if there is any effect around the borders. |
| |
| * fast/canvas/script-tests/canvas-fillRect-gradient-shadow.js: |
| |
| 2012-10-09 Kent Tamura <tkent@chromium.org> |
| |
| Should reject invalid dates constructed with multiple fields UI |
| https://bugs.webkit.org/show_bug.cgi?id=98727 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-keyboard-events-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-keyboard-events.html: Added. |
| * fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events-expected.txt: |
| * fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events.html: |
| Updated the test. 275760-12 is not a valid month value. |
| |
| 2012-10-08 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt]REGRESSION(r128699): It made 2 fast/js/dfg tests assert |
| https://bugs.webkit.org/show_bug.cgi?id=96907 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| Unskipping tests. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Jeffrey Pfau <jpfau@apple.com> |
| |
| [Mac] Unreviewed, skipping http/tests/security/svg-image-leak.html |
| |
| * platform/mac/TestExpectations: |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| filesystem-url-in-iframe test is flaky |
| https://bugs.webkit.org/show_bug.cgi?id=95246 |
| |
| Reviewed by Eric Seidel. |
| |
| This test was assuming that the navigation would complete before the |
| async JavaScript executed, which is true usually (but not always). |
| |
| * http/tests/security/mixedContent/filesystem-url-in-iframe.html: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Jian Li <jianli@chromium.org> |
| |
| Update the CSS property used to support draggable regions. |
| https://bugs.webkit.org/show_bug.cgi?id=97156 |
| |
| Reviewed by Adam Barth. |
| |
| Update the test and rename the files due to CSS property name and |
| syntax changes. |
| |
| * fast/css/draggable-region-parser-expected.txt: Added. |
| * fast/css/draggable-region-parser.html: Added. |
| * fast/css/widget-region-parser-expected.txt: Removed. |
| * fast/css/widget-region-parser.html: Removed. |
| * platform/efl/TestExpectations: Rename the skipped test. |
| * platform/gtk/TestExpectations: Rename the skipped test. |
| * platform/mac/TestExpectations: Skip the renamed test since WIDGET_REGION is off. |
| * platform/qt/TestExpectations: Rename the skipped test. |
| * platform/win/TestExpectations: Rename the skipped test. |
| * platform/wincairo/TestExpectations: Rename the skipped test. |
| |
| 2012-10-09 Kiran Muppala <cmuppala@apple.com> |
| |
| Fix coding style of layout test fast/dom/timer-throttling-hidden-page.html |
| https://bugs.webkit.org/show_bug.cgi?id=98828 |
| |
| Reviewed by Ojan Vafai. |
| |
| Replaced tab characters with spaces, fixed position of braces and renamed |
| variables to be more explanatory. |
| |
| * fast/dom/timer-throttling-hidden-page.html: |
| |
| 2012-10-09 Sadrul Habib Chowdhury <sadrul@chromium.org> |
| |
| [chromium] Add drop event for plugins. |
| https://bugs.webkit.org/show_bug.cgi?id=98827 |
| |
| Reviewed by Adam Barth. |
| |
| Updated the test to verify that a plugin can receive drop events. Note |
| that the plugin needs contentEditable set to true. |
| |
| * platform/chromium/plugins/drag-events-expected.txt: |
| * platform/chromium/plugins/drag-events.html: |
| |
| 2012-10-09 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r130811 and r130821. |
| http://trac.webkit.org/changeset/130811 |
| http://trac.webkit.org/changeset/130821 |
| https://bugs.webkit.org/show_bug.cgi?id=98831 |
| |
| Broke date-suggestion-picker-appearance-with-scroll-bar.html |
| (Requested by abarth|gardening on #webkit). |
| |
| * fast/sub-pixel/sub-pixel-iframe-copy-on-scroll.html: Removed. |
| * platform/chromium-linux/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-linux/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Removed. |
| * platform/chromium-linux/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Removed. |
| * platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-mac/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Removed. |
| * platform/chromium-mac/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Removed. |
| * platform/mac-lion/TestExpectations: |
| * platform/mac-snowleopard/TestExpectations: |
| * platform/mac-wk2/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-4.8/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win-wk2/TestExpectations: |
| * platform/win-xp/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-09 Dominic Mazzoni <dmazzoni@google.com> |
| |
| AX: 5 accessibility tests just need minor tweaks to pass on chromium |
| https://bugs.webkit.org/show_bug.cgi?id=98311 |
| |
| Reviewed by Chris Fleizach. |
| |
| Modifies tests so that they log data that tends to vary between |
| platforms using debug(), rather than asserting a platform-specific |
| value. Gets rid of "forks" of tests in the gtk directory. Adds |
| expectations and unskips 5 tests on Chromium. |
| |
| * accessibility/aria-list-and-listitem.html: |
| * accessibility/aria-option-role.html: |
| * accessibility/aria-tab-roles.html: |
| * platform/chromium/TestExpectations: |
| * platform/chromium/accessibility/aria-fallback-roles-expected.txt: Renamed from LayoutTests/platform/chromium-win/accessibility/aria-fallback-roles-expected.txt. |
| * platform/chromium/accessibility/aria-list-and-listitem-expected.txt: Copied from LayoutTests/platform/mac/accessibility/aria-list-and-listitem-expected.txt. |
| * platform/chromium/accessibility/aria-option-role-expected.txt: Copied from LayoutTests/platform/mac/accessibility/aria-option-role-expected.txt. |
| * platform/chromium/accessibility/aria-tab-roles-expected.txt: Copied from LayoutTests/platform/mac/accessibility/aria-tab-roles-expected.txt. |
| * platform/gtk/accessibility/aria-list-and-listitem-expected.txt: |
| * platform/gtk/accessibility/aria-list-and-listitem.html: Removed. |
| * platform/gtk/accessibility/aria-option-role-expected.txt: |
| * platform/gtk/accessibility/aria-option-role.html: Removed. |
| * platform/mac/accessibility/aria-list-and-listitem-expected.txt: |
| * platform/mac/accessibility/aria-option-role-expected.txt: |
| * platform/mac/accessibility/aria-tab-roles-expected.txt: |
| |
| 2012-10-09 Levi Weintraub <leviw@chromium.org> |
| |
| Rolling back unintended change to iframe-copy-on-scroll.html from previous commit. |
| |
| * compositing/iframes/iframe-copy-on-scroll.html: |
| |
| 2012-10-09 Levi Weintraub <leviw@chromium.org> |
| |
| Unreviewed gardening. Updating test expectations after r130811. |
| |
| * compositing/iframes/iframe-copy-on-scroll.html: |
| * platform/chromium-mac-snowleopard/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| * platform/chromium-mac/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Added. |
| * platform/chromium-mac/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Alexander Shalamov <alexander.shalamov@intel.com> |
| |
| CSS Style is not recalculated when media attribute of style element is changed |
| https://bugs.webkit.org/show_bug.cgi?id=96752 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Added test to verify that when "media" attribute for style element is updated, |
| style is recalculated. |
| |
| * fast/media/mq-js-update-media.html: Added. |
| |
| 2012-10-09 Levi Weintraub <leviw@chromium.org> |
| |
| [Sub pixel layout] Fast-path iframe scrolling can picks up an extra pixel |
| https://bugs.webkit.org/show_bug.cgi?id=98571 |
| |
| Reviewed by Emil A Eklund. |
| |
| Tests scrolling of sub-pixel layers on sub-pixel platforms (Chromium). |
| |
| * fast/sub-pixel/sub-pixel-iframe-copy-on-scroll.html: Added. |
| * platform/chromium-linux/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Added. |
| * platform/chromium-linux/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Added. |
| * platform/chromium-linux/fast/repaint/repaint-across-writing-mode-boundary-expected.png: |
| The repaint rect shrinks safely by one pixel. |
| * platform/chromium/TestExpectations: |
| * platform/mac-lion/TestExpectations: |
| * platform/mac-snowleopard/TestExpectations: |
| * platform/mac-wk2/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-4.8/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win-wk2/TestExpectations: |
| * platform/win-xp/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| These tests also fail with ImageOnlyFailures. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| This test now appears to fail on the bots because |
| http://trac.webkit.org/changeset/130799 removed the ImageOnlyFailure |
| attribute. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Peter Beverloo <peter@chromium.org> |
| |
| [Chromium] More TestExpectation updates for Android |
| https://bugs.webkit.org/show_bug.cgi?id=98818 |
| |
| Unreviewed test expectation updates. |
| |
| List more failures (all with bugs assigned) in the TestExpectation file for |
| Android. Move an older block around, considering we may want to re-triage it. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| * platform/chromium/TestExpectations: |
| Removed this entry: there was no need for new baselines. |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| dfg-cross-global tests are flaky because they misuse js-test-pre.js |
| https://bugs.webkit.org/show_bug.cgi?id=98813 |
| |
| Reviewed by Daniel Bates. |
| |
| These tests have a race between js-test-pre's "done" message and the |
| timeout. This patch change then to use jsTestIsAsync and finishJSTest() |
| appropriately. |
| |
| * fast/js/script-tests/dfg-cross-global-object-inline-new-array-literal-with-variables.js: |
| * fast/js/script-tests/dfg-cross-global-object-inline-new-array-literal.js: |
| * fast/js/script-tests/dfg-cross-global-object-inline-new-array-with-elements.js: |
| * fast/js/script-tests/dfg-cross-global-object-inline-new-array-with-size.js: |
| * fast/js/script-tests/dfg-cross-global-object-inline-new-array.js: |
| |
| 2012-10-09 Joshua Bell <jsbell@chromium.org> |
| |
| IndexedDB: Overflowing key generator should throw ConstraintError |
| https://bugs.webkit.org/show_bug.cgi?id=98807 |
| |
| Reviewed by Tony Chang. |
| |
| Verify that overflowing key generator throws ConstraintError. |
| |
| * storage/indexeddb/key-generator-expected.txt: |
| * storage/indexeddb/resources/key-generator.js: |
| |
| 2012-10-09 Dirk Pranke <dpranke@chromium.org> |
| |
| [chromium] Don't run perf/mouse-event on debug builds |
| |
| Unreviewed, expectations change. |
| |
| We don't normally run any perf tests on a debug build, but this |
| one was getting run due to an improperly scoped expectation |
| overriding the wontfix rule. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 David Grogan <dgrogan@chromium.org> |
| |
| IndexedDB: open-in-upgradeneeded layout test |
| https://bugs.webkit.org/show_bug.cgi?id=95912 |
| |
| Reviewed by Tony Chang. |
| |
| * storage/indexeddb/intversion-open-in-upgradeneeded-expected.txt: Added. |
| * storage/indexeddb/intversion-open-in-upgradeneeded.html: Added. |
| * storage/indexeddb/resources/intversion-open-in-upgradeneeded.js: Added. |
| (test): |
| (deleteSuccess): |
| (upgradeNeeded1.transaction.oncomplete): |
| (upgradeNeeded1): |
| (openSuccess1): |
| (onVersionChange): |
| (onBlocked): |
| (upgradeNeeded2): |
| (openSuccess2): |
| |
| 2012-10-09 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| Need implement isWordTextBreak for QT, and WinCE for visual word movement functionality |
| https://bugs.webkit.org/show_bug.cgi?id=81136 |
| |
| Reviewed by Caio Marcelo de Oliveira Filho. |
| |
| Uskipping tests that are passing after the merge https://gitorious.org/qtwebkit/testfonts/merge_requests/1 |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| RTL: selection.modify("move", "forward", "line") when cursor is at start of a line does not move down a line |
| https://bugs.webkit.org/show_bug.cgi?id=51517 |
| |
| Reviewed by Caio Marcelo de Oliveira Filho. |
| |
| Unskipping a test that is passing, with testfonts change in https://gitorious.org/qtwebkit/testfonts/merge_requests/1 |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| Note that this test is flaky. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| Revert change to TestExpectations in http://trac.webkit.org/changeset/130779. |
| These tests still give the wrong results. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| * platform/chromium/TestExpectations: |
| Fix new-run-webkit-tests --lint-test-files after r130778. |
| |
| 2012-10-09 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] modify-up-on-rtl-wrapping-text.html fails on DRT |
| https://bugs.webkit.org/show_bug.cgi?id=50291 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| Unskipping editing/selection/modify-up-on-rtl-wrapping-text.html |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Enrica Casucci <enrica@apple.com> |
| |
| [chromium] fast/text/international/text-spliced-font.html and fast/writing-mode/Kusa-Makura-background-canvas.html |
| failing on the Mac after r130443 |
| https://bugs.webkit.org/show_bug.cgi?id=98545 |
| |
| Reviewed by Tony Chang. |
| |
| Updated TextExpectations for Chromium and Mac. |
| Moved existing expected results from mac to mac-lion and added new results for Mountain Lion. |
| |
| * platform/chromium/TestExpectations: |
| * platform/mac-lion/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt: Added. |
| * platform/mac/TestExpectations: |
| * platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt: |
| |
| 2012-10-09 Mike Reed <reed@google.com> |
| |
| Update expectations in preparation for enabling float-src-rect behavior in SkCanvas::drawBitmapRect |
| https://bugs.webkit.org/show_bug.cgi?id=98795 |
| |
| Reviewed by NOBODY. |
| |
| Expectations change only. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Philip Rogers <pdr@google.com> |
| |
| Prevent animation when CSS attributeType is invalid. |
| https://bugs.webkit.org/show_bug.cgi?id=94569 |
| |
| Reviewed by Dirk Schulze. |
| |
| Adding a test to prove this patch works (invalid-css-attribute-crash.svg) |
| and an additional test to show that switching between XML and CSS |
| attributeTypes works as expected (animate-css-xml-attributeType.html). |
| |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| * svg/animations/animate-css-xml-attributeType-expected.txt: Added. |
| * svg/animations/animate-css-xml-attributeType.html: Added. |
| * svg/animations/invalid-css-attribute-crash-expected.svg: Added. |
| * svg/animations/invalid-css-attribute-crash.svg: Added. |
| * svg/animations/script-tests/animate-css-xml-attributeType.js: Added. |
| (sample1): |
| (sample6): |
| (executeTest): |
| |
| 2012-10-08 Simon Fraser <simon.fraser@apple.com> |
| |
| Remove DRT/WTR implementations of layerTreeAsText |
| https://bugs.webkit.org/show_bug.cgi?id=98697 |
| |
| Reviewed by Tim Horton, James Robinson, Alexey Proskuryakov. |
| |
| Fix a couple of tests missed in the previous chnage. |
| |
| * compositing/geometry/preserve-3d-switching.html: |
| * compositing/visibility/visibility-image-layers-dynamic.html: |
| |
| 2012-10-09 Pravin D <pravind.2k4@gmail.com> |
| |
| max-width property is does not overriding the width properties for css tables(display:table) |
| https://bugs.webkit.org/show_bug.cgi?id=98455 |
| |
| Reviewed by Tony Chang. |
| |
| * fast/table/css-table-max-width-expected.txt: Added. |
| * fast/table/css-table-max-width.html: Added. |
| |
| 2012-10-09 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Expanding failure expectation for editing/pasteboard/drag-drop-list.html to |
| again include debug configurations as well. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-09 Peter Beverloo <peter@chromium.org> |
| |
| [Chromium] Test expectation updates for Android |
| https://bugs.webkit.org/show_bug.cgi?id=98786 |
| |
| Unreviewed test expectation update. |
| |
| Update the test expectations for Android. Nineteen bugs were filed, |
| which are all blocking bug 96398. |
| |
| * platform/chromium-android/TestExpectations: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unreviewed gardening. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-09 Harald Alvestrand <hta@google.com> |
| |
| Change PeerConnection getStats function to single value local / remote |
| elements in RTCStatsReport. |
| https://bugs.webkit.org/show_bug.cgi?id=98753 |
| |
| Reviewed by Adam Barth. |
| |
| * fast/mediastream/RTCPeerConnection-stats-expected.txt: |
| * fast/mediastream/RTCPeerConnection-stats.html: |
| |
| 2012-10-09 Adam Barth <abarth@webkit.org> |
| |
| Unreviewed. Add chromium-mac specific results for these tests. They |
| differ from the expected results only in text rendering. |
| |
| * platform/chromium-mac-snowleopard/fast/text/hyphenate-character-expected.png: |
| * platform/chromium-mac-snowleopard/fast/text/hyphens-expected.png: |
| * platform/chromium-mac/fast/text/hyphenate-character-expected.png: Added. |
| * platform/chromium-mac/fast/text/hyphenate-limit-before-after-expected.png: Added. |
| * platform/chromium-mac/fast/text/hyphens-expected.png: Added. |
| |
| 2012-10-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Mark svg/text/selection-tripleclick.svg as flaky on WK2. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-09 Sadrul Habib Chowdhury <sadrul@chromium.org> |
| |
| [chromium] Make sure events are transformed correctly for plugins. |
| https://bugs.webkit.org/show_bug.cgi?id=89250 |
| |
| Reviewed by Tony Chang. |
| |
| Added tests to make sure that events are transformed properly. Note that |
| for touch-events, each point in the three touch-point lists in the |
| touch-event is printed, so the same touch-point is printed out three |
| times. |
| |
| * platform/chromium/plugins/transformed-events-expected.txt: Added. |
| * platform/chromium/plugins/transformed-events.html: Added. |
| |
| 2012-10-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline some svg/text tests. |
| |
| Some pixel tests now have the red rectangle drawn around some |
| areas like other ports. |
| |
| While here, also add an expectation for selection-tripleclick.svg, |
| which seems to be passing now. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/svg/text/foreignObject-text-clipping-bug-expected.png: |
| * platform/efl/svg/text/selection-tripleclick-expected.png: Added. |
| * platform/efl/svg/text/selection-tripleclick-expected.txt: Added. |
| * platform/efl/svg/text/text-align-01-b-expected.png: |
| * platform/efl/svg/text/text-align-02-b-expected.png: |
| * platform/efl/svg/text/text-align-03-b-expected.png: |
| * platform/efl/svg/text/text-align-04-b-expected.png: |
| * platform/efl/svg/text/text-align-05-b-expected.png: |
| * platform/efl/svg/text/text-align-06-b-expected.png: |
| * platform/efl/svg/text/text-altglyph-01-b-expected.png: |
| * platform/efl/svg/text/text-deco-01-b-expected.png: |
| * platform/efl/svg/text/text-fonts-01-t-expected.png: |
| * platform/efl/svg/text/text-fonts-02-t-expected.png: |
| * platform/efl/svg/text/text-intro-05-t-expected.png: |
| * platform/efl/svg/text/text-path-01-b-expected.png: |
| * platform/efl/svg/text/text-spacing-01-b-expected.png: |
| * platform/efl/svg/text/text-text-01-b-expected.png: |
| * platform/efl/svg/text/text-text-03-b-expected.png: |
| * platform/efl/svg/text/text-text-04-t-expected.png: |
| * platform/efl/svg/text/text-text-05-t-expected.png: |
| * platform/efl/svg/text/text-text-06-t-expected.png: |
| * platform/efl/svg/text/text-text-07-t-expected.png: |
| * platform/efl/svg/text/text-text-08-b-expected.png: |
| * platform/efl/svg/text/text-tref-01-b-expected.png: |
| * platform/efl/svg/text/text-tselect-01-b-expected.png: |
| * platform/efl/svg/text/text-tselect-02-f-expected.png: |
| * platform/efl/svg/text/text-tspan-01-b-expected.png: |
| * platform/efl/svg/text/text-ws-01-t-expected.png: |
| * platform/efl/svg/text/text-ws-02-t-expected.png: |
| |
| 2012-10-09 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] Uploading images to Google+ using QtWebKit does not work. |
| https://bugs.webkit.org/show_bug.cgi?id=72329 |
| |
| Reviewed by Jocelyn Turcotte. |
| |
| Unskip the two BLOB tests that now passes. The rest of the BLOB tests unfortunately depend |
| on features we do not have. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip and rebase now passing tests. |
| |
| * platform/qt/TestExpectations: |
| * platform/qt/compositing/overflow/clip-descendents-expected.txt: Added. |
| * platform/qt/css1/formatting_model/floating_elements-expected.png: |
| * platform/qt/css1/formatting_model/floating_elements-expected.txt: |
| * platform/qt/editing/selection/caret-ltr-2-expected.png: |
| * platform/qt/editing/selection/caret-ltr-2-expected.txt: |
| * platform/qt/editing/selection/caret-ltr-2-left-expected.png: |
| * platform/qt/editing/selection/caret-ltr-2-left-expected.txt: |
| * platform/qt/editing/selection/caret-ltr-expected.png: |
| * platform/qt/editing/selection/caret-ltr-expected.txt: |
| * platform/qt/editing/selection/caret-ltr-right-expected.png: |
| * platform/qt/editing/selection/caret-ltr-right-expected.txt: |
| * platform/qt/editing/selection/caret-rtl-2-left-expected.png: |
| * platform/qt/editing/selection/caret-rtl-2-left-expected.txt: |
| * platform/qt/editing/selection/caret-rtl-right-expected.png: |
| * platform/qt/editing/selection/caret-rtl-right-expected.txt: |
| * platform/qt/fast/backgrounds/size/zero-expected.png: Added. |
| * platform/qt/fast/backgrounds/size/zero-expected.txt: |
| * platform/qt/fast/block/basic/fieldset-stretch-to-legend-expected.png: |
| * platform/qt/fast/block/basic/fieldset-stretch-to-legend-expected.txt: |
| * platform/qt/fast/forms/basic-buttons-expected.png: |
| * platform/qt/fast/forms/basic-buttons-expected.txt: |
| * platform/qt/fast/multicol/overflow-across-columns-expected.png: Added. |
| * platform/qt/fast/multicol/overflow-across-columns-expected.txt: Added. |
| * platform/qt/fast/multicol/overflow-unsplittable-expected.png: Added. |
| * platform/qt/fast/multicol/overflow-unsplittable-expected.txt: Added. |
| * platform/qt/fast/multicol/positive-leading-expected.png: Added. |
| * platform/qt/fast/multicol/positive-leading-expected.txt: Added. |
| * platform/qt/fast/multicol/shadow-breaking-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: |
| * platform/qt/fast/overflow/003-expected.png: |
| * platform/qt/fast/overflow/003-expected.txt: |
| * platform/qt/fast/regions/overflow-size-change-with-stacking-context-expected.txt: Added. |
| * platform/qt/fast/replaced/table-percent-height-expected.txt: |
| * platform/qt/fast/text/line-initial-and-final-swashes-expected.txt: Added. |
| * platform/qt/fonts/cursive-expected.png: Added. |
| * platform/qt/fonts/cursive-expected.txt: Added. |
| * platform/qt/fonts/default-expected.png: Added. |
| * platform/qt/fonts/default-expected.txt: Added. |
| * platform/qt/fonts/fantasy-expected.png: Added. |
| * platform/qt/fonts/fantasy-expected.txt: Added. |
| * platform/qt/fonts/monospace-expected.png: Added. |
| * platform/qt/fonts/monospace-expected.txt: Added. |
| * platform/qt/fonts/sans-serif-expected.png: Added. |
| * platform/qt/fonts/sans-serif-expected.txt: Added. |
| * platform/qt/fonts/serif-expected.png: Added. |
| * platform/qt/fonts/serif-expected.txt: Added. |
| * platform/qt/printing/page-count-relayout-shrink-expected.txt: Added. |
| * platform/qt/printing/return-from-printing-mode-expected.png: Added. |
| * platform/qt/printing/return-from-printing-mode-expected.txt: Added. |
| * platform/qt/printing/setPrinting-expected.png: Added. |
| * platform/qt/printing/setPrinting-expected.txt: Added. |
| * platform/qt/printing/single-line-must-not-be-split-into-two-pages-expected.txt: Added. |
| * platform/qt/svg/custom/clip-mask-negative-scale-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug10296-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug10296-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug12384-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug12384-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug99948-expected.png: Added. |
| * platform/qt/tables/mozilla/bugs/bug99948-expected.txt: |
| * platform/qt/tables/mozilla/marvin/colgroup_width_pct-expected.png: Added. |
| * platform/qt/tables/mozilla/marvin/colgroup_width_pct-expected.txt: |
| * platform/qt/tables/mozilla/marvin/table_overflow_hidden_td-expected.png: Added. |
| * platform/qt/tables/mozilla/marvin/table_overflow_hidden_td-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.png: Added. |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.txt: |
| |
| 2012-10-09 Jussi Kukkonen <jussi.kukkonen@intel.com> |
| |
| [EFL] remove duplicate failure expectations |
| https://bugs.webkit.org/show_bug.cgi?id=98736 |
| |
| Unreviewed gardening. |
| |
| Many tests are listed in both efl and wk2 expectations. Remove the efl expectations |
| in cases where the bug seems to be a wk2 issue. |
| |
| Most expectations are also added into the efl-wk1 expectations (which is where |
| they should have been all along). |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-09 Arpita Bahuguna <arpitabahuguna@gmail.com> |
| |
| Text decorations specified on the containing block are not properly applied when ::first-line is present. |
| https://bugs.webkit.org/show_bug.cgi?id=93829 |
| |
| Reviewed by Abhishek Arya. |
| |
| * fast/css/text-decorations-on-first-line-and-containing-block-expected.html: Added. |
| * fast/css/text-decorations-on-first-line-and-containing-block.html: Added. |
| Tests added for verifying the behavior of text-decorations when specified |
| both for the ::first-line as well as its containing block. |
| |
| 2012-10-09 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r130746. |
| http://trac.webkit.org/changeset/130746 |
| https://bugs.webkit.org/show_bug.cgi?id=98749 |
| |
| It made 45 tests crash on Qt (Requested by Ossy on #webkit). |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Mark a few tests skipped in r130745 as failures instead of timeouts. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-09 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] Uploading images to Google+ using QtWebKit does not work. |
| https://bugs.webkit.org/show_bug.cgi?id=72329 |
| |
| Reviewed by Jocelyn Turcotte. |
| |
| Unskip the two BLOB tests that now passes. The rest of the BLOB tests unfortunately depend |
| on features we do not have. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Skip a few tests after r130699. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Remove comment added in r130650 now that I've run the GTK+ tests. |
| |
| * platform/efl-wk1/TestExpectations: |
| |
| 2012-10-09 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding more failure expectations for regressions after r130699. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip now passing tests. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] /editing/selection/caret-bidi-first-and-last-letters.html fails |
| https://bugs.webkit.org/show_bug.cgi?id=51884 |
| |
| Reviewed by Ryosuke Niwa. |
| |
| This test pass with this change in testfonts https://gitorious.org/qtwebkit/testfonts/merge_requests/1 |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] editing/selection/caret-at-bidi-boundary.html fails |
| https://bugs.webkit.org/show_bug.cgi?id=66514 |
| |
| Reviewed by Yuta Kitamura. |
| |
| Unskipping test. The update in testfonts solved this bug. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip and rebase a now passing test. |
| |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/repaint/line-flow-with-floats-in-regions-expected.png: |
| * platform/qt/fast/repaint/line-flow-with-floats-in-regions-expected.txt: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip fast/transforms/scrollIntoView-transformed.html. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip and rebase now passing tests. |
| |
| * platform/qt-5.0/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: |
| |
| 2012-10-09 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding failure expectations for regressions after r130699 and |
| a failing multipart test introduced in r130651. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip and rebasing now passing tests. |
| |
| * platform/qt-5.0-wk1/TestExpectations: |
| * platform/qt/fast/css/word-space-extra-expected.png: |
| * platform/qt/fast/css/word-space-extra-expected.txt: |
| * platform/qt/fast/history/history-back-initial-vs-final-url-expected.txt: Added. |
| * platform/qt/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png: |
| * platform/qt/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt: |
| * platform/qt/fast/transforms/transformed-focused-text-input-expected.png: |
| * platform/qt/fast/transforms/transformed-focused-text-input-expected.txt: |
| * platform/qt/http/tests/navigation/postredirect-frames-expected.txt: |
| * platform/qt/http/tests/navigation/postredirect-goback2-expected.txt: |
| |
| 2012-10-09 Keishi Hattori <keishi@webkit.org> |
| |
| Page popup should be smarter about its layout |
| https://bugs.webkit.org/show_bug.cgi?id=98499 |
| |
| Reviewed by Kent Tamura. |
| |
| * platform/chromium/fast/forms/page-popup/page-popup-adjust-rect-expected.txt: Added. |
| * platform/chromium/fast/forms/page-popup/page-popup-adjust-rect.html: Added. |
| * platform/chromium-android/TestExpectations: Added platform/chromium/fast/forms/page-popup. |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip now passing tests. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip now passing tests. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unskip now passing tests. |
| |
| * platform/qt-5.0-wk1/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0/TestExpectations: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| Unreviewed gadening after r130709. |
| |
| * fast/harness/results-expected.txt: |
| |
| 2012-10-09 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt][WK2] Unskip now passing tests. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-08 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt]REGRESSION(r128699): It made 2 fast/js/dfg tests assert |
| https://bugs.webkit.org/show_bug.cgi?id=96907 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| Unskipping tests. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-08 Kiran Muppala <cmuppala@apple.com> |
| |
| Throttle DOM timers on hidden pages. |
| https://bugs.webkit.org/show_bug.cgi?id=98474 |
| |
| Reviewed by Maciej Stachowiak. |
| |
| Add a test for DOM timer throttling on hidden pages. |
| |
| * fast/dom/timer-throttling-hidden-page-expected.txt: Added. |
| * fast/dom/timer-throttling-hidden-page.html: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| Skip the test since HIDDEN_PAGE_DOM_TIMER_THROTTLING is not enabled by default. |
| |
| 2012-10-08 Yoshifumi Inoue <yosin@chromium.org> |
| |
| HTMLSelectElement::typeAheadFind depends on implementation dependent behavior |
| https://bugs.webkit.org/show_bug.cgi?id=98710 |
| |
| Reviewed by Kent Tamura. |
| |
| This patch adds a test for checking HTMLSelectElement::typeAheadFind |
| doesn't crash. |
| |
| * fast/forms/select/select-typeahead-crash-expected.txt: Added. |
| * fast/forms/select/select-typeahead-crash.html: Added. |
| |
| 2012-10-08 Kent Tamura <tkent@chromium.org> |
| |
| Take account of overflowing values for width calculation of a year sub-field |
| https://bugs.webkit.org/show_bug.cgi?id=98506 |
| |
| Reviewed by Eric Seidel. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-change-layout-by-value-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-change-layout-by-value.html: Added. |
| |
| 2012-10-08 Tony Chang <tony@chromium.org> |
| |
| image not displayed in flexbox |
| https://bugs.webkit.org/show_bug.cgi?id=98611 |
| |
| Reviewed by Ojan Vafai. |
| |
| Load an image after flexbox layout has happened. |
| |
| * css3/flexbox/relayout-image-load-expected.txt: Added. |
| * css3/flexbox/relayout-image-load.html: Added. |
| * platform/chromium/TestExpectations: Remove css3/flexbox/flexitem-stretch-image.html |
| since it should no longer be flaky. |
| |
| 2012-10-08 Dirk Pranke <dpranke@chromium.org> |
| |
| results.html and garden-o-matic are ignoring IMAGE failures when expected to FAIL |
| https://bugs.webkit.org/show_bug.cgi?id=98706 |
| |
| Reviewed by Ojan Vafai. |
| |
| FAIL is supposed to map onto Failure which is supposed to map |
| onto the old [ TEXT, IMAGE_PLUS_TEXT, AUDIO ] mapping. |
| results.html was including IMAGE in this and garden-o-matic was |
| including CRASH and TIMEOUT as well :(. |
| |
| * fast/harness/resources/results-test.js: |
| * fast/harness/results.html: |
| |
| 2012-10-08 Alpha Lam <hclam@chromium.org> |
| |
| Not reviewed. Rebaselines for Chromium. |
| |
| Rebaseline after r130412 which affected image scaling pixel tests. |
| |
| * platform/chromium-linux-x86/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: Added. |
| * platform/chromium-linux-x86/fast/backgrounds/size/backgroundSize15-expected.png: Added. |
| * platform/chromium-linux-x86/fast/backgrounds/size/contain-and-cover-expected.png: Added. |
| * platform/chromium-linux-x86/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: Added. |
| * platform/chromium-linux-x86/fast/borders/border-image-scale-transform-expected.png: Added. |
| * platform/chromium-linux-x86/fast/borders/border-image-scaled-expected.png: Added. |
| * platform/chromium-linux-x86/fast/borders/border-image-slice-constrained-expected.png: Added. |
| * platform/chromium-linux-x86/fast/borders/inline-mask-overlay-image-outset-expected.png: Added. |
| * platform/chromium-linux-x86/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png: Added. |
| * platform/chromium-linux-x86/fast/borders/scaled-border-image-expected.png: Added. |
| * platform/chromium-linux-x86/fast/repaint/background-misaligned-expected.png: |
| * platform/chromium-linux-x86/scrollbars/overflow-scrollbar-combinations-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-I18N/text-anchor-no-markup-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: Added. |
| * platform/chromium-linux-x86/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: Added. |
| * platform/chromium-linux-x86/svg/as-border-image/svg-as-border-image-expected.png: Added. |
| * platform/chromium-linux-x86/svg/custom/clip-mask-negative-scale-expected.png: Added. |
| * platform/chromium-linux-x86/svg/custom/image-small-width-height-expected.png: Added. |
| * platform/chromium-linux-x86/svg/custom/pointer-events-image-css-transform-expected.png: Added. |
| * platform/chromium-linux-x86/svg/custom/pointer-events-image-expected.png: Added. |
| * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Added. |
| * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Added. |
| * platform/chromium-linux-x86/svg/zoom/page/zoom-background-images-expected.png: Added. |
| * platform/chromium-linux/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: |
| * platform/chromium-linux/fast/backgrounds/size/backgroundSize15-expected.png: |
| * platform/chromium-linux/fast/backgrounds/size/contain-and-cover-expected.png: |
| * platform/chromium-linux/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: |
| * platform/chromium-linux/fast/borders/border-image-scale-transform-expected.png: |
| * platform/chromium-linux/fast/borders/border-image-scaled-expected.png: |
| * platform/chromium-linux/fast/borders/border-image-slice-constrained-expected.png: Added. |
| * platform/chromium-linux/fast/borders/inline-mask-overlay-image-outset-expected.png: |
| * platform/chromium-linux/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png: |
| * platform/chromium-linux/fast/borders/scaled-border-image-expected.png: |
| * platform/chromium-linux/fast/repaint/background-misaligned-expected.png: |
| * platform/chromium-linux/scrollbars/overflow-scrollbar-combinations-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: |
| * platform/chromium-linux/svg/W3C-I18N/text-anchor-no-markup-expected.png: |
| * platform/chromium-linux/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: |
| * platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: |
| * platform/chromium-linux/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-linux/svg/custom/clip-mask-negative-scale-expected.png: |
| * platform/chromium-linux/svg/custom/image-small-width-height-expected.png: |
| * platform/chromium-linux/svg/custom/pointer-events-image-css-transform-expected.png: |
| * platform/chromium-linux/svg/custom/pointer-events-image-expected.png: |
| * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: |
| * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-mac-snowleopard/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: |
| * platform/chromium-mac-snowleopard/fast/backgrounds/size/backgroundSize15-expected.png: |
| * platform/chromium-mac-snowleopard/fast/backgrounds/size/contain-and-cover-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/borders/border-image-scale-transform-expected.png: |
| * platform/chromium-mac-snowleopard/fast/borders/border-image-scaled-expected.png: |
| * platform/chromium-mac-snowleopard/fast/borders/border-image-slice-constrained-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/borders/inline-mask-overlay-image-outset-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/borders/scaled-border-image-expected.png: |
| * platform/chromium-mac-snowleopard/fast/repaint/background-misaligned-expected.png: |
| * platform/chromium-mac-snowleopard/scrollbars/overflow-scrollbar-combinations-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-I18N/text-anchor-no-markup-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: |
| * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: |
| * platform/chromium-mac-snowleopard/svg/as-border-image/svg-as-border-image-expected.png: Added. |
| * platform/chromium-mac-snowleopard/svg/custom/clip-mask-negative-scale-expected.png: |
| * platform/chromium-mac-snowleopard/svg/custom/image-small-width-height-expected.png: |
| * platform/chromium-mac-snowleopard/svg/custom/pointer-events-image-css-transform-expected.png: |
| * platform/chromium-mac-snowleopard/svg/custom/pointer-events-image-expected.png: |
| * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: |
| * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-background-images-expected.png: Added. |
| * platform/chromium-mac/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: |
| * platform/chromium-mac/fast/backgrounds/size/backgroundSize15-expected.png: |
| * platform/chromium-mac/fast/backgrounds/size/contain-and-cover-expected.png: |
| * platform/chromium-mac/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: |
| * platform/chromium-mac/fast/borders/border-image-scale-transform-expected.png: |
| * platform/chromium-mac/fast/borders/border-image-scaled-expected.png: |
| * platform/chromium-mac/fast/borders/border-image-slice-constrained-expected.png: |
| * platform/chromium-mac/fast/borders/inline-mask-overlay-image-outset-expected.png: |
| * platform/chromium-mac/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png: |
| * platform/chromium-mac/fast/borders/scaled-border-image-expected.png: |
| * platform/chromium-mac/fast/repaint/background-misaligned-expected.png: |
| * platform/chromium-mac/scrollbars/overflow-scrollbar-combinations-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: |
| * platform/chromium-mac/svg/W3C-I18N/text-anchor-no-markup-expected.png: |
| * platform/chromium-mac/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: |
| * platform/chromium-mac/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: |
| * platform/chromium-mac/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-mac/svg/custom/clip-mask-negative-scale-expected.png: |
| * platform/chromium-mac/svg/custom/image-small-width-height-expected.png: |
| * platform/chromium-mac/svg/custom/pointer-events-image-css-transform-expected.png: |
| * platform/chromium-mac/svg/custom/pointer-events-image-expected.png: |
| * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: |
| * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium-win-xp/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: Added. |
| * platform/chromium-win-xp/fast/backgrounds/size/backgroundSize15-expected.png: Added. |
| * platform/chromium-win-xp/fast/backgrounds/size/contain-and-cover-expected.png: Added. |
| * platform/chromium-win-xp/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: Added. |
| * platform/chromium-win-xp/fast/borders/border-image-scale-transform-expected.png: Added. |
| * platform/chromium-win-xp/fast/borders/border-image-scaled-expected.png: Added. |
| * platform/chromium-win-xp/fast/borders/border-image-slice-constrained-expected.png: Added. |
| * platform/chromium-win-xp/fast/borders/inline-mask-overlay-image-outset-expected.png: Added. |
| * platform/chromium-win-xp/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png: Added. |
| * platform/chromium-win-xp/fast/borders/scaled-border-image-expected.png: Added. |
| * platform/chromium-win-xp/fast/repaint/background-misaligned-expected.png: |
| * platform/chromium-win-xp/scrollbars/overflow-scrollbar-combinations-expected.png: Added. |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: |
| * platform/chromium-win-xp/svg/W3C-I18N/text-anchor-no-markup-expected.png: |
| * platform/chromium-win-xp/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: Added. |
| * platform/chromium-win-xp/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: Added. |
| * platform/chromium-win-xp/svg/as-border-image/svg-as-border-image-expected.png: Added. |
| * platform/chromium-win-xp/svg/custom/clip-mask-negative-scale-expected.png: Added. |
| * platform/chromium-win-xp/svg/custom/image-small-width-height-expected.png: Added. |
| * platform/chromium-win-xp/svg/custom/pointer-events-image-css-transform-expected.png: Added. |
| * platform/chromium-win-xp/svg/custom/pointer-events-image-expected.png: Added. |
| * platform/chromium-win-xp/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Added. |
| * platform/chromium-win-xp/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Added. |
| * platform/chromium-win-xp/svg/zoom/page/zoom-background-images-expected.png: Added. |
| * platform/chromium-win/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: |
| * platform/chromium-win/fast/backgrounds/size/backgroundSize15-expected.png: |
| * platform/chromium-win/fast/backgrounds/size/contain-and-cover-expected.png: |
| * platform/chromium-win/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: |
| * platform/chromium-win/fast/borders/border-image-scale-transform-expected.png: |
| * platform/chromium-win/fast/borders/border-image-scaled-expected.png: |
| * platform/chromium-win/fast/borders/border-image-slice-constrained-expected.png: |
| * platform/chromium-win/fast/borders/inline-mask-overlay-image-outset-expected.png: |
| * platform/chromium-win/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png: |
| * platform/chromium-win/fast/borders/scaled-border-image-expected.png: |
| * platform/chromium-win/fast/repaint/background-misaligned-expected.png: |
| * platform/chromium-win/scrollbars/overflow-scrollbar-combinations-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: |
| * platform/chromium-win/svg/W3C-I18N/text-anchor-no-markup-expected.png: |
| * platform/chromium-win/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: |
| * platform/chromium-win/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: |
| * platform/chromium-win/svg/as-border-image/svg-as-border-image-expected.png: |
| * platform/chromium-win/svg/custom/clip-mask-negative-scale-expected.png: |
| * platform/chromium-win/svg/custom/image-small-width-height-expected.png: |
| * platform/chromium-win/svg/custom/pointer-events-image-css-transform-expected.png: |
| * platform/chromium-win/svg/custom/pointer-events-image-expected.png: |
| * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: |
| * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-background-images-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-08 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| * platform/chromium/TestExpectations: |
| Marked a test as crashing on Lion. |
| |
| * platform/chromium-linux/transforms/3d/point-mapping/3d-point-mapping-expected.png: |
| * platform/chromium-mac-snowleopard/transforms/3d/point-mapping/3d-point-mapping-expected.png: |
| * platform/chromium-mac-snowleopard/transforms/3d/point-mapping/3d-point-mapping-origins-expected.png: |
| * platform/chromium-mac/transforms/3d/point-mapping/3d-point-mapping-expected.png: |
| * platform/chromium-mac/transforms/3d/point-mapping/3d-point-mapping-origins-expected.png: |
| * platform/chromium-win/transforms/3d/point-mapping/3d-point-mapping-origins-expected.png: |
| Rebaselined these tests after a change in Chromium compositor (Chromium r160671). |
| |
| 2012-10-08 Simon Fraser <simon.fraser@apple.com> |
| |
| Move layerTreeAsText to window.internals |
| https://bugs.webkit.org/show_bug.cgi?id=98690 |
| |
| Reviewed by James Robinson. |
| |
| Add window.internals.layerTreeAsText(document), and change the tests to use it. |
| I'll remove testRunner.layerTreeAsText() in a later patch. |
| |
| * compositing/animation/animation-compositing.html: |
| * compositing/backing/no-backing-for-clip-overlap.html: |
| * compositing/backing/no-backing-for-clip.html: |
| * compositing/backing/no-backing-for-perspective.html: |
| * compositing/bounds-in-flipped-writing-mode.html: |
| * compositing/clip-child-by-non-stacking-ancestor.html: |
| * compositing/columns/composited-in-paginated.html: |
| * compositing/geometry/ancestor-overflow-change.html: |
| * compositing/geometry/bounds-clipped-composited-child.html: |
| * compositing/geometry/bounds-ignores-hidden-composited-descendant.html: |
| * compositing/geometry/bounds-ignores-hidden-dynamic-negzindex.html: |
| * compositing/geometry/bounds-ignores-hidden-dynamic.html: |
| * compositing/geometry/bounds-ignores-hidden.html: |
| * compositing/geometry/clip.html: |
| * compositing/geometry/composited-in-columns.html: |
| * compositing/geometry/fixed-position-composited-switch.html: |
| * compositing/geometry/flipped-writing-mode.html: |
| * compositing/geometry/foreground-layer.html: |
| * compositing/geometry/layer-due-to-layer-children-deep-switch.html: |
| * compositing/geometry/layer-due-to-layer-children-switch.html: |
| * compositing/geometry/limit-layer-bounds-clipping-ancestor.html: |
| * compositing/geometry/limit-layer-bounds-fixed-positioned.html: |
| * compositing/geometry/limit-layer-bounds-opacity-transition.html: |
| * compositing/geometry/limit-layer-bounds-overflow-root.html: |
| * compositing/geometry/limit-layer-bounds-positioned-transition.html: |
| * compositing/geometry/limit-layer-bounds-positioned.html: |
| * compositing/geometry/limit-layer-bounds-transformed-overflow.html: |
| * compositing/geometry/limit-layer-bounds-transformed.html: |
| * compositing/geometry/preserve-3d-switching.html: |
| * compositing/iframes/become-composited-nested-iframes.html: |
| * compositing/iframes/become-overlapped-iframe.html: |
| * compositing/iframes/composited-parent-iframe.html: |
| * compositing/iframes/connect-compositing-iframe-delayed.html: |
| * compositing/iframes/connect-compositing-iframe.html: |
| * compositing/iframes/connect-compositing-iframe2.html: |
| * compositing/iframes/connect-compositing-iframe3.html: |
| * compositing/iframes/enter-compositing-iframe.html: |
| * compositing/iframes/iframe-resize.html: |
| * compositing/iframes/iframe-size-from-zero.html: |
| * compositing/iframes/iframe-size-to-zero.html: |
| * compositing/iframes/iframe-src-change.html: |
| * compositing/iframes/invisible-nested-iframe-hide.html: |
| * compositing/iframes/invisible-nested-iframe-show.html: |
| * compositing/iframes/leave-compositing-iframe.html: |
| * compositing/iframes/overlapped-iframe-iframe.html: |
| * compositing/iframes/overlapped-iframe.html: |
| * compositing/iframes/overlapped-nested-iframes.html: |
| * compositing/iframes/page-cache-layer-tree.html: |
| * compositing/iframes/resizer.html: |
| * compositing/iframes/scrolling-iframe.html: |
| * compositing/images/clip-on-directly-composited-image.html: |
| * compositing/layer-creation/animation-overlap-with-children.html: |
| * compositing/layer-creation/fixed-position-and-transform.html: |
| * compositing/layer-creation/fixed-position-out-of-view.html: |
| * compositing/layer-creation/fixed-position-under-transform.html: |
| * compositing/layer-creation/no-compositing-for-preserve-3d.html: |
| * compositing/layer-creation/overflow-scroll-overlap.html: |
| * compositing/layer-creation/overlap-animation.html: |
| * compositing/layer-creation/overlap-child-layer.html: |
| * compositing/layer-creation/overlap-clipping.html: |
| * compositing/layer-creation/overlap-transformed-and-clipped.html: |
| * compositing/layer-creation/overlap-transformed-layer.html: |
| * compositing/layer-creation/overlap-transforms.html: |
| * compositing/layer-creation/rotate3d-overlap.html: |
| * compositing/layer-creation/scroll-partial-update.html: |
| * compositing/layer-creation/spanOverlapsCanvas.html: |
| * compositing/layer-creation/stacking-context-overlap-nested.html: |
| * compositing/layer-creation/stacking-context-overlap.html: |
| * compositing/layer-creation/translatez-overlap.html: |
| * compositing/overflow-trumps-transform-style.html: |
| * compositing/overflow/clip-descendents.html: |
| * compositing/overflow/content-gains-scrollbars.html: |
| * compositing/overflow/content-loses-scrollbars.html: |
| * compositing/overflow/overflow-auto-with-touch-no-overflow.html: |
| * compositing/overflow/overflow-auto-with-touch-toggle.html: |
| * compositing/overflow/overflow-auto-with-touch.html: |
| * compositing/overflow/overflow-hidden-with-touch.html: |
| * compositing/overflow/overflow-overlay-with-touch-no-overflow.html: |
| * compositing/overflow/overflow-overlay-with-touch.html: |
| * compositing/overflow/overflow-scroll-with-touch-no-overflow.html: |
| * compositing/overflow/overflow-scrollbar-layers.html: |
| * compositing/overflow/overflow-visible-with-touch.html: |
| * compositing/overflow/resize-painting.html: |
| * compositing/overflow/scrolling-content-clip-to-viewport.html: |
| * compositing/overflow/textarea-scroll-touch.html: |
| * compositing/plugins/1x1-composited-plugin.html: |
| * compositing/plugins/large-to-small-composited-plugin.html: |
| * compositing/plugins/no-backing-store.html: |
| * compositing/plugins/small-to-large-composited-plugin.html: |
| * compositing/rtl/rtl-absolute-overflow-scrolled.html: |
| * compositing/rtl/rtl-absolute-overflow.html: |
| * compositing/rtl/rtl-absolute.html: |
| * compositing/rtl/rtl-fixed-overflow-scrolled.html: |
| * compositing/rtl/rtl-fixed-overflow.html: |
| * compositing/rtl/rtl-fixed.html: |
| * compositing/rtl/rtl-iframe-absolute-overflow-scrolled.html: |
| * compositing/rtl/rtl-iframe-absolute-overflow.html: |
| * compositing/rtl/rtl-iframe-absolute.html: |
| * compositing/rtl/rtl-iframe-fixed-overflow-scrolled.html: |
| * compositing/rtl/rtl-iframe-fixed-overflow.html: |
| * compositing/rtl/rtl-iframe-fixed.html: |
| * compositing/rtl/rtl-iframe-relative.html: |
| * compositing/rtl/rtl-relative.html: |
| * compositing/tiled-layers-hidpi.html: |
| * compositing/tiling/crash-reparent-tiled-layer.html: |
| * compositing/tiling/huge-layer-add-remove-child.html-disabled: |
| * compositing/tiling/huge-layer-img.html-disabled: |
| * compositing/tiling/huge-layer-resize.html-disabled: |
| * compositing/tiling/huge-layer-with-layer-children-resize.html-disabled: |
| * compositing/tiling/huge-layer-with-layer-children.html-disabled: |
| * compositing/tiling/huge-layer.html-disabled: |
| * compositing/video/video-poster.html: |
| * compositing/visibility/layer-visible-content.html: |
| * compositing/visibility/visibility-image-layers-dynamic.html: |
| * css3/compositing/should-have-compositing-layer.html: |
| * css3/filters/composited-during-animation-layertree.html: |
| * css3/filters/composited-during-transition-layertree.html: |
| * css3/filters/filtered-compositing-descendant.html: |
| * css3/filters/should-not-have-compositing-layer.html: |
| * platform/chromium-android/compositing/layer-creation/overflow-scrolling-touch.html: |
| * platform/chromium/compositing/force-compositing-mode/force-composite-empty.html: |
| * platform/chromium/compositing/force-compositing-mode/no-overflow-iframe-layer.html: |
| * platform/chromium/compositing/force-compositing-mode/overflow-hidden-iframe-layer.html: |
| * platform/chromium/compositing/force-compositing-mode/overflow-iframe-enter-compositing.html: |
| * platform/chromium/compositing/force-compositing-mode/overflow-iframe-layer.html: |
| * platform/chromium/compositing/force-compositing-mode/overflow-iframe-leave-compositing.html: |
| * platform/mac/compositing/canvas/accelerated-canvas-compositing.html: |
| |
| 2012-10-08 Hans Muller <hmuller@adobe.com> |
| |
| [CSS Exclusions] Add support for polygonal shapes |
| https://bugs.webkit.org/show_bug.cgi?id=96811 |
| |
| Reviewed by Dirk Schulze. |
| |
| Verify that a rectangular shape-inside specified as a polygon works as expected for all |
| writing-modes. |
| |
| Added exclusions tests for non-complex concave shape-inside polygons as well. |
| The shapes in this set of tests are "rectangular" in the sense that |
| horizontal lines that overlap the polygon only cross the polygon twice. |
| The expected part of each test uses float "sandbags" to simulate the |
| shape-inside area in the test expectations. The tests use SVG to |
| display the polygon itself, to simplify visual inspection. |
| (See http://www.alistapart.com/articles/sandbags/). |
| |
| * fast/exclusions/shape-inside/shape-inside-polygon-rectangle-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-polygon-rectangle.html: Added. |
| * fast/exclusions/resources/simple-polygon.js: Added. |
| (createPolygon): |
| (polygonXIntercepts): |
| (generatePolygonContentString): |
| (simulatePolygonShape): |
| (generateSimulatedPolygonShapeInsideElement): |
| (positionInformativeText): |
| (createPolygonShapeInsideTestCase): |
| (createPolygonShapeInsideTestCaseExpected): |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-001-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-001.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-002-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-002.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-003-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-003.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-004-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-simple-polygon-004.html: Added. |
| |
| 2012-10-08 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening. Add PNGs after r130653, |
| and skip tests on Qt-WK2, because they fail on it. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/fast/ruby/rubyDOM-insert-rt-expected.png: Added. |
| * platform/qt/fast/ruby/rubyDOM-insert-text1-expected.png: Added. |
| * platform/qt/fast/ruby/rubyDOM-insert-text2-expected.png: Added. |
| * platform/qt/fast/ruby/rubyDOM-insert-text3-expected.png: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-rt1-expected.png: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-rt2-expected.png: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-text1-expected.png: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-text2-expected.png: Added. |
| |
| 2012-10-08 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| Rebaselined those 2 tables/ tests that were forgotten in the rebaselining after r103875. |
| https://bugs.webkit.org/show_bug.cgi?id=74888 was opened to track those rebaselining but |
| it looks like some platform fell through the cracks. |
| |
| * platform/chromium/TestExpectations: |
| Removed the 2 entries. |
| |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/core/captions1-expected.png: Added. |
| * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/core/captions2-expected.png: Added. |
| * platform/chromium-mac/tables/mozilla_expected_failures/core/captions1-expected.png: Added. |
| * platform/chromium-mac/tables/mozilla_expected_failures/core/captions1-expected.txt: Added. |
| * platform/chromium-mac/tables/mozilla_expected_failures/core/captions2-expected.png: Added. |
| * platform/chromium-mac/tables/mozilla_expected_failures/core/captions2-expected.txt: Added. |
| Progression: the table captions are larger, which matches other browsers and other platforms' baselines. |
| |
| 2012-10-08 Zan Dobersek <zandobersek@gmail.com> |
| |
| GTK port should warn if bug modifier is missing in TestExpectations |
| https://bugs.webkit.org/show_bug.cgi?id=98678 |
| |
| Reviewed by Dirk Pranke. |
| |
| Add generic Bug(GTK) modifiers for two test expectations. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-08 Dirk Pranke <dpranke@chromium.org> |
| |
| Suppress editing/pasteboard/data-transfer-items.html failure. |
| https://bugs.webkit.org/show_bug.cgi?id=98686 |
| |
| Unreviewed, expectations change. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-08 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed rebaselining after r130598 and r130600. |
| |
| * platform/chromium-linux-x86/svg/filters/filterRes-expected.txt: |
| This baseline was forgotten. |
| |
| 2012-10-08 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] new test introduced in r120354 fails on Qt |
| https://bugs.webkit.org/show_bug.cgi?id=91968 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipping test. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-08 Huang Dongsung <luxtella@company100.net> |
| |
| [Qt] Make ImageBufferQt use premultiplied converting functions in Color.h instead of its own mechanism. |
| https://bugs.webkit.org/show_bug.cgi?id=98582 |
| |
| Reviewed by Eric Seidel. |
| |
| Unskipping canvas/philip/tests/2d.imageData.put.unchanged.html that is passing. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-08 Shadi Khalek <shadi@chromium.org> |
| |
| Fix video-test.js relativeURL() bug |
| https://bugs.webkit.org/show_bug.cgi?id=98546 |
| |
| Reviewed by Eric Seidel. |
| |
| Some layout tests failed due to this bug (crbug.com/154157) |
| |
| * media/video-test.js: |
| (testArraysEqual): |
| (relativeURL): |
| |
| 2012-10-08 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Additional fast/repaint Chromium rebaseline. |
| |
| Rebaselined more tests on Chromium Mac. Same as r130654 but there |
| is some anti-aliasing differences on transformed lines. |
| |
| * platform/chromium/TestExpectations: |
| Removed the rebaselined tests. |
| |
| * fast/repaint/table-section-repaint-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/overflow-outline-repaint-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/table-collapsed-border-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/text-append-dirty-lines-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/text-selection-rect-in-overflow-2-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/text-selection-rect-in-overflow-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/transform-relative-position-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/transform-repaint-descendants-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/overflow-outline-repaint-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-col-background-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-collapsed-border-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-outer-border-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-row-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-section-overflow-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-section-repaint-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-two-pass-layout-overpaint-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/text-append-dirty-lines-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/text-selection-rect-in-overflow-2-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/text-selection-rect-in-overflow-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/transform-absolute-child-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/transform-disable-layoutstate-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/transform-relative-position-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/transform-repaint-descendants-expected.png: Added. |
| * platform/chromium-win/fast/repaint/table-section-repaint-expected.txt: Removed. |
| * platform/chromium/fast/repaint/table-section-repaint-expected.txt: Added. |
| * platform/efl/fast/repaint/table-section-repaint-expected.txt: Removed. |
| * platform/gtk/fast/repaint/table-section-repaint-expected.txt: Removed. |
| * platform/qt/fast/repaint/table-section-repaint-expected.txt: Removed. |
| |
| 2012-10-08 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Rebaselining SVG tests after changes in r130599. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/coords-units-01-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt: |
| * platform/gtk/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.png: |
| * platform/gtk/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt: |
| * platform/gtk/svg/batik/paints/gradientLimit-expected.png: |
| * platform/gtk/svg/batik/paints/gradientLimit-expected.txt: |
| * platform/gtk/svg/batik/paints/patternRegions-expected.png: |
| * platform/gtk/svg/batik/paints/patternRegions-expected.txt: |
| * platform/gtk/svg/batik/paints/patternRegions-positioned-objects-expected.png: |
| * platform/gtk/svg/batik/paints/patternRegions-positioned-objects-expected.txt: |
| * platform/gtk/svg/batik/text/textEffect-expected.png: |
| * platform/gtk/svg/batik/text/textEffect-expected.txt: Added. |
| * platform/gtk/svg/batik/text/textEffect3-expected.png: |
| * platform/gtk/svg/batik/text/textEffect3-expected.txt: Added. |
| * platform/gtk/svg/custom/gradient-deep-referencing-expected.png: |
| * platform/gtk/svg/custom/gradient-deep-referencing-expected.txt: |
| * platform/gtk/svg/custom/gradient-with-1d-boundingbox-expected.png: Added. |
| * platform/gtk/svg/custom/gradient-with-1d-boundingbox-expected.txt: |
| * platform/gtk/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png: |
| * platform/gtk/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.txt: Added. |
| * platform/gtk/svg/custom/radialGradient-focal-radius-expected.png: Added. |
| * platform/gtk/svg/custom/radialGradient-focal-radius-expected.txt: Added. |
| * platform/gtk/svg/custom/recursive-gradient-expected.png: |
| * platform/gtk/svg/custom/recursive-gradient-expected.txt: |
| * platform/gtk/svg/custom/relative-sized-content-with-resources-expected.png: |
| * platform/gtk/svg/custom/relative-sized-content-with-resources-expected.txt: |
| * platform/gtk/svg/custom/stroked-pattern-expected.png: |
| * platform/gtk/svg/custom/stroked-pattern-expected.txt: |
| * platform/gtk/svg/hixie/perf/006-expected.png: |
| * platform/gtk/svg/hixie/perf/006-expected.txt: |
| |
| 2012-10-08 Dongwoo Joshua Im <dw.im@samsung.com> |
| |
| audiobuffer.html need to include audio-testing.js file. |
| https://bugs.webkit.org/show_bug.cgi?id=98641 |
| |
| Reviewed by Eric Seidel. |
| |
| As we discussed at the bug https://bugs.webkit.org/show_bug.cgi?id=88624, |
| WebAudio tests need to include audio-testing.js file to set WebKitWebAudioEnabled. |
| |
| * webaudio/audiobuffer.html: Include audio-testing.js file. |
| |
| 2012-10-08 Robert Hogan <robert@webkit.org> |
| |
| Border, margin and padding of an inline's inline ancestors counted twice |
| https://bugs.webkit.org/show_bug.cgi?id=63074 |
| |
| Reviewed by David Hyatt. |
| |
| * fast/inline/bpm-inline-ancestors-expected.html: Added. |
| * fast/inline/bpm-inline-ancestors.html: Added. |
| |
| 2012-10-08 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [WK2][WTR] WebKitTestRunner needs testRunner.dispatchPendingLoadRequests |
| https://bugs.webkit.org/show_bug.cgi?id=98638 |
| |
| Reviewed by Eric Seidel. |
| |
| Unskip http/tests/loading/deleted-host-in-resource-load-delegate-callback.html |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-08 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Skip http/tests/multipart/multipart-html.php while we wait for kov's patch. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-08 Mike West <mkwst@chromium.org> |
| |
| Null-check for DOMWindow before feeding it to FeatureObserver. |
| https://bugs.webkit.org/show_bug.cgi?id=98624 |
| |
| Reviewed by Adam Barth. |
| |
| * http/tests/security/contentSecurityPolicy/xmlhttprequest-protected-resource-does-not-crash-expected.txt: Added. |
| * http/tests/security/contentSecurityPolicy/xmlhttprequest-protected-resource-does-not-crash.html: Added. |
| This test shouldn't crash. |
| |
| 2012-10-08 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, new baseline for fast/table/colspanMinWidth-vertical.html. |
| |
| The baseline changed in http://trac.webkit.org/changeset/130569 because |
| controls should all be horizontal. |
| |
| * platform/chromium-mac-snowleopard/fast/table/colspanMinWidth-vertical-expected.png: |
| * platform/chromium-mac/fast/table/colspanMinWidth-vertical-expected.png: |
| * platform/chromium-mac/fast/table/colspanMinWidth-vertical-expected.txt: Removed. |
| * platform/chromium-win/fast/table/colspanMinWidth-vertical-expected.png: |
| * platform/chromium/TestExpectations: |
| * platform/efl/fast/table/colspanMinWidth-vertical-expected.png: Removed. |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/table/colspanMinWidth-vertical-expected.png: Removed. |
| * platform/gtk/fast/table/colspanMinWidth-vertical-expected.txt: |
| * platform/mac/TestExpectations: |
| * platform/mac/fast/table/colspanMinWidth-vertical-expected.png: Removed. |
| * platform/mac/fast/table/colspanMinWidth-vertical-expected.txt: |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/table/colspanMinWidth-vertical-expected.png: Removed. |
| * platform/qt/fast/table/colspanMinWidth-vertical-expected.txt: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| |
| 2012-10-08 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed fast/repaint Chromium rebaselining. |
| |
| Rebaselined those tests on Chromium Mac. The differences fall in 3 buckets: |
| - the background has an alpha off-by-one (crbug.com/23473) |
| - the repaint rectangles are united (the Mac baselines don't do the union). |
| - On Lion, the font used is different. |
| |
| * platform/chromium/TestExpectations: |
| Removed the rebaselined tests' entries. |
| |
| * platform/chromium-mac-snowleopard/fast/repaint/bugzilla-5699-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/control-clip-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/create-layer-repaint-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/layout-state-only-positioned-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/line-in-scrolled-clipped-block-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/line-overflow-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/list-marker-2-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/make-children-non-inline-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/outline-child-repaint-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/outline-repaint-glitch-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/overflow-scroll-delete-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/reflection-redraw-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/rel-positioned-inline-with-overflow-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/selection-after-delete-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/selection-gap-overflow-scroll-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/stacked-diacritics-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/static-to-positioned-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/repaint/table-cell-move-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/background-generated-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/bugzilla-5699-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/content-into-overflow-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/control-clip-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/control-clip-expected.txt: |
| * platform/chromium-mac/fast/repaint/create-layer-repaint-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/intermediate-layout-position-clip-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/intermediate-layout-position-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/layout-state-only-positioned-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/line-in-scrolled-clipped-block-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/line-overflow-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/list-marker-2-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/make-children-non-inline-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/outline-child-repaint-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/outline-inset-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/outline-repaint-glitch-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/overflow-into-content-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/overflow-scroll-delete-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/reflection-redraw-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/rel-positioned-inline-with-overflow-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/selection-after-delete-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/selection-gap-overflow-scroll-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/stacked-diacritics-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/static-to-positioned-expected.png: Added. |
| * platform/chromium-mac/fast/repaint/table-cell-move-expected.png: Added. |
| * platform/chromium-win/fast/repaint/box-shadow-inset-repaint-expected.png: Added. |
| * platform/mac-lion/fast/repaint: Removed. |
| * platform/mac-lion/fast/repaint/control-clip-expected.txt: Removed. |
| |
| 2012-10-08 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| [Qt] Add baselines to passing ruby DOM tests. |
| |
| Unreviewed gardening. |
| |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/ruby/rubyDOM-insert-rt-expected.txt: Added. |
| * platform/qt/fast/ruby/rubyDOM-insert-text1-expected.txt: Added. |
| * platform/qt/fast/ruby/rubyDOM-insert-text2-expected.txt: Added. |
| * platform/qt/fast/ruby/rubyDOM-insert-text3-expected.txt: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-rt1-expected.txt: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-rt2-expected.txt: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-text1-expected.txt: Added. |
| * platform/qt/fast/ruby/rubyDOM-remove-text2-expected.txt: Added. |
| |
| 2012-10-08 Nate Chapin <japhet@chromium.org> |
| |
| Add a test for multipart/x-mixed-replace documents with text/html |
| parts. |
| https://bugs.webkit.org/show_bug.cgi?id=49072 |
| |
| Reviewed by Eric Seidel. |
| |
| * http/tests/multipart/multipart-html-expected.txt: Added. |
| * http/tests/multipart/multipart-html.php: Added. |
| |
| 2012-10-08 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Skip svg/text/caret-in-svg-text.xhtml in WK1. |
| |
| * platform/efl-wk1/TestExpectations: |
| |
| 2012-10-08 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed gardening after r130587. |
| |
| Per discussion with Adam, this change lands the failing baselines to |
| get some coverage until V8 matches JSC. Fixing the baselines is |
| covered by https://bugs.webkit.org/show_bug.cgi?id=98658 |
| |
| * platform/chromium/TestExpectations: |
| Marked one of test as SLOW as it is timing out in Debug. |
| |
| * platform/chromium/fast/dom/gc-12-expected.txt: Added. |
| * platform/chromium/fast/dom/gc-3-expected.txt: Added. |
| * platform/chromium/fast/dom/gc-5-expected.txt: Added. |
| * platform/chromium/fast/dom/gc-dom-tree-lifetime-expected.txt: Added. |
| |
| 2012-10-08 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| Unreviewed Qt gardening. |
| |
| Rebaseline Qt expectations for these passing tests. |
| |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/text/basic/013-expected.txt: |
| * platform/qt/fast/text/basic/015-expected.txt: |
| * platform/qt/fast/text/line-breaks-expected.txt: |
| |
| 2012-10-08 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Mark fast/dynamic/window-scrollbars-test.html as flaky. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-08 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip svg/text. |
| |
| Most of the text cases are passing, the ones which don't have been |
| properly skipped. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/svg/text/append-text-node-to-tspan-expected.png: Added. |
| * platform/efl/svg/text/append-text-node-to-tspan-expected.txt: Added. |
| * platform/efl/svg/text/bidi-embedded-direction-expected.png: Added. |
| * platform/efl/svg/text/bidi-embedded-direction-expected.txt: Added. |
| * platform/efl/svg/text/bidi-reorder-value-lists-expected.png: Added. |
| * platform/efl/svg/text/bidi-reorder-value-lists-expected.txt: Added. |
| * platform/efl/svg/text/bidi-text-anchor-direction-expected.png: Added. |
| * platform/efl/svg/text/bidi-text-anchor-direction-expected.txt: Added. |
| * platform/efl/svg/text/bidi-text-query-expected.png: Added. |
| * platform/efl/svg/text/bidi-text-query-expected.txt: Added. |
| * platform/efl/svg/text/bidi-tspans-expected.png: Added. |
| * platform/efl/svg/text/bidi-tspans-expected.txt: Added. |
| * platform/efl/svg/text/ems-display-none-expected.png: Added. |
| * platform/efl/svg/text/ems-display-none-expected.txt: Added. |
| * platform/efl/svg/text/exs-display-none-expected.png: Added. |
| * platform/efl/svg/text/exs-display-none-expected.txt: Added. |
| * platform/efl/svg/text/font-size-below-point-five-2-expected.png: Added. |
| * platform/efl/svg/text/font-size-below-point-five-2-expected.txt: Added. |
| * platform/efl/svg/text/font-size-below-point-five-expected.png: Added. |
| * platform/efl/svg/text/font-size-below-point-five-expected.txt: Added. |
| * platform/efl/svg/text/foreignObject-repaint-expected.png: Added. |
| * platform/efl/svg/text/foreignObject-repaint-expected.txt: Added. |
| * platform/efl/svg/text/foreignObject-text-clipping-bug-expected.png: Added. |
| * platform/efl/svg/text/foreignObject-text-clipping-bug-expected.txt: Added. |
| * platform/efl/svg/text/kerning-expected.png: Added. |
| * platform/efl/svg/text/kerning-expected.txt: Added. |
| * platform/efl/svg/text/modify-text-node-in-tspan-expected.png: Added. |
| * platform/efl/svg/text/modify-text-node-in-tspan-expected.txt: Added. |
| * platform/efl/svg/text/multichar-glyph-expected.png: Added. |
| * platform/efl/svg/text/multichar-glyph-expected.txt: Added. |
| * platform/efl/svg/text/remove-text-node-from-tspan-expected.png: Added. |
| * platform/efl/svg/text/remove-text-node-from-tspan-expected.txt: Added. |
| * platform/efl/svg/text/remove-tspan-from-text-expected.png: Added. |
| * platform/efl/svg/text/remove-tspan-from-text-expected.txt: Added. |
| * platform/efl/svg/text/scaled-font-expected.png: Added. |
| * platform/efl/svg/text/scaled-font-expected.txt: Added. |
| * platform/efl/svg/text/scaling-font-with-geometric-precision-expected.png: Added. |
| * platform/efl/svg/text/scaling-font-with-geometric-precision-expected.txt: Added. |
| * platform/efl/svg/text/selection-background-color-expected.png: Added. |
| * platform/efl/svg/text/selection-background-color-expected.txt: Added. |
| * platform/efl/svg/text/selection-styles-expected.png: Added. |
| * platform/efl/svg/text/selection-styles-expected.txt: Added. |
| * platform/efl/svg/text/small-fonts-2-expected.png: Added. |
| * platform/efl/svg/text/small-fonts-2-expected.txt: Added. |
| * platform/efl/svg/text/small-fonts-3-expected.png: Added. |
| * platform/efl/svg/text/small-fonts-3-expected.txt: Added. |
| * platform/efl/svg/text/small-fonts-expected.png: Added. |
| * platform/efl/svg/text/small-fonts-in-html5-expected.png: Added. |
| * platform/efl/svg/text/small-fonts-in-html5-expected.txt: Added. |
| * platform/efl/svg/text/text-align-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-align-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-align-02-b-expected.png: Added. |
| * platform/efl/svg/text/text-align-02-b-expected.txt: Added. |
| * platform/efl/svg/text/text-align-03-b-expected.png: Added. |
| * platform/efl/svg/text/text-align-03-b-expected.txt: Added. |
| * platform/efl/svg/text/text-align-04-b-expected.png: Added. |
| * platform/efl/svg/text/text-align-04-b-expected.txt: Added. |
| * platform/efl/svg/text/text-align-05-b-expected.png: Added. |
| * platform/efl/svg/text/text-align-05-b-expected.txt: Added. |
| * platform/efl/svg/text/text-align-06-b-expected.png: Added. |
| * platform/efl/svg/text/text-align-06-b-expected.txt: Added. |
| * platform/efl/svg/text/text-altglyph-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-altglyph-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-deco-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-deco-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-fill-opacity-expected.png: Added. |
| * platform/efl/svg/text/text-fill-opacity-expected.txt: Added. |
| * platform/efl/svg/text/text-fonts-01-t-expected.png: Added. |
| * platform/efl/svg/text/text-fonts-01-t-expected.txt: Added. |
| * platform/efl/svg/text/text-fonts-02-t-expected.png: Added. |
| * platform/efl/svg/text/text-fonts-02-t-expected.txt: Added. |
| * platform/efl/svg/text/text-gradient-positioning-expected.png: Added. |
| * platform/efl/svg/text/text-gradient-positioning-expected.txt: Added. |
| * platform/efl/svg/text/text-hkern-expected.png: Added. |
| * platform/efl/svg/text/text-hkern-expected.txt: Added. |
| * platform/efl/svg/text/text-hkern-on-vertical-text-expected.png: Added. |
| * platform/efl/svg/text/text-hkern-on-vertical-text-expected.txt: Added. |
| * platform/efl/svg/text/text-intro-05-t-expected.png: Added. |
| * platform/efl/svg/text/text-intro-05-t-expected.txt: Added. |
| * platform/efl/svg/text/text-midpoint-split-bug-expected.png: Added. |
| * platform/efl/svg/text/text-midpoint-split-bug-expected.txt: Added. |
| * platform/efl/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added. |
| * platform/efl/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Added. |
| * platform/efl/svg/text/text-path-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-path-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-path-middle-align-expected.png: Added. |
| * platform/efl/svg/text/text-path-middle-align-expected.txt: Added. |
| * platform/efl/svg/text/text-repaint-rects-expected.png: Added. |
| * platform/efl/svg/text/text-repaint-rects-expected.txt: Added. |
| * platform/efl/svg/text/text-rescale-expected.png: Added. |
| * platform/efl/svg/text/text-rescale-expected.txt: Added. |
| * platform/efl/svg/text/text-spacing-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-spacing-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-text-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-text-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-text-03-b-expected.png: Added. |
| * platform/efl/svg/text/text-text-03-b-expected.txt: Added. |
| * platform/efl/svg/text/text-text-04-t-expected.png: Added. |
| * platform/efl/svg/text/text-text-04-t-expected.txt: Added. |
| * platform/efl/svg/text/text-text-05-t-expected.png: Added. |
| * platform/efl/svg/text/text-text-05-t-expected.txt: Added. |
| * platform/efl/svg/text/text-text-06-t-expected.png: Added. |
| * platform/efl/svg/text/text-text-06-t-expected.txt: Added. |
| * platform/efl/svg/text/text-text-07-t-expected.png: Added. |
| * platform/efl/svg/text/text-text-07-t-expected.txt: Added. |
| * platform/efl/svg/text/text-text-08-b-expected.png: Added. |
| * platform/efl/svg/text/text-text-08-b-expected.txt: Added. |
| * platform/efl/svg/text/text-tref-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-tref-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-tselect-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-tselect-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-tselect-02-f-expected.png: Added. |
| * platform/efl/svg/text/text-tselect-02-f-expected.txt: Added. |
| * platform/efl/svg/text/text-tspan-01-b-expected.png: Added. |
| * platform/efl/svg/text/text-tspan-01-b-expected.txt: Added. |
| * platform/efl/svg/text/text-viewbox-rescale-expected.png: Added. |
| * platform/efl/svg/text/text-vkern-expected.png: Added. |
| * platform/efl/svg/text/text-vkern-expected.txt: Added. |
| * platform/efl/svg/text/text-vkern-on-horizontal-text-expected.png: Added. |
| * platform/efl/svg/text/text-vkern-on-horizontal-text-expected.txt: Added. |
| * platform/efl/svg/text/text-ws-01-t-expected.png: Added. |
| * platform/efl/svg/text/text-ws-01-t-expected.txt: Added. |
| * platform/efl/svg/text/text-ws-02-t-expected.png: Added. |
| * platform/efl/svg/text/text-ws-02-t-expected.txt: Added. |
| * platform/efl/svg/text/textPathBoundsBug-expected.png: Added. |
| * platform/efl/svg/text/textPathBoundsBug-expected.txt: Added. |
| * platform/efl/svg/text/tspan-dynamic-positioning-expected.png: Added. |
| * platform/efl/svg/text/tspan-dynamic-positioning-expected.txt: Added. |
| |
| 2012-10-08 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip svg/dom/altGlyph-dom.xhtml |
| |
| Seems to be passing these days. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-08 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Removing crash expectations for tests that were fixed in r130611. |
| |
| Removing failure expectations for fast/xsl/xslt-missing-namespace-in-xslt.xml, |
| the test is working fine after r130543. |
| |
| * platform/gtk-wk2/TestExpectations: |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-08 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| Unreviewed Qt gardening. |
| |
| Adding expectations for tests under css2.1. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-08 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip svg/W3C-SVG-1.1. |
| |
| All but one test case worked fine (compared to the expectations in |
| mac/). |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-07-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-07-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-09-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-10-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-11-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-12-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-12-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-13-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-14-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-15-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-16-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-17-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-18-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-19-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-20-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-21-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-22-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-23-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-25-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-26-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-27-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-28-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-29-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-32-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-34-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-37-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-41-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-41-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-44-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-52-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-62-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-64-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-80-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-82-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-84-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-85-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prof-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prof-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prop-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prop-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prop-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prop-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prop-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/color-prop-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-coord-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-coord-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-units-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-units-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-units-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-units-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-color-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-color-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-conv-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-displace-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-example-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-example-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-felem-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-image-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-image-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-light-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-light-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-light-04-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-light-04-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-offset-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-specular-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-tile-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-turb-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/filters-turb-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-dom-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-events-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-events-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-order-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-order-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-order-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-order-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-order-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-order-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-07-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-a-07-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-uri-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-intro-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-mask-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-04-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-05-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-marker-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-marker-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-marker-03-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-render-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-render-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-03-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-03-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-07-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-08-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-09-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-09-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-10-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-10-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-12-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-13-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-13-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-14-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-14-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-15-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/paths-data-15-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-07-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-08-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-04-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/script-handle-04-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-line-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-cond-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-cond-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-cond-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-cond-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-defs-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-04-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-dom-06-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-group-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-group-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-group-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-group-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-group-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-05-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-07-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-08-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-08-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-09-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-09-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-10-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-image-10-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-use-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-use-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-04-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-05-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-06-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-css-06-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-pres-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-04-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-04-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-05-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-06-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-06-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-08-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-align-08-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-deco-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-deco-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-fonts-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-fonts-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-fonts-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-fonts-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-intro-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-path-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-path-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-spacing-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-04-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-04-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-06-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-06-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-07-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-07-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-08-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-text-08-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tref-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tref-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tselect-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tselect-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tspan-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-ws-01-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-ws-01-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-ws-02-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/text-ws-02-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt: Added. |
| |
| 2012-10-08 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt][WK2] REGRESSION(r130629): It made touchadjustment/focusout-on-touch.html fail |
| https://bugs.webkit.org/show_bug.cgi?id=98642 |
| |
| Unreviewed gardening, skip the new failing test to paint the bot green. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-08 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] plugins/refcount-leaks.html fails |
| https://bugs.webkit.org/show_bug.cgi?id=98640 |
| |
| Unreviewed gardening, skip the failing test. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-08 Nandor Huszka <hnandor@inf.u-szeged.hu> |
| |
| Unreviewed gardening, skip and update some failing test. |
| |
| * platform/qt/TestExpectations: |
| * platform/qt/http/tests/misc/acid3-expected.png: |
| * platform/qt/http/tests/misc/acid3-expected.txt: |
| |
| 2012-10-08 Joone Hur <joone.hur@intel.com> |
| |
| [EFL] Add support for -webkit-sticky |
| https://bugs.webkit.org/show_bug.cgi?id=95182 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Turn on CSS sticky position by default for WebKitEfl, |
| but most of the CSS sticky position test cases still do not pass on WK1. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl/TestExpectations: |
| |
| 2012-10-08 Balazs Kelemen <kbalazs@webkit.org> |
| |
| [Qt] Reenable plugin tests |
| https://bugs.webkit.org/show_bug.cgi?id=98528 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| Reenable plugin tests. Skip new failures. |
| |
| * platform/qt-5.0-wk1/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt-5.0/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-07 Noel Gordon <noel.gordon@gmail.com> |
| |
| Add partial load test for JPEG image |
| https://bugs.webkit.org/show_bug.cgi?id=98487 |
| |
| Reviewed by Adam Barth. |
| |
| Partial load test: receive a partial number of image bytes and stall forever. The partial |
| image should be decoded and drawn and the green <img> background should be visible. |
| |
| * fast/images/resources/lenna.jpg: Added. |
| * http/tests/images/jpeg-partial-load-expected.png: Added. |
| * http/tests/images/jpeg-partial-load-expected.txt: Added. |
| * http/tests/images/jpeg-partial-load.html: Added. |
| * platform/chromium/http/tests/images/jpeg-partial-load-expected.png: Added. |
| * platform/mac/http/tests/images/jpeg-partial-load-expected.png: Added. |
| |
| 2012-10-07 Arpita Bahuguna <arpitabahuguna@gmail.com> |
| |
| :first-line pseudo selector ignoring words created from :before |
| https://bugs.webkit.org/show_bug.cgi?id=80794 |
| |
| Reviewed by Daniel Bates. |
| |
| * fast/css/first-line-style-for-before-after-content-expected.html: Added. |
| * fast/css/first-line-style-for-before-after-content.html: Added. |
| Added ref test for verification of the scenario when :first-line style |
| is applied to content generated from :before/:after pseudo-elements. |
| |
| 2012-10-07 Nick Carter <nick@chromium.org> |
| |
| [chromium] Crash in WebCore::GraphicsLayerChromium::setContentsToImage |
| https://bugs.webkit.org/show_bug.cgi?id=98456 |
| |
| Reviewed by James Robinson. |
| |
| New tests exercising a broken image on its own layer. |
| |
| * compositing/images/truncated-direct-png-image-expected.html: Added. |
| * compositing/images/truncated-direct-png-image.html: Added. |
| |
| 2012-10-07 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Mark media/video-controls-rendering.html as flaky. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-07 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip svg/W3C-SVG-1.1-SE and add expectations for it. |
| |
| All pixel tests look OK (compared to the ones in mac/), and all |
| tests seem to pass. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/painting-control-04-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-intro-09-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-intro-09-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.txt: Added. |
| |
| 2012-10-07 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Unskip passing test. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-07 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Finish rebaselining the SVG tests after r130599. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/svg/W3C-SVG-1.1: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-units-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-use-05-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.png: Added. |
| * platform/efl/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt: Added. |
| * platform/efl/svg/batik/paints/patternRegions-expected.txt: |
| * platform/efl/svg/batik/paints/patternRegions-positioned-objects-expected.txt: |
| * platform/efl/svg/batik/text/textEffect-expected.txt: Added. |
| * platform/efl/svg/batik/text/textEffect3-expected.txt: Added. |
| * platform/efl/svg/custom: Added. |
| * platform/efl/svg/custom/clip-mask-negative-scale-expected.png: Added. |
| * platform/efl/svg/custom/clip-mask-negative-scale-expected.txt: Added. |
| * platform/efl/svg/custom/gradient-deep-referencing-expected.png: Added. |
| * platform/efl/svg/custom/gradient-deep-referencing-expected.txt: Added. |
| * platform/efl/svg/custom/gradient-with-1d-boundingbox-expected.png: Added. |
| * platform/efl/svg/custom/gradient-with-1d-boundingbox-expected.txt: Added. |
| * platform/efl/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png: Added. |
| * platform/efl/svg/custom/radialGradient-focal-radius-expected.png: Added. |
| * platform/efl/svg/custom/radialGradient-focal-radius-expected.txt: Added. |
| * platform/efl/svg/custom/recursive-gradient-expected.png: Added. |
| * platform/efl/svg/custom/recursive-gradient-expected.txt: Added. |
| * platform/efl/svg/custom/relative-sized-content-with-resources-expected.png: Added. |
| * platform/efl/svg/custom/relative-sized-content-with-resources-expected.txt: Added. |
| * platform/efl/svg/custom/stroked-pattern-expected.png: Added. |
| * platform/efl/svg/custom/stroked-pattern-expected.txt: Added. |
| * platform/efl/svg/hixie/perf/006-expected.txt: |
| |
| 2012-10-07 Daniel Bates <dbates@webkit.org> |
| |
| Update expected results for SVG tests on EFL, GTK, and Qt after <http://trac.webkit.org/changeset/130599> |
| https://bugs.webkit.org/show_bug.cgi?id=97986 |
| |
| * platform/efl/svg/filters/feDisplacementMap-expected.txt: |
| * platform/efl/svg/filters/filterRes-expected.txt: |
| * platform/gtk/svg/custom/gradient-attr-update-expected.txt: |
| * platform/gtk/svg/custom/gradient-rotated-bbox-expected.txt: |
| * platform/gtk/svg/custom/gradient-userSpaceOnUse-with-percentage-expected.txt: |
| * platform/gtk/svg/custom/large-bounding-box-percents-expected.txt: |
| * platform/gtk/svg/filters/feDisplacementMap-expected.txt: |
| * platform/gtk/svg/filters/filterRes-expected.txt: |
| * platform/qt/svg/custom/gradient-attr-update-expected.txt: |
| * platform/qt/svg/custom/gradient-rotated-bbox-expected.txt: |
| * platform/qt/svg/custom/gradient-userSpaceOnUse-with-percentage-expected.txt: |
| * platform/qt/svg/custom/large-bounding-box-percents-expected.txt: |
| |
| 2012-10-05 Dirk Schulze <krit@webkit.org> |
| |
| SVG radialGradient should support 'fr' for focal radius (just like Canvas) |
| https://bugs.webkit.org/show_bug.cgi?id=97986 |
| |
| Reviewed by Daniel Bates. |
| |
| DRT changed the output to reflect the new added focal radius. A bunch of tests need |
| a rebaseline on DRT. |
| Added a new test for focal radius and changed behavior of focal point. |
| |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/mac/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt: |
| * platform/mac/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt: |
| * platform/mac/svg/batik/paints/gradientLimit-expected.txt: |
| * platform/mac/svg/batik/paints/patternRegions-expected.txt: |
| * platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.txt: |
| * platform/mac/svg/batik/text/textEffect-expected.txt: |
| * platform/mac/svg/batik/text/textEffect3-expected.txt: |
| * platform/mac/svg/custom/gradient-attr-update-expected.txt: |
| * platform/mac/svg/custom/gradient-deep-referencing-expected.txt: |
| * platform/mac/svg/custom/gradient-rotated-bbox-expected.txt: |
| * platform/mac/svg/custom/gradient-userSpaceOnUse-with-percentage-expected.txt: |
| * platform/mac/svg/custom/gradient-with-1d-boundingbox-expected.txt: |
| * platform/mac/svg/custom/large-bounding-box-percents-expected.txt: |
| * platform/mac/svg/custom/radialGradient-focal-radius-expected.png: Added. |
| * platform/mac/svg/custom/radialGradient-focal-radius-expected.txt: Added. |
| * platform/mac/svg/custom/recursive-gradient-expected.txt: |
| * platform/mac/svg/custom/relative-sized-content-with-resources-expected.txt: |
| * platform/mac/svg/custom/stroked-pattern-expected.txt: |
| * platform/mac/svg/filters/feDisplacementMap-expected.txt: |
| * platform/mac/svg/filters/filterRes-expected.txt: |
| * platform/mac/svg/hixie/perf/006-expected.txt: |
| * svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt: |
| * svg/custom/gradient-stroke-width-expected.txt: |
| * svg/custom/radial-gradient-with-outstanding-focalPoint-expected.txt: |
| * svg/custom/radialGradient-focal-radius.svg: Added. |
| |
| 2012-10-07 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| Unreviewed, rolling out r130596. |
| http://trac.webkit.org/changeset/130596 |
| https://bugs.webkit.org/show_bug.cgi?id=98616 |
| |
| Broke build bots without IPV6 support |
| |
| * http/conf/apache2-debian-httpd.conf: |
| * http/conf/apache2-httpd.conf: |
| * http/conf/cygwin-httpd.conf: |
| * http/conf/fedora-httpd.conf: |
| |
| 2012-10-07 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| webkitpy: Pass the `Listen' Apache directive from Apache, not the httpd.conf files. |
| https://bugs.webkit.org/show_bug.cgi?id=98602 |
| |
| Reviewed by Eric Seidel. |
| |
| * http/conf/apache2-debian-httpd.conf: Remove the `Listen' |
| directive and related comments, it is passed to httpd by webkitpy |
| now. |
| * http/conf/apache2-httpd.conf: Ditto. |
| * http/conf/cygwin-httpd.conf: Ditto. |
| * http/conf/fedora-httpd.conf: Ditto. |
| |
| 2012-10-07 Christophe Dumez <christophe.dumez@intel.com> |
| |
| [EFL] Skip css3/masking tests added in r130592 |
| https://bugs.webkit.org/show_bug.cgi?id=98614 |
| |
| Unreviewed EFL gardening. |
| |
| Skip the two css3/masking ref tests added in r130592 since |
| they fail for EFL port and GTK port. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-07 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding crash and failure expectations for regressions introduced through r130584. |
| Adding image mismatch expectations for two new tests introduced in r130592. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-06 Kent Tamura <tkent@chromium.org> |
| |
| Update test expectation |
| https://bugs.webkit.org/show_bug.cgi?id=98479 |
| |
| Skip tests in fast/forms/date-multiple-fields/ because it needs |
| ENABLE_INPUT_MULTIPLE_FIELDS_UI. |
| |
| * platform/chromium-android/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-06 Raul Hudea <rhudea@adobe.com> |
| |
| -webkit-clip-path should parse IRIs |
| https://bugs.webkit.org/show_bug.cgi?id=96381 |
| |
| Reviewed by Andreas Kling. |
| |
| Tests for SVG referenced clipPath with both types of clipPathUnits: "userSpaceOnUse" and "objectBoundingBox". |
| |
| * css3/masking/clip-path-reference-expected.html: Added. |
| * css3/masking/clip-path-reference-userSpaceOnUse-expected.html: Added. |
| * css3/masking/clip-path-reference-userSpaceOnUse.html: Added. |
| * css3/masking/clip-path-reference.html: Added. |
| * fast/masking/parsing-clip-path-iri-expected.txt: Added. |
| * fast/masking/parsing-clip-path-iri.html: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Mark media/audio-garbage-collect.html as flaky on WK2. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-04 Geoffrey Garen <ggaren@apple.com> |
| |
| If Node X is reachable from JavaScript, all Nodes in the same tree should be kept alive |
| https://bugs.webkit.org/show_bug.cgi?id=88834 |
| |
| Reviewed by Gavin Barraclough. |
| |
| * fast/dom/gc-12-expected.txt: Added. |
| * fast/dom/gc-12.html: Added. Test case matches an example cited by |
| Kentaro Hara <haraken@chromium.org> in bugzilla. |
| |
| * fast/dom/gc-3-expected.txt: |
| * fast/dom/gc-3.html: |
| * fast/dom/gc-5-expected.txt: |
| * fast/dom/gc-5.html: Updated these tests to reflect new expected behavior. |
| We've decided that disconnected trees should persist in memory. This risks |
| a programmer accidentally retaining more memory than expected, but it |
| also makes the API more obvious. |
| |
| * fast/dom/gc-dom-tree-lifetime-expected.txt: Added. |
| * fast/dom/gc-dom-tree-lifetime.html: Added. Test case written by |
| Kentaro Hara <haraken@chromium.org>. |
| |
| 2012-10-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Gardening. |
| |
| Skip fast/selectors/unqualified-hover-strict.html because it seems |
| to be flaky. |
| |
| While here, correct its pixel expectation and fix its |
| svn:mime-type property. |
| |
| * platform/efl/fast/selectors/unqualified-hover-strict-expected.png: Modified property svn:mime-type. |
| |
| 2012-10-06 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Gardening to make the bots green |
| https://bugs.webkit.org/show_bug.cgi?id=98590 |
| |
| Unreviewed EFL gardening. |
| |
| * platform/efl/TestExpectations: Skip |
| fast/writing-mode/vertical-subst-font-vert-no-dflt.html after r130570. |
| * platform/efl/http/tests/misc/acid3-expected.txt: Update baselines |
| after r130555. |
| |
| 2012-10-06 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Add baselines for the tests which are missing expected results |
| https://bugs.webkit.org/show_bug.cgi?id=98576 |
| |
| Unreviewed EFL gardening. |
| |
| Add platform-specific baselines after r130443 and r130489. |
| |
| * platform/efl/TestExpectations: |
| * platform/efl/fast/repaint/box-shadow-inset-repaint-expected.png: Added. |
| * platform/efl/fast/repaint/box-shadow-inset-repaint-expected.txt: Added. |
| * platform/efl/fast/text/vertical-rl-rtl-linebreak-expected.png: Added. |
| * platform/efl/fast/text/vertical-rl-rtl-linebreak-expected.txt: Added. |
| |
| 2012-10-06 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [EFL] Gardening of the WK2 Debug Bot failing tests |
| https://bugs.webkit.org/show_bug.cgi?id=98575 |
| |
| Unreviewed EFL gardening. |
| |
| Skip failing tests in order to make the bots green. |
| |
| * platform/efl-wk1/TestExpectations: |
| * platform/efl-wk2/TestExpectations: |
| * platform/efl/fast/replaced/object-with-embed-url-param-expected.txt: Removed. Current results |
| matches the base expectations on WK2. |
| |
| 2012-10-05 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding reftest failure expectations for a couple of tests that |
| were introduced in r130557 and r130570. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-05 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Rebaseline for recent INPUT_MULTIPLE_FIELDS_UI changes |
| |
| * platform/chromium-linux-x86/fast/forms/date/calendar-picker-appearance-expected.png: |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-linux/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium-linux/fast/forms/date/calendar-picker-appearance-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-linux/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/forms/date/calendar-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac-snowleopard/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: Added. |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Added. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/date/calendar-picker-appearance-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-win-xp/fast/forms/date/calendar-picker-appearance-expected.png: |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-win/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium-win/fast/forms/date/calendar-picker-appearance-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/month-multiple-fields/month-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-win/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: |
| * platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-05 Xianzhu Wang <wangxianzhu@chromium.org> |
| |
| OpenTypeVerticalData issue with DroidSansFallback.ttf on chromium-android and chromium-linux |
| https://bugs.webkit.org/show_bug.cgi?id=97824 |
| |
| Reviewed by Tony Chang. |
| |
| Ref test for the change. The punctuations in the vertical text are expected to |
| be substituted with the corresponding vertical forms. |
| |
| * fast/writing-mode/vertical-subst-font-vert-no-dflt-expected.html: Added. |
| * fast/writing-mode/vertical-subst-font-vert-no-dflt.html: Added. |
| * platform/mac/TestExpectations: Added the new test as it fails on Mac because of https://bugs.webkit.org/show_bug.cgi?id=98560. |
| |
| 2012-10-05 Tony Chang <tony@chromium.org> |
| |
| Form controls should always be horizontal |
| https://bugs.webkit.org/show_bug.cgi?id=98563 |
| |
| Reviewed by Ojan Vafai. |
| |
| Convert fast/dom/HTMLMeterElement/meter-writing-mode.html and |
| fast/dom/HTMLProgressElement/progress-writing-mode.html to be ref tests. |
| Also rebaseline fast/table/colspanMinWidth-vertical.html and mark the |
| test as needing a rebaseline on platforms other than Chromium Linux. |
| |
| * fast/dom/HTMLMeterElement/meter-writing-mode-expected.html: Added. |
| * fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Removed. |
| * fast/dom/HTMLProgressElement/progress-writing-mode-expected.html: Added. |
| * fast/dom/HTMLProgressElement/progress-writing-mode-expected.png: Removed. |
| * fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Removed. |
| * platform/chromium-linux/fast/table/colspanMinWidth-vertical-expected.png: |
| * platform/chromium-mac/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Removed. |
| * platform/chromium-mac/fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Removed. |
| * platform/chromium-mac/fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Removed. |
| * platform/chromium-win/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Removed. |
| * platform/chromium-win/fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Removed. |
| * platform/chromium-win/fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Removed. |
| * platform/chromium-win/fast/table/colspanMinWidth-vertical-expected.txt: |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/dom/HTMLProgressElement/progress-writing-mode-expected.png: Removed. |
| * platform/efl/TestExpectations: |
| * platform/efl/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Removed. |
| * platform/efl/fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Removed. |
| * platform/efl/fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Removed. |
| * platform/gtk/TestExpectations: |
| * platform/gtk/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Removed. |
| * platform/gtk/fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Removed. |
| * platform/gtk/fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Removed. |
| * platform/mac/TestExpectations: |
| * platform/mac/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Removed. |
| * platform/mac/fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Removed. |
| * platform/mac/fast/dom/HTMLProgressElement/progress-writing-mode-expected.png: Removed. |
| * platform/mac/fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Removed. |
| * platform/qt-5.0/fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Removed. |
| * platform/qt/TestExpectations: |
| * platform/qt/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Removed. |
| * platform/qt/fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Removed. |
| |
| 2012-10-05 Sudarsana Nagineni <sudarsana.nagineni@intel.com> |
| |
| [WK2][WTR] WebKitTestRunner needs testRunner.setSerializeHTTPLoads |
| https://bugs.webkit.org/show_bug.cgi?id=98524 |
| |
| Reviewed by Alexey Proskuryakov. |
| |
| Unskip tests that are now passing. |
| |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-05 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r130556 and r130564. |
| http://trac.webkit.org/changeset/130556 |
| http://trac.webkit.org/changeset/130564 |
| https://bugs.webkit.org/show_bug.cgi?id=98572 |
| |
| The patch wasn't reviewed by a reviewer and it is breaking |
| Chromium Windows (Requested by jchaffraix on #webkit). |
| |
| * media/track/track-cue-rendering-expected.txt: |
| * media/track/track-cue-rendering.html: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-05 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed Chromium gardening. |
| |
| * platform/chromium/TestExpectations: |
| Updated a wrong bug info and rebaselined 2 tests: |
| fast/reflections/inline-crash.html and fast/backgrounds/solid-color-context-restore.html |
| |
| * fast/backgrounds/solid-color-context-restore-expected.txt: Added. |
| * fast/reflections/inline-crash-expected.txt: Added. |
| * platform/chromium-linux/fast/backgrounds/solid-color-context-restore-expected.png: Added. |
| * platform/chromium-linux/fast/reflections/inline-crash-expected.png: Added. |
| * platform/chromium-win/fast/backgrounds/solid-color-context-restore-expected.png: Added. |
| * platform/chromium-win/fast/backgrounds/solid-color-context-restore-expected.txt: Added. |
| * platform/chromium-win/fast/reflections/inline-crash-expected.png: Added. |
| * platform/chromium-win/fast/reflections/inline-crash-expected.txt: Added. |
| * platform/efl/fast/backgrounds/solid-color-context-restore-expected.txt: Removed. |
| * platform/efl/fast/reflections/inline-crash-expected.txt: Removed. |
| * platform/gtk/fast/backgrounds/solid-color-context-restore-expected.txt: Removed. |
| * platform/gtk/fast/reflections/inline-crash-expected.txt: Removed. |
| |
| 2012-10-05 Bear Travis <betravis@adobe.com> |
| |
| [CSS Exclusions] Add shape-inside tests for rounded rectangles |
| https://bugs.webkit.org/show_bug.cgi?id=96669 |
| |
| Reviewed by Levi Weintraub. |
| |
| Adding multiple rounded rectangle tests. The more complex tests use float "sandbags" |
| to simulate the shape-inside area in the test expectations. |
| (See http://www.alistapart.com/articles/sandbags/) |
| In general, each line has its own pair of left and right floats (both lineHeight tall), |
| to position the text and appropriately limit its width. In the simple, 0 corner radius |
| cases, these floats can be merged because they all have the same width on the left and |
| right. |
| |
| * fast/exclusions/resources/rounded-rectangle.js: Contains functionality for generating |
| a shape-inside, simulating one, and generating content that should roughly fill the |
| shape-inside. |
| (xFromEllipseCenter): The x distance from the center of an ellipse, based on its y |
| distance from center. |
| (xInset): The inset of a rounded rectangle from its bounding box. |
| (generateString): Generate a string that roughly fills a shape-inside's content area. |
| (simulateShape): Create floats to simulate a shape-inside area. |
| (simulateShapeOutline): Create an outline for the rounded rectangle shape-inside. |
| (generateSimulatedShapeElement): Simulate a shape-inside and appropriately fill it |
| with content. |
| (generateShapeElement): Create a shape-inside and fill it with content. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-001-expected.html: |
| Renamed from LayoutTests/fast/exclusions/shape-inside/shape-inside-rounded-rectangle-expected.html. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-001.html: |
| Renamed from LayoutTests/fast/exclusions/shape-inside/shape-inside-rounded-rectangle.html. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-002-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-002.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-003-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-003.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-004-expected.html: Added. |
| * fast/exclusions/shape-inside/shape-inside-rounded-rectangle-004.html: Added. |
| |
| |
| 2012-10-04 Eric Carlson <eric.carlson@apple.com> |
| |
| Allow ports to override text track rendering style |
| https://bugs.webkit.org/show_bug.cgi?id=97800 |
| <rdar://problem/12044964> |
| |
| Reviewed by Silvia Pfeiffer. |
| |
| * media/track/track-cue-rendering-expected.txt: Update results for caption css changes. |
| * media/track/track-cue-rendering.html: |
| * platform/chromium/TestExpectations: Skip tests that need to be rebaselined. |
| |
| 2012-10-05 Takashi Sakamoto <tasak@google.com> |
| |
| Inline continuations create :after generated content on style recalcs |
| https://bugs.webkit.org/show_bug.cgi?id=93170 |
| |
| Reviewed by Abhishek Arya. |
| |
| * fast/css-generated-content/after-with-inline-continuation-expected.html: Added. |
| * fast/css-generated-content/after-with-inline-continuation.html: Added. |
| * fast/css-generated-content/dynamic-apply-after-for-inline-expected.html: Added. |
| * fast/css-generated-content/dynamic-apply-after-for-inline.html: Added. |
| * http/tests/misc/acid3-expected.txt: |
| The acid3-expected.txt has the duplicate RenderBlock (positioned). |
| Two 'layer at(638, 18) size 20x20, ... text run at (0,0) width 20: "X"' |
| exist. So did reset-results for acid3-expected.txt. |
| |
| 2012-10-05 Tony Chang <tony@chromium.org> |
| |
| Fix margin box ascent computation in flexbox |
| https://bugs.webkit.org/show_bug.cgi?id=98540 |
| |
| Reviewed by Ojan Vafai. |
| |
| Remove a FIXME and update the results. |
| |
| * css3/flexbox/flex-align-vertical-writing-mode.html: |
| * css3/flexbox/flex-align.html: |
| |
| 2012-10-05 W. James MacLean <wjmaclean@chromium.org> |
| |
| [chromium] Enhance support for transforms in LinkHighlight. |
| https://bugs.webkit.org/show_bug.cgi?id=94355 |
| |
| Reviewed by Adrienne Walker. |
| |
| Improved handling of transformed highlight targets, where the transform goes beyond simple translation. |
| |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-multi-line.html: Added. |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-rotated-div.html: Added. |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-rotated-link.html: Added. |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-scaledX.html: Added. |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-scaledY.html: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-ZIndex-expected.png: Removed. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-ZIndex-expected.txt: Removed. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-multi-line-expected.png: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-multi-line-expected.txt: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-rotated-div-expected.png: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-rotated-div-expected.txt: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-rotated-link-expected.png: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-rotated-link-expected.txt: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-scaledX-expected.png: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-scaledX-expected.txt: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-scaledY-expected.png: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-scaledY-expected.txt: Added. |
| |
| 2012-10-05 Ojan Vafai <ojan@chromium.org> |
| |
| Deprecated flexboxes subtract scrollbar width/height twice |
| https://bugs.webkit.org/show_bug.cgi?id=98552 |
| |
| Reviewed by Tony Chang. |
| |
| * fast/flexbox/flexing-overflow-scroll-item-expected.txt: Added. |
| * fast/flexbox/flexing-overflow-scroll-item.html: Added. |
| |
| 2012-10-05 Ryosuke Niwa <rniwa@webkit.org> |
| |
| GTK+ and Qt rebaselines after r130532. |
| |
| * platform/chromium-linux-x86/editing/pasteboard/interchange-newline-1-expected.txt: Removed. |
| * platform/chromium-linux-x86/editing/pasteboard/paste-text-002-expected.txt: Removed. |
| * platform/chromium-linux-x86/editing/pasteboard/paste-text-003-expected.txt: Removed. |
| * platform/chromium-linux/editing/pasteboard/interchange-newline-1-expected.txt: Removed. |
| * platform/chromium-linux/editing/pasteboard/paste-text-002-expected.txt: Removed. |
| * platform/chromium-linux/editing/pasteboard/paste-text-003-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/editing/pasteboard/paste-text-002-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/editing/pasteboard/paste-text-003-expected.txt: Removed. |
| * platform/chromium-win-xp/editing/pasteboard/interchange-newline-1-expected.txt: Removed. |
| * platform/chromium-win-xp/editing/pasteboard/paste-text-002-expected.txt: Removed. |
| * platform/chromium-win-xp/editing/pasteboard/paste-text-003-expected.txt: Removed. |
| * platform/chromium-win/editing/pasteboard/interchange-newline-1-expected.txt: Removed. |
| * platform/chromium-win/editing/pasteboard/paste-text-002-expected.txt: Removed. |
| * platform/chromium-win/editing/pasteboard/paste-text-003-expected.txt: Removed. |
| * platform/chromium/svg/custom/delete-text-crash-expected.txt: Removed. |
| * platform/chromium/svg/custom/delete-text-innerText-crash-expected.txt: Removed. |
| * platform/gtk/editing/deleting/delete-block-merge-contents-001-expected.txt: |
| * platform/gtk/editing/pasteboard/interchange-newline-1-expected.txt: Removed. |
| * platform/gtk/editing/pasteboard/merge-end-blockquote-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-text-002-expected.txt: Removed. |
| * platform/gtk/editing/pasteboard/paste-text-003-expected.txt: Removed. |
| * platform/qt/editing/deleting/delete-block-merge-contents-001-expected.txt: |
| * platform/qt/editing/pasteboard/interchange-newline-1-expected.txt: Removed. |
| * platform/qt/editing/pasteboard/merge-end-blockquote-expected.txt: |
| * platform/qt/editing/pasteboard/paste-text-002-expected.txt: Removed. |
| * platform/qt/editing/pasteboard/paste-text-003-expected.txt: Removed. |
| |
| 2012-10-05 Ryosuke Niwa <rniwa@webkit.org> |
| |
| Chromium and Mac rebaselines after r130532. |
| |
| * platform/chromium-linux-x86/editing/pasteboard/interchange-newline-1-expected.txt: Added. |
| * platform/chromium-linux-x86/editing/pasteboard/paste-text-002-expected.txt: Added. |
| * platform/chromium-linux-x86/editing/pasteboard/paste-text-003-expected.txt: Added. |
| * platform/chromium-linux/editing/pasteboard/interchange-newline-1-expected.txt: Added. |
| * platform/chromium-linux/editing/pasteboard/paste-text-002-expected.txt: Added. |
| * platform/chromium-linux/editing/pasteboard/paste-text-003-expected.txt: Added. |
| * platform/chromium-mac-snowleopard/editing/pasteboard/paste-text-002-expected.txt: |
| * platform/chromium-mac-snowleopard/editing/pasteboard/paste-text-003-expected.txt: |
| * platform/chromium-win-xp/editing/pasteboard/interchange-newline-1-expected.txt: Added. |
| * platform/chromium-win-xp/editing/pasteboard/paste-text-002-expected.txt: Added. |
| * platform/chromium-win-xp/editing/pasteboard/paste-text-003-expected.txt: Added. |
| * platform/chromium-win/editing/deleting/delete-block-merge-contents-001-expected.txt: |
| * platform/chromium-win/editing/pasteboard/interchange-newline-1-expected.txt: |
| * platform/chromium-win/editing/pasteboard/merge-end-blockquote-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-text-002-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-text-003-expected.txt: |
| * platform/chromium/svg/custom/delete-text-crash-expected.txt: Added. |
| * platform/chromium/svg/custom/delete-text-innerText-crash-expected.txt: Added. |
| * svg/custom/delete-text-crash-expected.txt: |
| * svg/custom/delete-text-innerText-crash-expected.txt: |
| |
| 2012-10-05 Zan Dobersek <zandobersek@gmail.com> |
| |
| [Gtk] fast/xsl/xslt-missing-namespace-in-xslt.xml is failing on the 64-bit Debug builder |
| https://bugs.webkit.org/show_bug.cgi?id=91009 |
| |
| Reviewed by Martin Robinson. |
| |
| Update the test's baselines. The output now properly shows the error. |
| |
| * platform/gtk/fast/xsl/xslt-missing-namespace-in-xslt-expected.png: |
| * platform/gtk/fast/xsl/xslt-missing-namespace-in-xslt-expected.txt: |
| |
| 2012-10-05 Dirk Pranke <dpranke@chromium.org> |
| |
| Fix lint error in TestExpectations from previous change. |
| |
| Unreviewed. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-05 Dirk Pranke <dpranke@chromium.org> |
| |
| [chromium] tests failing after r130443. |
| https://bugs.webkit.org/show_bug.cgi?id=98545 |
| |
| Unreviewed, expectations change. |
| |
| [chromium] fast/text/international/text-spliced-font.html and |
| fast/writing-mode/Kusa-Makura-background-canvas.html are failing on |
| the Mac after r130443 and we're not quite sure why ... |
| |
| * platform/chromium-linux/fast/text/vertical-rl-rtl-linebreak-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/text/vertical-rl-rtl-linebreak-expected.png: Added. |
| * platform/chromium-mac/fast/text/vertical-rl-rtl-linebreak-expected.png: Added. |
| * platform/chromium-mac/fast/text/vertical-rl-rtl-linebreak-expected.txt: Added. |
| * platform/chromium-win/fast/text/vertical-rl-rtl-linebreak-expected.png: Added. |
| * platform/chromium-win/fast/text/vertical-rl-rtl-linebreak-expected.txt: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-05 W. James MacLean <wjmaclean@chromium.org> |
| |
| [chromium] Modify gesture highlight behaviour. Cancel on GestureLongPress and animate on GestureTapCancel. |
| https://bugs.webkit.org/show_bug.cgi?id=97355 |
| |
| Reviewed by Adrienne Walker. |
| |
| This patch revises the behaviour of GestureTapDown highlighting so that the highlight should disappear if |
| interrupted by GestureTap, and animate away if interrupted by GestureTapCancel. |
| |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel.html: removed extra testRunner.display(). |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel2.html: Added. |
| * platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-longPress.html: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel2-expected.png: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel2-expected.txt: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-longPress-expected.png: Added. |
| * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-longPress-expected.txt: Added. |
| |
| 2012-10-05 Jer Noble <jer.noble@apple.com> |
| |
| REGRESSION (r129478-r129480): http/tests/loading/text-content-type-with-binary-extension.html failing on Apple MountainLion Debug WK2 (Tests) |
| https://bugs.webkit.org/show_bug.cgi?id=98527 |
| |
| Unreviewed gardening after r129479. |
| |
| * platform/mac-wk2/TestExpectations: |
| |
| 2012-10-05 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Removing failure expectation for fast/text/vertical-rl-rtl-linebreak.html |
| since the test only needed platform-specific baselines (which were added |
| in r130524). |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-05 Ojan Vafai <ojan@chromium.org> |
| |
| Have perf test assert worst order of magnitude |
| https://bugs.webkit.org/show_bug.cgi?id=98535 |
| |
| Reviewed by Tony Chang. |
| |
| Really we only care if tests get order of magnitude slower. |
| Assert that tests are at least a certain magnitude. |
| Hopefully this will reduce flakiness some. |
| |
| * resources/magnitude-perf.js: |
| (Magnitude._run): |
| |
| 2012-10-05 Ryosuke Niwa <rniwa@webkit.org> |
| |
| Deleting across multiple paragraphs can change the style of surrounding text |
| https://bugs.webkit.org/show_bug.cgi?id=97266 |
| |
| Reviewed by Levi Weintraub. |
| |
| Added a regression test and rebaselined tests. |
| |
| * editing/deleting/delete-before-block-image-2-expected.txt: |
| * editing/deleting/merge-paragraph-from-p-with-style-expected.txt: |
| * editing/deleting/merge-paragraph-from-p-with-style.html: We changed the behavior. The editing style of p |
| is now preserved when merging paragraphs. |
| * editing/deleting/merge-paragraph-with-style-from-rule-expected.txt: Added. |
| * editing/deleting/merge-paragraph-with-style-from-rule.html: Added. |
| * platform/mac/editing/deleting/delete-block-merge-contents-001-expected.txt: |
| * platform/mac/editing/pasteboard/merge-end-blockquote-expected.txt: |
| |
| 2012-10-05 Julien Chaffraix <jchaffraix@webkit.org> |
| |
| Unreviewed rebaseline after r130355. |
| |
| r130447 forgot to update the Snow Leopard pixel baselines. The only differences are due to a different font used. |
| |
| * platform/chromium-mac-snowleopard/fast/clip/overflow-border-radius-combinations-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/clip/overflow-border-radius-fixed-position-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/clip/overflow-border-radius-transformed-expected.png: Added. |
| |
| 2012-10-05 Ojan Vafai <ojan@chromium.org> |
| |
| Add expected result accidentally left out of http://trac.webkit.org/changeset/130337. |
| * perf/adding-radio-buttons-expected.txt: |
| |
| 2012-10-05 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding platform-specific baselines after r130443 and r130489. |
| |
| * platform/gtk/fast/repaint/box-shadow-inset-repaint-expected.png: Added. |
| * platform/gtk/fast/repaint/box-shadow-inset-repaint-expected.txt: Added. |
| * platform/gtk/fast/text/vertical-rl-rtl-linebreak-expected.png: Added. |
| * platform/gtk/fast/text/vertical-rl-rtl-linebreak-expected.txt: Added. |
| |
| 2012-10-05 Christophe Dumez <christophe.dumez@intel.com> |
| |
| [WK2][WKTR] Implement UIClient focus callbacks in WebKitTestRunner |
| https://bugs.webkit.org/show_bug.cgi?id=98256 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskip fast/dom/Window/mozilla-focus-blur.html now that |
| WebKitTestRunner implements UIClient's focus callbacks. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-05 Ryosuke Niwa <rniwa@webkit.org> |
| |
| Remove wrong expectations added in r130452. |
| |
| * platform/chromium-win-xp/editing/pasteboard/5006779-expected.png: Removed. |
| * platform/chromium-win-xp/editing/pasteboard/5006779-expected.txt: Removed. |
| |
| 2012-10-05 Alexander Pavlov <apavlov@chromium.org> |
| |
| Web Inspector: [Styles] Unable to edit properties in broken stylesheets |
| https://bugs.webkit.org/show_bug.cgi?id=98246 |
| |
| Reviewed by Vsevolod Vlasov. |
| |
| A small refactoring to share the CSS style data dumping code among tests. |
| |
| * http/tests/inspector/elements-test.js: |
| (initialize_ElementTest): |
| * inspector/styles/parse-stylesheet-errors-expected.txt: Added. |
| * inspector/styles/parse-stylesheet-errors.html: Added. |
| * inspector/styles/styles-new-API.html: |
| |
| 2012-10-05 Jer Noble <jer.noble@apple.com> |
| |
| [Mac] REGRESSION (r130411-r130414): fast/images/repaint-subrect-grid.html failing on Apple MountainLion Debug WK2 (Tests) |
| https://bugs.webkit.org/show_bug.cgi?id=98523 |
| |
| Unreviewed gardening after r130414. |
| |
| * platform/mac/TestExpectations: |
| |
| 2012-10-05 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Updates expected test results for the expanded coverage in testfonts |
| https://bugs.webkit.org/show_bug.cgi?id=98425 |
| |
| Unreviewed gardening after r130502. |
| |
| * platform/qt/css2.1/t0805-c5519-brdr-r-01-e-expected.png: |
| * platform/qt/css2.1/t0805-c5519-brdr-r-01-e-expected.txt: |
| * platform/qt/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: |
| * platform/qt/css2.1/t0905-c5525-fltblck-00-d-ag-expected.txt: |
| * platform/qt/fast/images/icon-decoding-expected.png: Added. |
| * platform/qt/fast/images/icon-decoding-expected.txt: |
| * platform/qt/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: |
| * platform/qt/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: |
| |
| 2012-10-05 Sadrul Habib Chowdhury <sadrul@chromium.org> |
| |
| [chromium] Allow dragging into plugins. |
| https://bugs.webkit.org/show_bug.cgi?id=98277 |
| |
| Reviewed by Tony Chang. |
| |
| Add test to make sure that plugins receive the drag events correctly. |
| |
| * platform/chromium/plugins/drag-events-expected.txt: Added. |
| * platform/chromium/plugins/drag-events.html: Added. |
| |
| 2012-10-05 Marcelo Lira <marcelo.lira@openbossa.org> |
| |
| [Qt] Updates expected test results for the expanded coverage in testfonts |
| https://bugs.webkit.org/show_bug.cgi?id=98425 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| The Qt testfonts repository was expanded with the croscore set of |
| fonts, which provides a great number of new glyphs (e.g. hebrew |
| characters). |
| |
| See the comments in the testfonts commit for detailed information: |
| https://gitorious.org/qtwebkit/testfonts/commit/f11a54548121ee9fb0688dc6f32acdbfec5d2d2f/diffs |
| |
| * platform/qt-5.0/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: Removed. |
| * platform/qt-5.0/css2.1/t0905-c5525-fltblck-00-d-ag-expected.txt: Removed. |
| * platform/qt-5.0/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Removed. |
| * platform/qt-5.0/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Removed. |
| * platform/qt-5.0/fast/forms/search-rtl-expected.png: Removed. |
| * platform/qt-5.0/fast/forms/search-rtl-expected.txt: Removed. |
| * platform/qt/css2.1/t0805-c5519-brdr-r-01-e-expected.png: |
| * platform/qt/css2.1/t0805-c5519-brdr-r-01-e-expected.txt: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: |
| * platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: |
| * platform/qt/fast/borders/bidi-012-expected.txt: |
| * platform/qt/fast/forms/listbox-bidi-align-expected.png: |
| * platform/qt/fast/forms/listbox-bidi-align-expected.txt: |
| * platform/qt/fast/forms/search-rtl-expected.png: |
| * platform/qt/fast/forms/search-rtl-expected.txt: |
| * platform/qt/fast/text/atsui-small-caps-punctuation-size-expected.txt: |
| * platform/qt/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: |
| * platform/qt/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: |
| * platform/qt/fast/text/large-text-composed-char-expected.png: |
| * platform/qt/svg/custom/glyph-selection-bidi-mirror-expected.png: |
| * platform/qt/svg/custom/glyph-selection-bidi-mirror-expected.txt: |
| |
| 2012-10-05 Allan Sandfeld Jensen <allan.jensen@digia.com> |
| |
| Unreviewed Qt gardening. |
| |
| The ICO decoder shouldn't be broken since it is the WebKit decoder. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-05 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, update an expected file for newer Qt5. |
| |
| * platform/qt/fast/text/atsui-small-caps-punctuation-size-expected.png: |
| * platform/qt/fast/text/atsui-small-caps-punctuation-size-expected.txt: |
| |
| 2012-10-05 Andrei Bucur <abucur@adobe.com> |
| |
| Incomplete repaint of boxes with inset box-shadow and padding when resized |
| https://bugs.webkit.org/show_bug.cgi?id=59863 |
| |
| Reviewed by Simon Fraser. |
| |
| The patch adds a new pixel test and expected PNG results for mac and chromium-mac. The test fails on Chromium Linux EWS (and maybe others) |
| so I've added a rule in the TestExpectations file. |
| |
| * platform/chromium/TestExpectations: |
| * fast/repaint/box-shadow-inset-repaint.html: Added. |
| * platform/chromium-mac/fast/repaint/box-shadow-inset-repaint-expected.png: Added. |
| * platform/mac/fast/repaint/box-shadow-inset-repaint-expected.png: Added. |
| * platform/mac/fast/repaint/box-shadow-inset-repaint-expected.txt: Added. |
| |
| 2012-10-05 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Updating platform-specific baselines after r130411. |
| Removing platform-specific baselines for CSS compositing tests |
| and skipping these tests entirely as the feature is not yet enabled |
| on the GTK port. |
| |
| * platform/gtk/TestExpectations: |
| * platform/gtk/css3/compositing: Removed. |
| * platform/gtk/css3/compositing/blend-mode-property-expected.txt: Removed. |
| * platform/gtk/css3/compositing/blend-mode-property-parsing-expected.txt: Removed. |
| * platform/gtk/editing/deleting/delete-block-merge-contents-020-expected.txt: |
| * platform/gtk/editing/execCommand/paste-1-expected.txt: |
| * platform/gtk/editing/pasteboard/8145-3-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-line-endings-007-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-match-style-001-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-text-009-expected.txt: |
| * platform/gtk/editing/pasteboard/smart-paste-007-expected.txt: |
| * platform/gtk/editing/pasteboard/unrendered-br-expected.txt: |
| |
| 2012-10-05 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Enable CSS compositing by default |
| https://bugs.webkit.org/show_bug.cgi?id=98490 |
| |
| Reviewed by Simon Hausmann. |
| |
| * platform/qt/css3/compositing/should-have-compositing-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/compositing/should-have-compositing-layer-expected.txt. |
| |
| 2012-10-05 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Test expectation update |
| https://bugs.webkit.org/show_bug.cgi?id=98481 |
| |
| r130477 affects month-multiple-fields tests too. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-05 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r130466. |
| http://trac.webkit.org/changeset/130466 |
| https://bugs.webkit.org/show_bug.cgi?id=98495 |
| |
| It made 12 tests crash on Qt-WK2 (Requested by Ossy on |
| #webkit). |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-05 Kent Tamura <tkent@chromium.org> |
| |
| Add appearance tests for input[type=date] with multiple fields |
| https://bugs.webkit.org/show_bug.cgi?id=98479 |
| |
| Reviewed by Kentaro Hara. |
| |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements.html: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.txt: Added. |
| * fast/forms/date-multiple-fields/date-multiple-fields-appearance-style.html: Added. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-basic-expected.png: Added. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-classes-expected.png: Added. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-pseudo-elements-expected.png: Added. |
| * platform/chromium-mac/fast/forms/date-multiple-fields/date-multiple-fields-appearance-style-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-04 Kent Tamura <tkent@chromium.org> |
| |
| Fix sub-field width to the maximum width of a placeholder and the maximum value |
| https://bugs.webkit.org/show_bug.cgi?id=98481 |
| |
| Reviewed by Hajime Morita. |
| |
| Update a test and test expectations. |
| |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.txt: |
| * fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic.html: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-basic-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-classes-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-pseudo-elements-expected.png: |
| * platform/chromium-mac/fast/forms/week-multiple-fields/week-multiple-fields-appearance-style-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-05 Kangil Han <kangil.han@samsung.com> |
| |
| [EFL][WK2][WTR] Unskip parser-tests-110.html test case. |
| https://bugs.webkit.org/show_bug.cgi?id=98484 |
| |
| Unreviewed EFL gardening. |
| |
| fast/encoding/parser-tests-110.html test case has been passed consistently. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-05 Nandor Huszka <hnandor@inf.u-szeged.hu> |
| |
| [Qt] Gardening, skip some failing test. |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-05 Christophe Dumez <christophe.dumez@intel.com> |
| |
| [EFL] Fix window resizing / moving in WK1 and WKTR |
| https://bugs.webkit.org/show_bug.cgi?id=98486 |
| |
| Reviewed by Gyuyoung Kim. |
| |
| Unskip 2 window resizing / moving tests now that |
| the implementation for those has been fixed in |
| WebKit1 EFL. |
| |
| * platform/efl-wk1/TestExpectations: |
| |
| 2012-10-04 Kunihiko Sakamoto <ksakamoto@chromium.org> |
| |
| <input> size attribute should throw INDEX_SIZE_ERR when set to 0 |
| https://bugs.webkit.org/show_bug.cgi?id=61675 |
| |
| Reviewed by Kent Tamura. |
| |
| Added test case to verify that input.size throws INDEX_SIZE_ERR when set to 0. |
| |
| Updated fast/forms/number/number-size.html to reflect new behavior. |
| |
| * fast/dom/HTMLInputElement/input-size-attribute-expected.txt: |
| * fast/dom/HTMLInputElement/input-size-attribute.html: |
| * fast/forms/number/number-size.html: |
| * fast/forms/number/number-size-expected.txt: |
| |
| 2012-10-04 Christophe Dumez <christophe.dumez@intel.com> |
| |
| [WK2][WKTR] Implement UIClient focus callbacks in WebKitTestRunner |
| https://bugs.webkit.org/show_bug.cgi?id=98256 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskip fast/dom/Window/mozilla-focus-blur.html now that |
| WebKitTestRunner implements UIClient's focus callbacks. |
| |
| * platform/efl-wk2/TestExpectations: |
| |
| 2012-10-04 Rik Cabanier <cabanier@adobe.com> |
| |
| Turn Compositing on by default in WebKit build |
| https://bugs.webkit.org/show_bug.cgi?id=98315 |
| |
| Reviewed by Simon Fraser. |
| |
| enable -webkit-blend-mode on trunk. |
| |
| * css3/compositing/blend-mode-property-expected.txt: |
| * css3/compositing/blend-mode-property-parsing-expected.txt: |
| * css3/compositing/script-tests/blend-mode-property.js: |
| (testblendmode): |
| * css3/compositing/should-have-compositing-layer-expected.txt: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-04 Kent Tamura <tkent@chromium.org> |
| |
| Update some picker tests for input[type=date] |
| https://bugs.webkit.org/show_bug.cgi?id=98390 |
| |
| Follow up of r130433. We still need offsetTop access. |
| |
| * fast/forms/date/calendar-picker-common.js: |
| (openPicker): |
| * fast/forms/resources/suggestion-picker-common.js: |
| (openPicker): |
| * platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl.html: |
| Remove unnecessary width style. |
| |
| 2012-10-04 Tony Chang <tony@chromium.org> |
| |
| Convert some flexbox tests to run in mozilla |
| https://bugs.webkit.org/show_bug.cgi?id=98464 |
| |
| Reviewed by Ojan Vafai. |
| |
| Move properties with a small number of values into resources/flexbox.css |
| and start using it in some flexbox tests. |
| |
| * css3/flexbox/align-absolute-child.html: |
| * css3/flexbox/align-baseline-expected.html: |
| * css3/flexbox/align-baseline.html: |
| * css3/flexbox/anonymous-block-merge-crash.html: |
| * css3/flexbox/anonymous-block.html: |
| * css3/flexbox/auto-height-dynamic.html: |
| * css3/flexbox/auto-margins.html: |
| * css3/flexbox/box-sizing-min-max-sizes.html: |
| * css3/flexbox/box-sizing.html: |
| * css3/flexbox/child-overflow-expected.html: |
| * css3/flexbox/child-overflow.html: |
| * css3/flexbox/columns-auto-size.html: |
| * css3/flexbox/columns-height-set-via-top-bottom.html: |
| * css3/flexbox/content-height-with-scrollbars.html: |
| * css3/flexbox/cross-axis-scrollbar.html: |
| * css3/flexbox/flex-algorithm-min-max.html: |
| * css3/flexbox/flex-algorithm-with-margins.html: |
| * css3/flexbox/flex-algorithm.html: |
| * css3/flexbox/resources/flexbox.css: Added. |
| |
| 2012-10-04 Dirk Pranke <dpranke@chromium.org> |
| |
| Update chromium baselines for 5006779.html and paint-subrect-grid.html. |
| |
| Unreviewed, rebaselining. |
| |
| Updates after r130425 and r130411. |
| |
| * platform/chromium-linux/fast/images/paint-subrect-grid-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/images/paint-subrect-grid-expected.png. |
| * platform/chromium-win-xp/editing/pasteboard/5006779-expected.png: Added. |
| * platform/chromium-win-xp/editing/pasteboard/5006779-expected.txt: Copied from LayoutTests/platform/chromium-win/editing/pasteboard/5006779-expected.txt. |
| * platform/chromium-win/editing/pasteboard/5006779-expected.txt: |
| * platform/chromium/fast/images/paint-subrect-grid-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/images/paint-subrect-grid-expected.png. |
| |
| 2012-10-04 Douglas Stockwell <dstockwell@chromium.org> |
| |
| [chromium] Unreviewed. Rebaseline mac/win results after r130355 |
| https://bugs.webkit.org/show_bug.cgi?id=98472 |
| |
| * platform/chromium-mac-snowleopard/fast/clip/overflow-border-radius-combinations-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/clip/overflow-border-radius-fixed-position-expected.png: Added. |
| * platform/chromium-mac-snowleopard/fast/clip/overflow-border-radius-transformed-expected.png: Added. |
| * platform/chromium-mac-snowleopard/http/tests/media/video-buffered-range-contains-currentTime-expected.png: |
| * platform/chromium-mac-snowleopard/media/audio-controls-rendering-expected.png: |
| * platform/chromium-mac-snowleopard/media/audio-repaint-expected.png: |
| * platform/chromium-mac-snowleopard/media/controls-after-reload-expected.png: |
| * platform/chromium-mac-snowleopard/media/controls-strict-expected.png: |
| * platform/chromium-mac-snowleopard/media/controls-styling-expected.png: |
| * platform/chromium-mac-snowleopard/media/controls-styling-strict-expected.png: |
| * platform/chromium-mac-snowleopard/media/controls-without-preload-expected.png: |
| * platform/chromium-mac-snowleopard/media/track/track-cue-rendering-horizontal-expected.png: |
| * platform/chromium-mac-snowleopard/media/track/track-cue-rendering-vertical-expected.png: |
| * platform/chromium-mac-snowleopard/media/video-controls-rendering-expected.png: |
| * platform/chromium-mac-snowleopard/media/video-display-toggle-expected.png: |
| * platform/chromium-mac-snowleopard/media/video-no-audio-expected.png: |
| * platform/chromium-mac-snowleopard/media/video-playing-and-pause-expected.png: |
| * platform/chromium-mac/fast/clip/overflow-border-radius-combinations-expected.png: |
| * platform/chromium-mac/fast/clip/overflow-border-radius-fixed-position-expected.png: |
| * platform/chromium-mac/fast/clip/overflow-border-radius-transformed-expected.png: |
| * platform/chromium-mac/http/tests/media/video-buffered-range-contains-currentTime-expected.png: |
| * platform/chromium-mac/media/audio-controls-rendering-expected.png: |
| * platform/chromium-mac/media/audio-repaint-expected.png: |
| * platform/chromium-mac/media/controls-after-reload-expected.png: |
| * platform/chromium-mac/media/controls-strict-expected.png: |
| * platform/chromium-mac/media/controls-styling-expected.png: |
| * platform/chromium-mac/media/controls-styling-strict-expected.png: |
| * platform/chromium-mac/media/controls-without-preload-expected.png: |
| * platform/chromium-mac/media/track/track-cue-rendering-horizontal-expected.png: |
| * platform/chromium-mac/media/track/track-cue-rendering-vertical-expected.png: |
| * platform/chromium-mac/media/video-controls-rendering-expected.png: |
| * platform/chromium-mac/media/video-display-toggle-expected.png: |
| * platform/chromium-mac/media/video-no-audio-expected.png: |
| * platform/chromium-mac/media/video-playing-and-pause-expected.png: |
| * platform/chromium-mac/media/video-zoom-controls-expected.png: |
| * platform/chromium-win-xp/media/track/track-cue-rendering-vertical-expected.png: |
| * platform/chromium-win/fast/clip/overflow-border-radius-combinations-expected.png: |
| * platform/chromium-win/fast/clip/overflow-border-radius-fixed-position-expected.png: |
| * platform/chromium-win/fast/clip/overflow-border-radius-transformed-expected.png: |
| * platform/chromium-win/http/tests/media/video-buffered-range-contains-currentTime-expected.png: |
| * platform/chromium-win/media/audio-controls-rendering-expected.png: |
| * platform/chromium-win/media/audio-repaint-expected.png: |
| * platform/chromium-win/media/controls-after-reload-expected.png: |
| * platform/chromium-win/media/controls-strict-expected.png: |
| * platform/chromium-win/media/controls-styling-expected.png: |
| * platform/chromium-win/media/controls-styling-strict-expected.png: |
| * platform/chromium-win/media/controls-without-preload-expected.png: |
| * platform/chromium-win/media/track/track-cue-rendering-horizontal-expected.png: |
| * platform/chromium-win/media/track/track-cue-rendering-vertical-expected.png: |
| * platform/chromium-win/media/video-controls-rendering-expected.png: |
| * platform/chromium-win/media/video-display-toggle-expected.png: |
| * platform/chromium-win/media/video-no-audio-expected.png: |
| * platform/chromium-win/media/video-playing-and-pause-expected.png: |
| * platform/chromium-win/media/video-zoom-controls-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-04 Enrica Casucci <enrica@apple.com> |
| |
| Font::glyphDataAndPageForCharacter doesn't account for text orientation when using systemFallback on a cold cache. |
| https://bugs.webkit.org/show_bug.cgi?id=98452. |
| |
| Reviewed by Dan Bernstein. |
| |
| The new test adds platform specific results for Mac, since it uses system fallback fonts. |
| I've added the expected failure for all the other platforms. |
| |
| * fast/text/vertical-rl-rtl-linebreak.html: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/fast/text/vertical-rl-rtl-linebreak-expected.txt: Added. |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-04 Adam Klein <adamk@chromium.org> |
| |
| MutationRecord attributeName should be null for non attribute changes |
| https://bugs.webkit.org/show_bug.cgi?id=98438 |
| |
| Reviewed by Ojan Vafai. |
| |
| * fast/mutation/mutation-record-nullity-expected.txt: Added. |
| * fast/mutation/mutation-record-nullity.html: Added. |
| |
| 2012-10-04 Ryosuke Niwa <rniwa@webkit.org> |
| |
| More Qt rebaselines after r130411. |
| |
| * platform/qt/editing/deleting/delete-block-merge-contents-020-expected.txt: |
| * platform/qt/editing/deleting/delete-block-merge-contents-021-expected.txt: |
| * platform/qt/editing/pasteboard/5006779-expected.txt: |
| * platform/qt/editing/pasteboard/paste-line-endings-007-expected.txt: |
| * platform/qt/editing/pasteboard/paste-line-endings-008-expected.txt: |
| * platform/qt/editing/pasteboard/smart-paste-004-expected.txt: Removed. |
| |
| 2012-10-04 Ryosuke Niwa <rniwa@webkit.org> |
| |
| GTK+ rebaselines after r130411. |
| |
| * platform/gtk/editing/deleting/delete-block-merge-contents-018-expected.txt: |
| * platform/gtk/editing/deleting/delete-block-merge-contents-019-expected.txt: |
| * platform/gtk/editing/deleting/delete-block-merge-contents-020-expected.txt: |
| * platform/gtk/editing/deleting/delete-block-merge-contents-021-expected.txt: |
| * platform/gtk/editing/deleting/delete-block-merge-contents-022-expected.txt: |
| * platform/gtk/editing/deleting/merge-no-br-expected.txt: |
| * platform/gtk/editing/execCommand/find-after-replace-expected.txt: |
| * platform/gtk/editing/execCommand/paste-2-expected.txt: |
| * platform/gtk/editing/pasteboard/4944770-2-expected.txt: |
| * platform/gtk/editing/pasteboard/5006779-expected.txt: |
| * platform/gtk/editing/pasteboard/5028447-expected.txt: |
| * platform/gtk/editing/pasteboard/drag-drop-modifies-page-expected.txt: |
| * platform/gtk/editing/pasteboard/merge-end-borders-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-line-endings-008-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-line-endings-009-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-line-endings-010-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-text-008-expected.txt: |
| * platform/gtk/editing/pasteboard/paste-xml-expected.txt: |
| * platform/gtk/editing/pasteboard/smart-drag-drop-expected.txt: |
| * platform/gtk/editing/pasteboard/subframe-dragndrop-1-expected.txt: |
| * platform/gtk/fast/lists/drag-into-marker-expected.txt: |
| |
| 2012-10-04 Tab Atkins <tabatkins@google.com> |
| |
| 1ex should equal .5em when the font has no x-height metric |
| https://bugs.webkit.org/show_bug.cgi?id=80360 |
| |
| Reviewed by Eric Seidel. |
| |
| If a font has no x-height metric, 1ex should equal .5em. |
| |
| Test layout tweaked by David Barr <davidbarr@chromium.org>. |
| |
| * fast/css/ex-unit-with-no-x-height-expected.txt: Added. |
| * fast/css/ex-unit-with-no-x-height.html: Added. |
| |
| 2012-10-04 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] New test introduced in r129346 inspector-protocol/css-getSupportedCSSProperties.html fails |
| https://bugs.webkit.org/show_bug.cgi?id=97451 |
| |
| Reviewed by Kenneth Rohde Christiansen. |
| |
| Unskipping this test that is passing. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-04 Kent Tamura <tkent@chromium.org> |
| |
| Update some picker tests for input[type=date] |
| https://bugs.webkit.org/show_bug.cgi?id=98390 |
| |
| Reviewed by Daniel Bates. |
| |
| r130375 changed a behavior. A key bind to open a calendar picker |
| or a suggestion picker was changed from "Down" to "Alt + Down". We |
| need to update tests which open pickers for input[type=date]. |
| |
| * fast/forms/date/calendar-picker-appearance-expected.txt: |
| * fast/forms/date/calendar-picker-appearance-pre-100.html: |
| Use openPicker() in calendar-picker-common.js. |
| * fast/forms/date/calendar-picker-appearance.html: Ditto. |
| * fast/forms/date/calendar-picker-common.js: |
| (openPicker): Specify Alt modifier. |
| (sendKey): Add ctrlKey and altKey flags. |
| * fast/forms/date/calendar-picker-with-step.html: |
| Use openPicker() in calendar-picker-common.js. |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/forms/date/date-suggestion-picker-appearance-rtl.html: |
| Use openPicker() in suggestion-picker-common.js |
| * platform/chromium/fast/forms/date/date-suggestion-picker-appearance-with-scroll-bar.html: |
| Ditto. |
| * platform/chromium/fast/forms/date/date-suggestion-picker-appearance.html: |
| Ditto. |
| * platform/chromium/fast/forms/date/date-suggestion-picker-key-operations-expected.txt: |
| * platform/chromium/fast/forms/date/date-suggestion-picker-key-operations.html: |
| Use openPicker() and sendKey() in suggestion-picker-common.js. |
| Increase the internal timeout because it was too short on my machine. |
| |
| 2012-10-04 Alpha Lam <hclam@chromium.org> |
| |
| Unreviewed. Chromium rebaselines. |
| |
| Rebaseline pixel results after r130412. |
| |
| * platform/chromium-mac-snowleopard/scrollbars/listbox-scrollbar-combinations-expected.png: |
| * platform/chromium-mac/scrollbars/listbox-scrollbar-combinations-expected.png: |
| |
| 2012-10-04 Ryosuke Niwa <rniwa@webkit.org> |
| |
| Another rebaseline needed after r130411. |
| |
| * platform/mac/editing/pasteboard/5006779-expected.txt: |
| |
| 2012-10-04 Christophe Dumez <christophe.dumez@intel.com> |
| |
| [EFL] Add libxml 2.8.0 to jhbuild |
| https://bugs.webkit.org/show_bug.cgi?id=98418 |
| |
| Reviewed by Laszlo Gombos. |
| |
| Unskip fast/xsl/xslt-missing-namespace-in-xslt.xml |
| since it passes with libxml 2.8.0 and we now depend |
| on that version. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-04 Tony Chang <tony@chromium.org> |
| |
| Unreviewed gardening. Landing render tree results for css3/flexbox/flexbox-baseline.html. |
| https://bugs.webkit.org/show_bug.cgi?id=98306 |
| |
| This pixel test was added in r130405. |
| |
| * platform/chromium-mac-snowleopard/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/chromium-mac/css3/flexbox/flexbox-baseline-expected.txt: Added. |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/chromium-win/css3/flexbox/flexbox-baseline-expected.txt: Copied from LayoutTests/platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.txt. |
| * platform/chromium/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/gtk/css3/flexbox/flexbox-baseline-expected.txt: Added. |
| * platform/mac/TestExpectations: |
| * platform/mac/css3/flexbox/flexbox-baseline-expected.txt: Added. |
| * platform/qt/TestExpectations: |
| * platform/qt/css3/flexbox/flexbox-baseline-expected.txt: Renamed from LayoutTests/platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.txt. |
| |
| 2012-10-04 Alpha Lam <hclam@chromium.org> |
| |
| Unreviewed. Chromium rebaselines. |
| |
| * platform/chromium-mac/fast/images/paint-subrect-grid-expected.png: Copied from LayoutTests/platform/chromium/fast/images/paint-subrect-grid-expected.png. |
| * platform/chromium-win/fast/images/paint-subrect-grid-expected.png: Renamed from LayoutTests/platform/chromium/fast/images/paint-subrect-grid-expected.png. |
| |
| 2012-10-04 Ryosuke Niwa <rniwa@webkit.org> |
| |
| Chromium rebaselines after r130411. |
| |
| * platform/chromium-linux-x86/editing/pasteboard/paste-xml-expected.txt: |
| * platform/chromium-linux/editing/pasteboard/4944770-2-expected.txt: |
| * platform/chromium-linux/editing/pasteboard/paste-xml-expected.txt: |
| * platform/chromium-linux/editing/pasteboard/smart-drag-drop-expected.txt: |
| * platform/chromium-linux/editing/pasteboard/subframe-dragndrop-1-expected.txt: |
| * platform/chromium-mac-snowleopard/editing/pasteboard/paste-text-008-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/editing/pasteboard/paste-xml-expected.txt: Added. |
| * platform/chromium-mac/editing/pasteboard/paste-xml-expected.txt: |
| * platform/chromium-win-xp/editing/pasteboard/paste-xml-expected.txt: |
| * platform/chromium-win/editing/deleting/delete-block-merge-contents-018-expected.txt: |
| * platform/chromium-win/editing/deleting/delete-block-merge-contents-019-expected.txt: |
| * platform/chromium-win/editing/deleting/delete-block-merge-contents-020-expected.txt: |
| * platform/chromium-win/editing/deleting/delete-block-merge-contents-021-expected.txt: |
| * platform/chromium-win/editing/deleting/delete-block-merge-contents-022-expected.txt: |
| * platform/chromium-win/editing/deleting/merge-no-br-expected.txt: |
| * platform/chromium-win/editing/execCommand/find-after-replace-expected.txt: |
| * platform/chromium-win/editing/execCommand/paste-1-expected.txt: |
| * platform/chromium-win/editing/execCommand/paste-2-expected.txt: |
| * platform/chromium-win/editing/pasteboard/4944770-2-expected.txt: |
| * platform/chromium-win/editing/pasteboard/5028447-expected.txt: |
| * platform/chromium-win/editing/pasteboard/8145-3-expected.txt: |
| * platform/chromium-win/editing/pasteboard/drag-drop-modifies-page-expected.txt: |
| * platform/chromium-win/editing/pasteboard/merge-end-borders-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-line-endings-007-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-line-endings-008-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-line-endings-009-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-line-endings-010-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-match-style-001-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-text-008-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-text-009-expected.txt: |
| * platform/chromium-win/editing/pasteboard/paste-xml-expected.txt: |
| * platform/chromium-win/editing/pasteboard/smart-paste-007-expected.txt: |
| * platform/chromium-win/editing/pasteboard/subframe-dragndrop-1-expected.txt: |
| * platform/chromium-win/editing/pasteboard/unrendered-br-expected.txt: |
| * platform/chromium-win/fast/lists/drag-into-marker-expected.txt: |
| |
| 2012-10-04 Pravin D <pravind.2k4@gmail.com> |
| |
| Layout broken after cloning and re-inserting a table with a misplaced <form> |
| https://bugs.webkit.org/show_bug.cgi?id=86746 |
| |
| Reviewed by Julien Chaffraix. |
| |
| * fast/table/form-with-non-table-display-inside-table-elements-expected.txt: Added. |
| * fast/table/form-with-non-table-display-inside-table-elements.html: Added. |
| |
| 2012-10-04 Ryosuke Niwa <rniwa@webkit.org> |
| |
| Qt rebaseline after r130411. |
| |
| * platform/qt/editing/deleting/delete-block-merge-contents-018-expected.txt: |
| * platform/qt/editing/deleting/delete-block-merge-contents-019-expected.txt: |
| * platform/qt/editing/deleting/delete-block-merge-contents-022-expected.txt: |
| * platform/qt/editing/deleting/merge-no-br-expected.txt: |
| * platform/qt/editing/execCommand/find-after-replace-expected.txt: |
| * platform/qt/editing/execCommand/paste-1-expected.txt: |
| * platform/qt/editing/execCommand/paste-2-expected.txt: |
| * platform/qt/editing/pasteboard/4944770-2-expected.txt: |
| * platform/qt/editing/pasteboard/5006779-expected.txt: |
| * platform/qt/editing/pasteboard/5028447-expected.txt: |
| * platform/qt/editing/pasteboard/8145-3-expected.txt: |
| * platform/qt/editing/pasteboard/merge-end-borders-expected.txt: |
| * platform/qt/editing/pasteboard/paste-line-endings-009-expected.txt: |
| * platform/qt/editing/pasteboard/paste-line-endings-010-expected.txt: |
| * platform/qt/editing/pasteboard/paste-match-style-001-expected.txt: |
| * platform/qt/editing/pasteboard/paste-text-008-expected.txt: |
| * platform/qt/editing/pasteboard/paste-text-009-expected.txt: |
| * platform/qt/editing/pasteboard/smart-paste-007-expected.txt: |
| * platform/qt/editing/pasteboard/unrendered-br-expected.txt: |
| |
| 2012-10-04 Dean Jackson <dino@apple.com> |
| |
| Attribute and Uniform variable names need translation in shader |
| https://bugs.webkit.org/show_bug.cgi?id=70989 |
| |
| Reviewed by Tim Horton (and Darin Adler). |
| |
| Added subtests to exercise variables that are well under the limits but |
| not long enough to produce an error. This way we now test all three options: |
| under the limit, at the limit, over the limit. |
| |
| Also, the tests are unskipped on Mac. |
| |
| * fast/canvas/webgl/attrib-location-length-limits-expected.txt: |
| * fast/canvas/webgl/attrib-location-length-limits.html: |
| * fast/canvas/webgl/uniform-location-length-limits-expected.txt: |
| * fast/canvas/webgl/uniform-location-length-limits.html: |
| * platform/mac/TestExpectations: |
| |
| 2012-10-03 Benjamin Poulain <bpoulain@apple.com> |
| |
| [WK2] Support all attributes of GeolocationPosition |
| https://bugs.webkit.org/show_bug.cgi?id=98212 |
| |
| Reviewed by Sam Weinig. |
| |
| Add a new test for the exposed attributes. It is disabled everywhere else than |
| Mac because of the missing DRT features. |
| |
| * fast/dom/Geolocation/coordinates-interface-attributes-expected.txt: Added. |
| * fast/dom/Geolocation/coordinates-interface-attributes.html: Added. |
| * platform/chromium/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-04 Alpha Lam <hclam@chromium.org> |
| |
| [skia] Drawing a subrect of bitmap image is misaligned |
| https://bugs.webkit.org/show_bug.cgi?id=95121 |
| |
| Reviewed by Stephen White. |
| |
| 3 new tests added. |
| |
| - fast/images/paint-subrect.html |
| |
| This test enlarges a 2x1 image in a canvas for easy verification. |
| 2/3 of the image is used as source rectangle to exercise the code path |
| for partial pixel addressing. |
| |
| Pixel test result should have 1/3 blue on the left and 2/3 green on the |
| right with gradient according to interpolation settings. |
| |
| - fast/images/paint-subrect-grid.html |
| |
| Draws a 11x11 image into a canvas in 8 fragments with partial pixels. |
| Canvas should look just like a single image enlarged. |
| |
| - fast/images/repaint-subrect-grid.html |
| |
| Scale a 31x31 image to 55x55. A blue square moves across the scaled |
| image such that the image is partially invalidated. After the animation |
| the image should look the same. |
| |
| * fast/images/paint-subrect-expected.txt: Added. |
| * fast/images/paint-subrect-grid-expected.txt: Added. |
| * fast/images/paint-subrect-grid.html: Added. |
| * fast/images/paint-subrect.html: Added. |
| * fast/images/repaint-subrect-grid-expected.html: Added. |
| * fast/images/repaint-subrect-grid.html: Added. |
| * fast/images/resources/grid-large.png: Added. |
| * fast/images/resources/grid-small.png: Added. |
| * platform/chromium/TestExpectations: Added image failure expectations. |
| * platform/chromium/fast/images/paint-subrect-expected.png: Added. |
| * platform/chromium/fast/images/paint-subrect-grid-expected.png: Added. |
| * platform/chromium/fast/images/repaint-subrect-grid-expected.png: Added. |
| |
| 2012-10-03 Ryosuke Niwa <rniwa@webkit.org> |
| |
| ReplaceSelectionCommand should merge text nodes |
| https://bugs.webkit.org/show_bug.cgi?id=98188 |
| |
| Reviewed by Levi Weintraub. |
| |
| Rebaselined tests. |
| |
| * editing/deleting/merge-paragraphs-with-transparent-background-expected.txt: |
| * editing/deleting/paste-with-transparent-background-color-expected.txt: |
| * editing/execCommand/outdent-selection-expected.txt: |
| * editing/execCommand/remove-list-items-expected.txt: |
| * editing/inserting/insert-3907422-fix-expected.txt: |
| * editing/pasteboard/avoid-copying-body-with-background-expected.txt: |
| * editing/pasteboard/block-wrappers-necessary-expected.txt: |
| * editing/pasteboard/drag-drop-list-expected.txt: |
| * editing/pasteboard/merge-end-5-expected.txt: |
| * editing/pasteboard/paste-before-tab-span-expected.txt: |
| * editing/pasteboard/paste-into-table-cell-expected.txt: |
| * editing/pasteboard/paste-text-001-expected.txt: |
| * editing/pasteboard/paste-text-002-expected.txt: |
| * editing/pasteboard/paste-text-003-expected.txt: |
| * editing/pasteboard/paste-text-010-expected.txt: |
| * editing/pasteboard/paste-text-at-tabspan-001-expected.txt: |
| * editing/pasteboard/paste-unrendered-select-expected.txt: |
| * editing/pasteboard/smart-paste-001-expected.txt: |
| * editing/pasteboard/smart-paste-002-expected.txt: |
| * editing/pasteboard/smart-paste-003-expected.txt: |
| * editing/pasteboard/smart-paste-004-expected.txt: |
| * editing/pasteboard/smart-paste-005-expected.txt: |
| * editing/pasteboard/smart-paste-006-expected.txt: |
| * fast/events/ondragenter-expected.txt: |
| * fast/lists/drag-into-marker.html: |
| * platform/mac/editing/deleting/delete-block-merge-contents-018-expected.txt: |
| * platform/mac/editing/deleting/delete-block-merge-contents-019-expected.txt: |
| * platform/mac/editing/deleting/delete-block-merge-contents-020-expected.txt: |
| * platform/mac/editing/deleting/delete-block-merge-contents-021-expected.txt: |
| * platform/mac/editing/deleting/delete-block-merge-contents-022-expected.txt: |
| * platform/mac/editing/deleting/merge-no-br-expected.txt: |
| * platform/mac/editing/execCommand/find-after-replace-expected.txt: |
| * platform/mac/editing/execCommand/paste-1-expected.txt: |
| * platform/mac/editing/execCommand/paste-2-expected.txt: |
| * platform/mac/editing/pasteboard/4944770-2-expected.txt: |
| * platform/mac/editing/pasteboard/5006779-expected.txt: |
| * platform/mac/editing/pasteboard/5028447-expected.txt: |
| * platform/mac/editing/pasteboard/8145-3-expected.txt: |
| * platform/mac/editing/pasteboard/drag-drop-modifies-page-expected.txt: |
| * platform/mac/editing/pasteboard/emacs-ctrl-k-y-001-expected.txt: |
| * platform/mac/editing/pasteboard/merge-end-borders-expected.txt: |
| * platform/mac/editing/pasteboard/paste-line-endings-007-expected.txt: |
| * platform/mac/editing/pasteboard/paste-line-endings-008-expected.txt: |
| * platform/mac/editing/pasteboard/paste-line-endings-009-expected.txt: |
| * platform/mac/editing/pasteboard/paste-line-endings-010-expected.txt: |
| * platform/mac/editing/pasteboard/paste-match-style-001-expected.txt: |
| * platform/mac/editing/pasteboard/paste-text-004-expected.txt: |
| * platform/mac/editing/pasteboard/paste-text-005-expected.txt: |
| * platform/mac/editing/pasteboard/paste-text-008-expected.txt: |
| * platform/mac/editing/pasteboard/paste-text-009-expected.txt: |
| * platform/mac/editing/pasteboard/smart-drag-drop-expected.txt: |
| * platform/mac/editing/pasteboard/smart-paste-007-expected.txt: |
| * platform/mac/editing/pasteboard/smart-paste-008-expected.txt: |
| * platform/mac/editing/pasteboard/subframe-dragndrop-1-expected.txt: |
| * platform/mac/editing/pasteboard/unrendered-br-expected.txt: |
| |
| 2012-10-04 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, fix flexbox-baseline.html to test the new behavior after r130409. |
| |
| * css3/flexbox/flexbox-baseline.html: |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.png: |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.txt: |
| |
| 2012-10-04 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, fixing expected results for a test that needs a new baseline. |
| |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| |
| 2012-10-04 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r130396. |
| http://trac.webkit.org/changeset/130396 |
| https://bugs.webkit.org/show_bug.cgi?id=98421 |
| |
| This patch is causing crashes on 4 tests on Lion Debug and |
| Mountain Lion Debug (Requested by jernoble on #webkit). |
| |
| * compositing/layer-creation/fixed-position-absolute-descendant-expected.txt: Removed. |
| * compositing/layer-creation/fixed-position-absolute-descendant.html: Removed. |
| |
| 2012-10-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Fix r140403 by skipping the right test. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-04 Tony Chang <tony@chromium.org> |
| |
| inline-flex baseline is sometimes wrong |
| https://bugs.webkit.org/show_bug.cgi?id=96188 |
| |
| Reviewed by Ojan Vafai. |
| |
| Add a new pixel test and mark the test as failing so we can get pixel results from the bots. |
| |
| * css3/flexbox/flexbox-baseline.html: Added. |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.png: Added. |
| * platform/chromium-linux/css3/flexbox/flexbox-baseline-expected.txt: Added. |
| * platform/chromium/TestExpectations: |
| * platform/efl/TestExpectations: |
| * platform/gtk/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win/TestExpectations: |
| |
| 2012-10-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Temporarily skip fast/xsl/xslt-missing-namespace-in-xslt.html. |
| |
| As bug 91009 shows, libxml 2.8.0 makes us produce a different test |
| result. Unskip the test for now until we add that version to |
| jhbuild. |
| |
| * platform/efl/TestExpectations: |
| |
| 2012-10-04 Xianzhu Wang <wangxianzhu@chromium.org> |
| |
| [Chromium] Should set unitsPerEm in SimpleFontDataSkia.cpp |
| https://bugs.webkit.org/show_bug.cgi?id=98100 |
| |
| Reviewed by Stephen White. |
| |
| * fast/writing-mode/resources/DroidSansFallback-reduced.ttf: Added. |
| * fast/writing-mode/vertical-font-vmtx-units-per-em-expected.txt: Added. |
| * fast/writing-mode/vertical-font-vmtx-units-per-em.html: Added. |
| |
| 2012-10-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Revert some wrong baselines added in r130387. |
| |
| Thanks to Christophe Dumez and Mikhail Pozdnyakov for the help. |
| |
| * platform/efl/compositing/visibility/visibility-simple-video-layer-expected.txt: Removed. |
| * platform/efl/fullscreen/parent-flow-inline-with-block-child-expected.txt: |
| |
| 2012-10-04 Peter Rybin <peter.rybin@gmail.com> |
| |
| Web Inspector: expose object internal properties such as PrimitiveValue or BoundThis |
| https://bugs.webkit.org/show_bug.cgi?id=94397 |
| |
| Reviewed by Yury Semikhatsky. |
| |
| A test is added to support new feature. Old test is updated because line number changed. |
| |
| * inspector-protocol/runtime-getProperties-expected.txt: Added. |
| * inspector-protocol/runtime-getProperties.html: Added. |
| * inspector/console/command-line-api-expected.txt: |
| |
| 2012-10-04 Sami Kyostila <skyostil@chromium.org> |
| |
| Fixed position visibility check does not consider descendants |
| https://bugs.webkit.org/show_bug.cgi?id=98144 |
| |
| Reviewed by Simon Fraser. |
| |
| Added a test for the fixed position layer visibility check. |
| |
| * compositing/layer-creation/fixed-position-absolute-descendant-expected.txt: Added. |
| * compositing/layer-creation/fixed-position-absolute-descendant.html: Added. |
| |
| 2012-10-04 Ádám Kallai <kadam@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening after r130385. Skip some failing test. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/http/tests/w3c/webperf/approved/navigation-timing/html/test_timing_xserver_redirect-expected.txt: |
| |
| 2012-10-04 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: When uiSourceCode content has diverged from VM script, call frames should be shown in temporary script based uiSourceCodes. |
| https://bugs.webkit.org/show_bug.cgi?id=98385 |
| |
| Reviewed by Pavel Feldman. |
| |
| * inspector/debugger/dynamic-script-tag-expected.txt: |
| * inspector/debugger/resource-script-mapping-expected.txt: |
| |
| 2012-10-04 Ádám Kallai <kadam@inf.u-szeged.hu> |
| |
| [Qt] Unreviewed gardening after r130385. Skip a failing test. |
| https://bugs.webkit.org/show_bug.cgi?id=62741 |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Pixel test rebaselines to enable pixel testing on the bots, part 6. |
| |
| * platform/efl/compositing/reflections/animation-inside-reflection-expected.png: |
| * platform/efl/compositing/visibility/visibility-image-layers-expected.png: Added. |
| * platform/efl/compositing/visibility/visibility-simple-video-layer-expected.png: Added. |
| * platform/efl/compositing/visibility/visibility-simple-video-layer-expected.txt: Added. |
| * platform/efl/fast/forms/datalist/update-range-with-datalist-expected.png: Added. |
| * platform/efl/fast/selectors/unqualified-hover-strict-expected.png: |
| * platform/efl/fast/selectors/unqualified-hover-strict-expected.txt: |
| * platform/efl/fast/xsl/xslt-missing-namespace-in-xslt-expected.png: |
| * platform/efl/fast/xsl/xslt-missing-namespace-in-xslt-expected.txt: |
| * platform/efl/fullscreen/full-screen-stacking-context-expected.png: |
| * platform/efl/fullscreen/full-screen-zIndex-after-expected.png: |
| * platform/efl/fullscreen/parent-flow-inline-with-block-child-expected.png: |
| * platform/efl/fullscreen/parent-flow-inline-with-block-child-expected.txt: |
| * platform/efl/http/tests/local/file-url-sent-as-referer-expected.png: |
| * platform/efl/http/tests/misc/frame-access-during-load-expected.png: |
| * platform/efl/http/tests/misc/iframe404-expected.png: |
| * platform/efl/http/tests/misc/slow-loading-image-in-pattern-expected.png: |
| * platform/efl/http/tests/uri/css-href-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-type-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: |
| * platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png: |
| * platform/efl/svg/filters/big-sized-filter-expected.png: |
| * platform/efl/svg/filters/feColorMatrix-saturate-expected.png: Added. |
| * platform/efl/svg/filters/feDropShadow-expected.png: Added. |
| * platform/efl/svg/filters/feGaussianBlur-expected.png: |
| * platform/efl/svg/filters/feImage-reference-svg-primitive-expected.png: Added. |
| * platform/efl/svg/filters/filterRes1-expected.png: |
| * platform/efl/svg/filters/filterRes3-expected.png: |
| * platform/efl/svg/filters/shadow-on-rect-with-filter-expected.png: |
| * platform/efl/svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added. |
| |
| 2012-10-04 Ádám Kallai <kadam@inf.u-szeged.hu> |
| |
| [Qt] Reviewing old bugs in Qt TestExpectations. Unskip now passing test. |
| |
| * platform/qt-5.0-wk1/TestExpectations: |
| * platform/qt-5.0-wk2/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/qt/editing/pasteboard/smart-paste-008-expected.txt: |
| * platform/qt/http/tests/w3c/webperf/approved/navigation-timing/html/test_performance_attributes_exist_in_object-expected.txt: Added. |
| * platform/qt/http/tests/w3c/webperf/approved/navigation-timing/html/test_timing_xserver_redirect-expected.txt: Added. |
| |
| 2012-10-04 Yury Semikhatsky <yurys@chromium.org> |
| |
| Unreviewed. Mark perf/show-hide-table-rows.html as flaky. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-04 Harald Alvestrand <hta@google.com> |
| |
| Change RTCPeerConnection GetStats to use Date timestamp format |
| https://bugs.webkit.org/show_bug.cgi?id=98263 |
| |
| Reviewed by Yury Semikhatsky. |
| |
| * fast/mediastream/RTCPeerConnection-stats-expected.txt: |
| * fast/mediastream/RTCPeerConnection-stats.html: |
| |
| 2012-10-04 Sheriff Bot <webkit.review.bot@gmail.com> |
| |
| Unreviewed, rolling out r130377. |
| http://trac.webkit.org/changeset/130377 |
| https://bugs.webkit.org/show_bug.cgi?id=98392 |
| |
| Chromium Win compilation is broken (Requested by yurys on |
| #webkit). |
| |
| * fast/mediastream/RTCPeerConnection-stats-expected.txt: |
| * fast/mediastream/RTCPeerConnection-stats.html: |
| |
| 2012-10-04 Kent Tamura <tkent@chromium.org> |
| |
| Some picker test for input[type=date] are failing |
| https://bugs.webkit.org/show_bug.cgi?id=98390 |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-04 Kent Tamura <tkent@chromium.org> |
| |
| [Chromium] Fix an error in TestExpectations. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-04 Harald Alvestrand <hta@google.com> |
| |
| Change RTCPeerConnection GetStats to use Date timestamp format |
| https://bugs.webkit.org/show_bug.cgi?id=98263 |
| |
| Reviewed by Adam Barth. |
| |
| * fast/mediastream/RTCPeerConnection-stats-expected.txt: |
| * fast/mediastream/RTCPeerConnection-stats.html: |
| |
| 2012-10-04 Kent Tamura <tkent@chromium.org> |
| |
| Update tests for input[type=date] with the multiple fields UI |
| https://bugs.webkit.org/show_bug.cgi?id=98386 |
| |
| Reviewed by Hajime Morita. |
| |
| Remove some tests for input[type=date. They depends on the old UI, which |
| we don't use any more. |
| Mark some tests fail. We need to update their results later. |
| |
| * fast/forms/date/date-appearance.html: Removed. |
| * fast/forms/date/date-fixed-placeholder-expected.txt: Removed. |
| * fast/forms/date/date-fixed-placeholder.html: Removed. |
| * fast/forms/date/date-input-visible-strings-expected.txt: Removed. |
| * fast/forms/date/date-input-visible-strings.html: Removed. |
| * fast/forms/date/input-date-commit-valid-only-expected.txt: Removed. |
| * fast/forms/date/input-date-commit-valid-only.html: Removed. |
| * platform/chromium-linux/fast/forms/date/date-appearance-expected.png: Removed. |
| * platform/chromium-linux/fast/forms/date/date-appearance-expected.txt: Removed. |
| * platform/chromium-linux/fast/forms/date/date-input-visible-strings-expected.txt: Removed. |
| * platform/chromium-mac-snowleopard/fast/forms/date/date-appearance-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/date/date-appearance-expected.png: Removed. |
| * platform/chromium-mac/fast/forms/date/date-appearance-expected.txt: Removed. |
| * platform/chromium-win/fast/forms/date/date-appearance-expected.png: Removed. |
| * platform/chromium-win/fast/forms/date/date-appearance-expected.txt: Removed. |
| * platform/chromium-win/fast/forms/date/date-input-visible-strings-expected.txt: Removed. |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/forms/date/date-input-visible-strings-expected.txt: Removed. |
| |
| 2012-10-04 Tullio Lucena <tullio.lucena@openbossa.org> |
| |
| [Qt] css2.1/20110323/text-indent-intrinsic-00* fail |
| https://bugs.webkit.org/show_bug.cgi?id=91772 |
| |
| Reviewed by Yuta Kitamura. |
| |
| Unskip some tests that are passing. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-04 Zan Dobersek <zandobersek@gmail.com> |
| |
| Unreviewed GTK gardening. |
| |
| Adding proper bug modifiers for accessibility failures that don't yet have one. |
| |
| * platform/gtk/TestExpectations: |
| |
| 2012-10-04 Yury Semikhatsky <yurys@chromium.org> |
| |
| Removed duplicate entries introduced by r130355 |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-04 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt][WK2] Unreviewed gardening, skip new crashing tests to paint the bot green. |
| |
| * platform/qt-5.0-wk2/TestExpectations: |
| |
| 2012-10-03 Kent Tamura <tkent@chromium.org> |
| |
| DateTimeYearFieldElement should respect min/max values specified by page authors |
| https://bugs.webkit.org/show_bug.cgi?id=98227 |
| |
| Reviewed by Hajime Morita. |
| |
| * fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events-expected.txt: Added. |
| * fast/forms/month-multiple-fields/month-multiple-fields-keyboard-events.html: Added. |
| |
| 2012-10-03 Douglas Stockwell <dstockwell@chromium.org> |
| |
| Chromium needs support for border radius clipping |
| https://bugs.webkit.org/show_bug.cgi?id=69866 |
| |
| Reviewed by Stephen White. |
| |
| * platform/chromium-linux/fast/clip/overflow-border-radius-combinations-expected.png: |
| * platform/chromium-linux/fast/clip/overflow-border-radius-fixed-position-expected.png: |
| * platform/chromium-linux/fast/clip/overflow-border-radius-transformed-expected.png: |
| * platform/chromium-linux/http/tests/media/video-buffered-range-contains-currentTime-expected.png: |
| * platform/chromium-linux/media/audio-controls-rendering-expected.png: |
| * platform/chromium-linux/media/audio-repaint-expected.png: |
| * platform/chromium-linux/media/controls-after-reload-expected.png: |
| * platform/chromium-linux/media/controls-strict-expected.png: |
| * platform/chromium-linux/media/controls-styling-expected.png: |
| * platform/chromium-linux/media/controls-styling-strict-expected.png: |
| * platform/chromium-linux/media/controls-without-preload-expected.png: |
| * platform/chromium-linux/media/track/track-cue-rendering-horizontal-expected.png: |
| * platform/chromium-linux/media/track/track-cue-rendering-vertical-expected.png: |
| * platform/chromium-linux/media/video-controls-rendering-expected.png: |
| * platform/chromium-linux/media/video-display-toggle-expected.png: |
| * platform/chromium-linux/media/video-no-audio-expected.png: |
| * platform/chromium-linux/media/video-playing-and-pause-expected.png: |
| * platform/chromium-linux/media/video-zoom-controls-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-03 Tony Chang <tony@chromium.org> |
| |
| Unreviewed, remove 2 tests that were moved in http://trac.webkit.org/changeset/130150. |
| |
| http/tests/inspector-enabled/contentSecurityPolicy-blocks-setInterval.html and |
| http/tests/inspector-enabled/contentSecurityPolicy-blocks-setTimeout.html were |
| refactored away. |
| |
| * platform/qt/TestExpectations: |
| |
| 2012-10-03 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium/win rebaseline for r130329. |
| |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| |
| 2012-10-03 Emil A Eklund <eae@chromium.org> |
| |
| Unreviewed chromium/mac rebaseline for r130329. |
| |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| |
| 2012-10-03 Ojan Vafai <ojan@chromium.org> |
| |
| Simplify the magnitude-perf test harness |
| https://bugs.webkit.org/show_bug.cgi?id=98305 |
| |
| Reviewed by Ryosuke Niwa. |
| |
| -Remove the chromium.Interval stuff. This API no longer exists. |
| -Reduce the number of iterations to 8. |
| -Start magnitude at 1 instead of 0. |
| -Remove all the iterationsPerRun junk. This complexity was not achieving the goal of |
| reducing flakiness. |
| |
| With these changes, the perf tests are not flaky for me locally. |
| I ran all the perf tests with --iterations=100 and had no failures, |
| All the complexity was increasing flakiness. |
| |
| This also reduces the runtime of the tests by >2x. |
| |
| * perf/adding-radio-buttons.html: |
| This test is clearly linear. It should never have been marked constant. |
| The patch that landed it was fixing an n^2 behavior. |
| |
| * perf/array-binary-search.html: |
| Search for the first item in the array so that the search is always actually log n. |
| |
| * perf/nested-combined-selectors.html: |
| Now that we run fewer iterations, we don't need to artificially limit this test. |
| |
| * resources/magnitude-perf.js: |
| (Magnitude.run): |
| (Magnitude._run): |
| (Magnitude._rSquared): |
| (Magnitude._logIterationInfo): |
| (Magnitude._bigOGuess): |
| (Magnitude._runIteration): |
| (Magnitude): |
| |
| 2012-10-03 Joshua Bell <jsbell@chromium.org> |
| |
| [Chromium] storage/indexeddb tests sometimes timeout |
| https://bugs.webkit.org/show_bug.cgi?id=65862 |
| |
| Reviewed by Ojan Vafai. |
| |
| storage/indexeddb/index-cursor.html was taking up to 26 seconds on some debug configurations |
| due to the large amount of output. Tweak the test to reduce the spam. On my test box this |
| drops the runtime of this single test from 7s to 2s. |
| |
| * storage/indexeddb/index-cursor-expected.txt: |
| * storage/indexeddb/resources/index-cursor.js: |
| (cursorIteration): |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Pixel test rebaselines to enable pixel testing on the bots, part 5. |
| |
| Finally finish rebaselining fast/. |
| |
| * platform/efl/fast/repaint/transform-repaint-descendants-expected.png: |
| * platform/efl/fast/replaced/absolute-image-sizing-expected.png: |
| * platform/efl/fast/replaced/width100percent-image-expected.png: |
| * platform/efl/fast/replaced/width100percent-textfield-expected.png: |
| * platform/efl/fast/ruby/ruby-block-style-not-updated-expected.png: Added. |
| * platform/efl/fast/ruby/ruby-block-style-not-updated-with-before-after-content-expected.png: Added. |
| * platform/efl/fast/ruby/ruby-inline-style-not-updated-expected.png: Added. |
| * platform/efl/fast/ruby/ruby-inline-style-not-updated-with-before-after-content-expected.png: Added. |
| * platform/efl/fast/ruby/ruby-inline-table-expected.png: |
| * platform/efl/fast/runin/001-expected.png: |
| * platform/efl/fast/runin/generated-expected.png: |
| * platform/efl/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.png: |
| * platform/efl/fast/table/floatingTablePaintBackground-expected.png: |
| * platform/efl/fast/table/form-with-table-style-expected.png: |
| * platform/efl/fast/text/backslash-to-yen-sign-euc-expected.png: |
| * platform/efl/fast/text/emphasis-avoid-ruby-expected.png: |
| * platform/efl/fast/text/emphasis-combined-text-expected.png: |
| * platform/efl/fast/text/emphasis-overlap-expected.png: |
| * platform/efl/fast/text/large-text-composed-char-expected.png: |
| * platform/efl/fast/text/whitespace/002-expected.png: |
| * platform/efl/fast/text/whitespace/003-expected.png: |
| * platform/efl/fast/text/whitespace/004-expected.png: |
| * platform/efl/fast/text/whitespace/005-expected.png: |
| * platform/efl/fast/text/whitespace/006-expected.png: |
| * platform/efl/fast/text/whitespace/007-expected.png: |
| * platform/efl/fast/text/whitespace/008-expected.png: |
| * platform/efl/fast/text/whitespace/009-expected.png: |
| * platform/efl/fast/text/whitespace/010-expected.png: |
| * platform/efl/fast/text/whitespace/011-expected.png: |
| * platform/efl/fast/text/whitespace/012-expected.png: |
| * platform/efl/fast/text/whitespace/013-expected.png: |
| * platform/efl/fast/text/whitespace/014-expected.png: |
| * platform/efl/fast/text/whitespace/015-expected.png: |
| * platform/efl/fast/text/whitespace/016-expected.png: |
| * platform/efl/fast/text/whitespace/018-expected.png: |
| * platform/efl/fast/text/whitespace/020-expected.png: |
| * platform/efl/fast/text/whitespace/021-expected.png: |
| * platform/efl/fast/text/whitespace/025-expected.png: |
| * platform/efl/fast/text/whitespace/027-expected.png: |
| * platform/efl/fast/text/whitespace/030-expected.png: |
| * platform/efl/fast/text/whitespace/normal-after-nowrap-breaking-expected.png: |
| * platform/efl/fast/text/whitespace/pre-break-word-expected.png: |
| * platform/efl/fast/text/whitespace/pre-wrap-last-char-expected.png: |
| * platform/efl/fast/text/whitespace/pre-wrap-line-test-expected.png: |
| * platform/efl/fast/text/whitespace/pre-wrap-overflow-selection-expected.png: |
| * platform/efl/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.png: |
| |
| 2012-10-03 Emil A Eklund <eae@chromium.org> |
| |
| Round image sizes when zooming |
| https://bugs.webkit.org/show_bug.cgi?id=98205 |
| |
| Reviewed by Eric Seidel. |
| |
| Add test for zoomed large image tiles. |
| |
| * fast/images/zoomed-img-size.html: |
| * fast/sub-pixel/zoomed-image-tiles-expected.html: Added. |
| * fast/sub-pixel/zoomed-image-tiles.html: Added. |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.txt: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: |
| * platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: |
| * platform/chromium/fast/images/zoomed-img-size-expected.txt: Added. |
| * platform/gtk/TestExpectations: |
| * platform/mac-lion/TestExpectations: |
| * platform/mac-snowleopard/TestExpectations: |
| * platform/mac-wk2/TestExpectations: |
| * platform/mac/TestExpectations: |
| * platform/qt-4.8/TestExpectations: |
| * platform/qt/TestExpectations: |
| * platform/win-wk2/TestExpectations: |
| * platform/win-xp/TestExpectations: |
| * platform/win/TestExpectations: |
| * platform/wincairo/TestExpectations: |
| * platform/wk2/TestExpectations: |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Pixel test rebaselines to enable pixel testing on the bots, part 5. |
| |
| * platform/efl/fast/repaint/list-marker-2-expected.png: |
| * platform/efl/fast/repaint/list-marker-expected.png: |
| * platform/efl/fast/repaint/make-children-non-inline-expected.png: |
| * platform/efl/fast/repaint/opacity-change-on-overflow-float-expected.png: |
| * platform/efl/fast/repaint/outline-child-repaint-expected.png: |
| * platform/efl/fast/repaint/outline-inset-expected.png: |
| * platform/efl/fast/repaint/outline-repaint-glitch-expected.png: |
| * platform/efl/fast/repaint/outline-shrinking-expected.png: |
| * platform/efl/fast/repaint/overflow-delete-line-expected.png: |
| * platform/efl/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled-expected.png: Added. |
| * platform/efl/fast/repaint/overflow-outline-repaint-expected.png: |
| * platform/efl/fast/repaint/overflow-scroll-body-appear-expected.png: |
| * platform/efl/fast/repaint/overflow-scroll-delete-expected.png: |
| * platform/efl/fast/repaint/reflection-redraw-expected.png: |
| * platform/efl/fast/repaint/repaint-resized-overflow-expected.png: |
| * platform/efl/fast/repaint/scale-page-shrink-expected.png: |
| * platform/efl/fast/repaint/scroll-inside-table-cell-expected.png: |
| * platform/efl/fast/repaint/selected-replaced-expected.png: |
| * platform/efl/fast/repaint/selection-after-remove-expected.png: |
| * platform/efl/fast/repaint/selection-gap-overflow-scroll-2-expected.png: |
| * platform/efl/fast/repaint/selection-gap-overflow-scroll-expected.png: |
| * platform/efl/fast/repaint/selection-rl-expected.png: |
| * platform/efl/fast/repaint/shadow-multiple-horizontal-expected.png: |
| * platform/efl/fast/repaint/shadow-multiple-strict-horizontal-expected.png: |
| * platform/efl/fast/repaint/shadow-multiple-strict-vertical-expected.png: |
| * platform/efl/fast/repaint/shadow-multiple-vertical-expected.png: |
| * platform/efl/fast/repaint/stacked-diacritics-expected.png: |
| * platform/efl/fast/repaint/static-to-positioned-expected.png: |
| * platform/efl/fast/repaint/table-cell-collapsed-border-expected.png: |
| * platform/efl/fast/repaint/table-cell-move-expected.png: |
| * platform/efl/fast/repaint/table-collapsed-border-expected.png: |
| * platform/efl/fast/repaint/table-extra-bottom-grow-expected.png: |
| * platform/efl/fast/repaint/text-append-dirty-lines-expected.png: |
| * platform/efl/fast/repaint/text-emphasis-v-expected.png: Added. |
| * platform/efl/fast/repaint/text-selection-rect-in-overflow-2-expected.png: |
| * platform/efl/fast/repaint/text-selection-rect-in-overflow-expected.png: |
| * platform/efl/fast/repaint/text-shadow-expected.png: |
| * platform/efl/fast/repaint/text-shadow-horizontal-expected.png: |
| * platform/efl/fast/repaint/textarea-set-disabled-expected.png: Added. |
| * platform/efl/fast/repaint/transform-relative-position-expected.png: |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Pixel test rebaselines to enable pixel testing on the bots, part 4. |
| |
| * platform/efl/fast/repaint/bugzilla-7235-expected.png: |
| * platform/efl/fast/repaint/change-transform-expected.png: |
| * platform/efl/fast/repaint/clipped-relative-expected.png: |
| * platform/efl/fast/repaint/containing-block-position-change-expected.png: |
| * platform/efl/fast/repaint/control-clip-expected.png: |
| * platform/efl/fast/repaint/dynamic-table-vertical-alignment-change-expected.png: |
| * platform/efl/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: |
| * platform/efl/fast/repaint/fixed-table-cell-expected.png: |
| * platform/efl/fast/repaint/flexible-box-overflow-expected.png: |
| * platform/efl/fast/repaint/flexible-box-overflow-horizontal-expected.png: |
| * platform/efl/fast/repaint/float-move-during-layout-expected.png: |
| * platform/efl/fast/repaint/focus-layers-expected.png: |
| * platform/efl/fast/repaint/inline-block-overflow-expected.png: |
| * platform/efl/fast/repaint/layer-child-outline-expected.png: |
| * platform/efl/fast/repaint/layer-outline-expected.png: |
| * platform/efl/fast/repaint/layer-outline-horizontal-expected.png: |
| * platform/efl/fast/repaint/layout-state-scrolloffset-expected.png: |
| * platform/efl/fast/repaint/layout-state-scrolloffset2-expected.png: |
| * platform/efl/fast/repaint/layout-state-scrolloffset3-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-1-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-10-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-2-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-3-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-4-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-5-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-6-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-7-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-8-expected.png: |
| * platform/efl/fast/repaint/line-flow-with-floats-9-expected.png: |
| * platform/efl/fast/repaint/line-overflow-expected.png: |
| |
| 2012-10-03 Benjamin Poulain <bpoulain@apple.com> |
| |
| Fix Geolocation/window-close-crash.html and harden WebKitTestRunner for Geolocation |
| https://bugs.webkit.org/show_bug.cgi?id=97608 |
| |
| Reviewed by Sam Weinig. |
| |
| * platform/wk2/TestExpectations: |
| Unskip fast/dom/Geolocation/window-close-crash.html. |
| * platform/mac-wk2/TestExpectations: |
| Unskip fast/dom/Geolocation/maximum-age.html. |
| |
| 2012-10-03 Stephen Chenney <schenney@chromium.org> |
| |
| REGRESSION(r130160): It made 3 tests crash |
| https://bugs.webkit.org/show_bug.cgi?id=98158 |
| |
| Unreviewed testExpectations update. |
| |
| * platform/qt/TestExpectations: Removed expectations from tests that were crashing due to this bug. |
| |
| 2012-10-03 Stephen Chenney <schenney@chromium.org> |
| |
| Font data is purged while fonts are still using it |
| https://bugs.webkit.org/show_bug.cgi?id=93640 |
| |
| Reviewed by Eric Seidel. |
| |
| Tests for font purging. The seamless-custom-font-pruning-crash test |
| was only failing in Chromium Asan, while the seamless-nested-crash |
| case was only failing in Asan DumpRenderTree. |
| |
| * fast/frames/seamless/seamless-custom-font-pruning-crash-expected.txt: Added. |
| * fast/frames/seamless/seamless-custom-font-pruning-crash.html: Added. |
| * fast/frames/seamless/seamless-nested-crash-expected.txt: Added. |
| * fast/frames/seamless/seamless-nested-crash.html: Added. |
| |
| 2012-10-03 Ojan Vafai <ojan@chromium.org> |
| |
| Fix some style violations in perparation for changing this code. |
| * resources/magnitude-perf.js: |
| (Magnitude.run): |
| (Magnitude._logIterationInfo): |
| (Magnitude._runIteration): |
| |
| 2012-10-03 Dirk Pranke <dpranke@chromium.org> |
| |
| Mark platform/chromium/virtual/gpu/fast/canvas/getPutImageDataPairTest.html as slow on Mac Lion Release |
| https://bugs.webkit.org/show_bug.cgi?id=79679 |
| |
| Unreviewed, expectations change. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-03 Adam Barth <abarth@webkit.org> |
| |
| Crash when calling document.open during unload |
| https://bugs.webkit.org/show_bug.cgi?id=98287 |
| |
| Reviewed by Nate Chapin. |
| |
| Test that we don't crash when calling document.open during the unload event. |
| |
| * fast/parser/document-open-in-unload-expected.txt: Added. |
| * fast/parser/document-open-in-unload.html: Added. |
| |
| 2012-10-03 Hans Wennborg <hans@chromium.org> |
| |
| Speech JavaScript API: Add SpeechRecognition.interimResults attribute |
| https://bugs.webkit.org/show_bug.cgi?id=98279 |
| |
| Reviewed by Adam Barth. |
| |
| Update test to check for the interimResults attribute. |
| |
| * fast/speech/scripted/basics-expected.txt: |
| * fast/speech/scripted/basics.html: |
| |
| 2012-10-03 Hans Wennborg <hans@chromium.org> |
| |
| Speech JavaScript API: Remove resultdeleted event |
| https://bugs.webkit.org/show_bug.cgi?id=98272 |
| |
| Reviewed by Adam Barth. |
| |
| Update layout test not to check for onresultdeleted event handler. |
| |
| * fast/speech/scripted/basics-expected.txt: |
| * fast/speech/scripted/basics.html: |
| |
| 2012-10-03 Andrey Kosyakov <caseq@chromium.org> |
| |
| Unreviwed gardening -- adjusted expectations for tiny-layer-rotated.html |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-03 Andrey Kosyakov <caseq@chromium.org> |
| |
| Unreviewed gardening -- added expectations for 3 time-suggestion-picker-appearance tests. |
| |
| * platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: Added. |
| * platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: Added. |
| * platform/chromium-linux/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Added. |
| * platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: Added. |
| * platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: Added. |
| * platform/chromium-win/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Added. |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Pixel test rebaselines to enable pixel testing on the bots, part 3. |
| |
| * platform/efl/fast/media/mq-js-media-except-03-expected.png: |
| * platform/efl/fast/media/mq-js-stylesheet-media-01-expected.png: |
| * platform/efl/fast/media/mq-js-stylesheet-media-02-expected.png: |
| * platform/efl/fast/media/mq-js-stylesheet-media-03-expected.png: |
| * platform/efl/fast/media/mq-js-stylesheet-media-04-expected.png: |
| * platform/efl/fast/media/mq-orientation-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-02-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-03-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-04-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-05-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-06-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-07-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-08-expected.png: |
| * platform/efl/fast/media/mq-relative-constraints-09-expected.png: |
| * platform/efl/fast/media/mq-transition-expected.png: |
| * platform/efl/fast/media/mq-width-absolute-01-expected.png: |
| * platform/efl/fast/media/mq-width-absolute-02-expected.png: |
| * platform/efl/fast/media/mq-width-absolute-03-expected.png: |
| * platform/efl/fast/media/mq-width-absolute-04-expected.png: |
| * platform/efl/fast/media/viewport-media-query-expected.png: |
| * platform/efl/fast/overflow/001-expected.png: |
| * platform/efl/fast/overflow/002-expected.png: |
| * platform/efl/fast/overflow/003-expected.png: |
| * platform/efl/fast/overflow/004-expected.png: |
| * platform/efl/fast/overflow/006-expected.png: |
| * platform/efl/fast/overflow/007-expected.png: |
| * platform/efl/fast/overflow/border-radius-clipping-expected.png: |
| * platform/efl/fast/overflow/clip-rects-fixed-ancestor-expected.png: |
| * platform/efl/fast/overflow/dynamic-hidden-expected.png: |
| * platform/efl/fast/overflow/float-in-relpositioned-expected.png: |
| * platform/efl/fast/overflow/hit-test-overflow-controls-expected.png: |
| * platform/efl/fast/overflow/image-selection-highlight-expected.png: |
| * platform/efl/fast/overflow/line-clamp-expected.png: |
| * platform/efl/fast/overflow/overflow-auto-table-expected.png: |
| * platform/efl/fast/overflow/overflow-focus-ring-expected.png: |
| * platform/efl/fast/overflow/overflow-rtl-expected.png: |
| * platform/efl/fast/overflow/overflow-rtl-inline-scrollbar-expected.png: |
| * platform/efl/fast/overflow/overflow-rtl-vertical-expected.png: |
| * platform/efl/fast/overflow/overflow-text-hit-testing-expected.png: |
| * platform/efl/fast/overflow/overflow-with-local-background-attachment-expected.png: |
| * platform/efl/fast/overflow/scrollbar-position-update-expected.png: |
| * platform/efl/fast/overflow/table-overflow-float-expected.png: |
| * platform/efl/fast/overflow/unreachable-overflow-rtl-bug-expected.png: |
| * platform/efl/fast/reflections/inline-crash-expected.png: |
| * platform/efl/fast/reflections/opacity-reflection-transform-expected.png: |
| * platform/efl/fast/reflections/reflection-nesting-expected.png: |
| * platform/efl/fast/reflections/reflection-with-zoom-expected.png: |
| * platform/efl/fast/repaint/add-table-overpaint-expected.png: Added. |
| * platform/efl/fast/repaint/background-scaling-expected.png: Added. |
| * platform/efl/fast/repaint/backgroundSizeRepaint-expected.png: |
| * platform/efl/fast/repaint/block-layout-inline-children-float-positioned-expected.png: |
| * platform/efl/fast/repaint/border-radius-repaint-expected.png: |
| * platform/efl/fast/repaint/border-repaint-glitch-expected.png: |
| * platform/efl/fast/repaint/box-shadow-h-expected.png: |
| * platform/efl/fast/repaint/box-shadow-v-expected.png: |
| * platform/efl/fast/repaint/bugzilla-3509-expected.png: |
| * platform/efl/fast/repaint/bugzilla-5699-expected.png: |
| * platform/efl/fast/repaint/bugzilla-6278-expected.png: |
| * platform/efl/fast/repaint/bugzilla-6388-expected.png: |
| * platform/efl/fast/repaint/bugzilla-6473-expected.png: |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Pixel test rebaselines to enable pixel testing on the bots, part 2. |
| |
| * platform/efl/fast/css3-text-decoration: Added. |
| * platform/efl/fast/css3-text-decoration/repaint: Added. |
| * platform/efl/fast/css3-text-decoration/repaint/repaint-text-decoration-line-expected.png: Added. |
| * platform/efl/fast/doctypes/001-expected.png: |
| * platform/efl/fast/doctypes/002-expected.png: |
| * platform/efl/fast/doctypes/003-expected.png: |
| * platform/efl/fast/doctypes/004-expected.png: |
| * platform/efl/fast/dynamic/create-renderer-for-whitespace-only-text-expected.png: |
| * platform/efl/fast/fast-mobile-scrolling/fixed-position-element-expected.png: |
| * platform/efl/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.png: |
| * platform/efl/fast/flexbox/002-expected.png: |
| * platform/efl/fast/flexbox/003-expected.png: |
| * platform/efl/fast/flexbox/004-expected.png: |
| * platform/efl/fast/flexbox/005-expected.png: |
| * platform/efl/fast/flexbox/006-expected.png: |
| * platform/efl/fast/flexbox/007-expected.png: |
| * platform/efl/fast/flexbox/008-expected.png: |
| * platform/efl/fast/flexbox/009-expected.png: |
| * platform/efl/fast/flexbox/010-expected.png: |
| * platform/efl/fast/flexbox/011-expected.png: |
| * platform/efl/fast/flexbox/012-expected.png: |
| * platform/efl/fast/flexbox/016-expected.png: |
| * platform/efl/fast/flexbox/017-expected.png: |
| * platform/efl/fast/flexbox/018-expected.png: |
| * platform/efl/fast/flexbox/019-expected.png: |
| * platform/efl/fast/flexbox/020-expected.png: |
| * platform/efl/fast/flexbox/021-expected.png: |
| * platform/efl/fast/flexbox/022-expected.png: |
| * platform/efl/fast/flexbox/023-expected.png: |
| * platform/efl/fast/flexbox/024-expected.png: |
| * platform/efl/fast/forms/file/file-input-pressed-state-expected.png: |
| * platform/efl/fast/forms/input-align-expected.png: |
| * platform/efl/fast/forms/input-text-double-click-expected.png: |
| * platform/efl/fast/gradients/css3-color-stop-units-expected.png: |
| * platform/efl/fast/gradients/css3-color-stops-expected.png: |
| * platform/efl/fast/gradients/css3-linear-angle-gradients-expected.png: |
| * platform/efl/fast/gradients/css3-linear-right-angle-gradients-expected.png: |
| * platform/efl/fast/gradients/css3-radial-gradients-expected.png: |
| * platform/efl/fast/gradients/css3-radial-gradients2-expected.png: |
| * platform/efl/fast/gradients/css3-repeating-linear-gradients-expected.png: |
| * platform/efl/fast/gradients/css3-repeating-radial-gradients-expected.png: |
| * platform/efl/fast/gradients/gradient-after-transparent-border-expected.png: |
| * platform/efl/fast/html/font-weight-bold-for-b-and-strong-expected.png: Added. |
| * platform/efl/fast/images/image-map-anchor-children-expected.png: |
| * platform/efl/fast/images/imagemap-case-expected.png: |
| * platform/efl/fast/images/imagemap-circle-focus-ring-expected.png: |
| * platform/efl/fast/images/imagemap-focus-ring-expected.png: |
| * platform/efl/fast/images/imagemap-focus-ring-outline-color-expected.png: |
| * platform/efl/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: |
| * platform/efl/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: |
| * platform/efl/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: |
| * platform/efl/fast/images/imagemap-polygon-focus-ring-expected.png: |
| * platform/efl/fast/inline-block/002-expected.png: |
| * platform/efl/fast/inline-block/003-expected.png: |
| * platform/efl/fast/inline-block/006-expected.png: |
| * platform/efl/fast/inline-block/14498-positionForCoordinates-expected.png: |
| * platform/efl/fast/inline-block/overflow-clip-expected.png: |
| * platform/efl/fast/inline-block/tricky-baseline-expected.png: |
| * platform/efl/fast/inline/001-expected.png: |
| * platform/efl/fast/inline/25277-2-expected.png: |
| * platform/efl/fast/inline/25277-expected.png: |
| * platform/efl/fast/inline/br-text-decoration-expected.png: |
| * platform/efl/fast/inline/continuation-outlines-expected.png: |
| * platform/efl/fast/inline/drawStyledEmptyInlines-expected.png: |
| * platform/efl/fast/inline/drawStyledEmptyInlinesWithWS-expected.png: |
| * platform/efl/fast/inline/emptyInlinesWithinLists-expected.png: |
| * platform/efl/fast/inline/inline-borders-with-bidi-override-expected.png: |
| * platform/efl/fast/inline/inline-continuation-borders-expected.png: |
| * platform/efl/fast/inline/inline-focus-ring-expected.png: |
| * platform/efl/fast/inline/inline-padding-disables-text-quirk-expected.png: |
| * platform/efl/fast/inline/inline-text-quirk-bpm-expected.png: |
| * platform/efl/fast/inline/inline-wrap-with-parent-padding-expected.png: |
| * platform/efl/fast/inline/vertical-align-text-bottom-expected.png: |
| * platform/efl/fast/innerHTML/002-expected.png: |
| * platform/efl/fast/innerHTML/003-expected.png: |
| * platform/efl/fast/innerHTML/006-expected.png: |
| * platform/efl/fast/invalid/002-expected.png: |
| * platform/efl/fast/invalid/014-expected.png: |
| * platform/efl/fast/invalid/016-expected.png: |
| * platform/efl/fast/invalid/021-expected.png: |
| * platform/efl/fast/invalid/table-inside-stray-table-content-expected.png: |
| * platform/efl/fast/layers/inline-dirty-z-order-lists-expected.png: |
| * platform/efl/fast/layers/layer-visibility-expected.png: |
| * platform/efl/fast/layers/layer-visibility-sublayer-expected.png: |
| * platform/efl/fast/layers/normal-flow-hit-test-expected.png: |
| * platform/efl/fast/layers/opacity-outline-expected.png: |
| * platform/efl/fast/layers/opacity-transforms-expected.png: |
| * platform/efl/fast/layers/remove-only-this-layer-update-expected.png: |
| * platform/efl/fast/layers/scroll-rect-to-visible-expected.png: |
| * platform/efl/fast/media/mq-animation-expected.png: |
| * platform/efl/fast/media/mq-aspect-ratio-expected.png: |
| * platform/efl/fast/media/mq-js-media-except-01-expected.png: |
| * platform/efl/fast/media/mq-js-media-except-02-expected.png: |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Update more pixel expectations in preparation for running pixel tests on the bots. |
| |
| * platform/efl/css3/flexbox/repaint-rtl-column-expected.png: |
| * platform/efl/fast/backgrounds/size/contain-and-cover-expected.png: |
| * platform/efl/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: |
| * platform/efl/fast/block/float/float-not-removed-from-next-sibling4-expected.png: |
| * platform/efl/fast/body-propagation/background-color/003-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-color/003-expected.png: |
| * platform/efl/fast/body-propagation/background-color/003-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-color/004-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-color/004-expected.png: |
| * platform/efl/fast/body-propagation/background-color/004-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-color/006-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-color/006-expected.png: |
| * platform/efl/fast/body-propagation/background-color/006-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-color/007-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-color/007-expected.png: |
| * platform/efl/fast/body-propagation/background-color/007-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-image/003-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-image/003-expected.png: |
| * platform/efl/fast/body-propagation/background-image/003-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-image/004-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-image/004-expected.png: |
| * platform/efl/fast/body-propagation/background-image/004-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-image/006-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-image/006-expected.png: |
| * platform/efl/fast/body-propagation/background-image/006-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-image/007-declarative-expected.png: |
| * platform/efl/fast/body-propagation/background-image/007-expected.png: |
| * platform/efl/fast/body-propagation/background-image/007-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-image/009-expected.png: |
| * platform/efl/fast/body-propagation/background-image/009-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/background-image/010-expected.png: |
| * platform/efl/fast/body-propagation/background-image/010-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/overflow/001-expected.png: |
| * platform/efl/fast/body-propagation/overflow/001-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/overflow/002-expected.png: |
| * platform/efl/fast/body-propagation/overflow/002-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/overflow/003-declarative-expected.png: |
| * platform/efl/fast/body-propagation/overflow/003-expected.png: |
| * platform/efl/fast/body-propagation/overflow/003-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/overflow/004-declarative-expected.png: |
| * platform/efl/fast/body-propagation/overflow/004-expected.png: |
| * platform/efl/fast/body-propagation/overflow/004-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/overflow/005-declarative-expected.png: |
| * platform/efl/fast/body-propagation/overflow/005-expected.png: |
| * platform/efl/fast/body-propagation/overflow/005-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/overflow/006-declarative-expected.png: |
| * platform/efl/fast/body-propagation/overflow/006-expected.png: |
| * platform/efl/fast/body-propagation/overflow/006-xhtml-expected.png: |
| * platform/efl/fast/body-propagation/overflow/007-declarative-expected.png: |
| * platform/efl/fast/body-propagation/overflow/007-expected.png: |
| * platform/efl/fast/body-propagation/overflow/007-xhtml-expected.png: |
| * platform/efl/fast/borders/bidi-002-expected.png: |
| * platform/efl/fast/borders/bidi-009a-expected.png: Added. |
| * platform/efl/fast/borders/bidi-012-expected.png: |
| * platform/efl/fast/borders/border-color-inherit-expected.png: |
| * platform/efl/fast/borders/border-image-01-expected.png: |
| * platform/efl/fast/borders/border-image-border-radius-expected.png: |
| * platform/efl/fast/borders/border-image-longhand-expected.png: |
| * platform/efl/fast/borders/border-image-massive-scale-expected.png: |
| * platform/efl/fast/borders/border-image-outset-expected.png: Added. |
| * platform/efl/fast/borders/border-image-outset-in-shorthand-expected.png: Added. |
| * platform/efl/fast/borders/border-image-repeat-expected.png: |
| * platform/efl/fast/borders/border-image-rotate-transform-expected.png: |
| * platform/efl/fast/borders/border-image-scale-transform-expected.png: |
| * platform/efl/fast/borders/border-image-scaled-expected.png: |
| * platform/efl/fast/borders/border-image-scrambled-expected.png: |
| * platform/efl/fast/borders/border-image-side-reduction-expected.png: Added. |
| * platform/efl/fast/borders/border-image-slices-expected.png: |
| * platform/efl/fast/borders/border-image-source-expected.png: |
| * platform/efl/fast/borders/border-radius-complex-inner-expected.png: |
| * platform/efl/fast/borders/border-radius-constraints-expected.png: |
| * platform/efl/fast/borders/border-radius-huge-assert-expected.png: |
| * platform/efl/fast/borders/border-radius-inset-outset-expected.png: |
| * platform/efl/fast/borders/border-radius-split-inline-expected.png: |
| * platform/efl/fast/borders/borderRadiusAllStylesAllCorners-expected.png: |
| * platform/efl/fast/borders/different-color-borders-expected.png: |
| * platform/efl/fast/borders/mixed-border-styles-expected.png: |
| * platform/efl/fast/borders/mixed-border-styles-radius-expected.png: |
| * platform/efl/fast/borders/mixed-border-styles-radius2-expected.png: |
| * platform/efl/fast/borders/outline-alpha-block-expected.png: |
| * platform/efl/fast/borders/outline-alpha-inline-expected.png: |
| * platform/efl/fast/borders/rtl-border-01-expected.png: |
| * platform/efl/fast/borders/rtl-border-02-expected.png: |
| * platform/efl/fast/borders/rtl-border-03-expected.png: |
| * platform/efl/fast/borders/rtl-border-04-expected.png: |
| * platform/efl/fast/borders/rtl-border-05-expected.png: |
| * platform/efl/fast/canvas/arc360-expected.png: |
| * platform/efl/fast/canvas/canvas-before-css-expected.png: |
| * platform/efl/fast/canvas/canvas-composite-expected.png: |
| * platform/efl/fast/canvas/canvas-composite-transformclip-expected.png: |
| * platform/efl/fast/canvas/canvas-incremental-repaint-expected.png: |
| * platform/efl/fast/canvas/canvas-transforms-during-path-expected.png: |
| * platform/efl/fast/canvas/canvas-zoom-expected.png: |
| * platform/efl/fast/canvas/check-stale-putImageData-expected.png: Added. |
| * platform/efl/fast/canvas/drawImage-with-globalAlpha-expected.png: |
| * platform/efl/fast/canvas/fillrect-gradient-zero-stops-expected.png: |
| * platform/efl/fast/canvas/fillrect_gradient-expected.png: |
| * platform/efl/fast/canvas/image-object-in-canvas-expected.png: |
| * platform/efl/fast/canvas/patternfill-repeat-expected.png: |
| * platform/efl/fast/canvas/quadraticCurveTo-expected.png: |
| * platform/efl/fast/canvas/setWidthResetAfterForcedRender-expected.png: |
| * platform/efl/fast/canvas/shadow-offset-1-expected.png: |
| * platform/efl/fast/canvas/shadow-offset-2-expected.png: |
| * platform/efl/fast/canvas/shadow-offset-3-expected.png: |
| * platform/efl/fast/canvas/shadow-offset-4-expected.png: |
| * platform/efl/fast/canvas/shadow-offset-5-expected.png: |
| * platform/efl/fast/canvas/shadow-offset-6-expected.png: |
| * platform/efl/fast/canvas/shadow-offset-7-expected.png: |
| * platform/efl/fast/canvas/zero-size-fill-rect-expected.png: |
| * platform/efl/fast/clip/004-expected.png: |
| * platform/efl/fast/clip/005-expected.png: |
| * platform/efl/fast/clip/006-expected.png: |
| * platform/efl/fast/clip/007-expected.png: |
| * platform/efl/fast/clip/009-expected.png: |
| * platform/efl/fast/clip/010-expected.png: |
| * platform/efl/fast/clip/013-expected.png: |
| * platform/efl/fast/clip/014-expected.png: |
| * platform/efl/fast/clip/nestedTransparencyClip-expected.png: |
| * platform/efl/fast/clip/outline-overflowClip-expected.png: |
| * platform/efl/fast/clip/overflow-border-radius-combinations-expected.png: |
| * platform/efl/fast/clip/overflow-border-radius-composited-expected.png: |
| * platform/efl/fast/clip/overflow-border-radius-fixed-position-expected.png: |
| * platform/efl/fast/clip/overflow-border-radius-transformed-expected.png: |
| * platform/efl/fast/compact/001-expected.png: |
| * platform/efl/fast/compact/002-expected.png: |
| * platform/efl/fast/css-generated-content/007-expected.png: |
| * platform/efl/fast/css-generated-content/012-expected.png: |
| * platform/efl/fast/css-generated-content/016-expected.png: |
| * platform/efl/fast/css-generated-content/after-order-expected.png: |
| * platform/efl/fast/css-generated-content/before-with-first-letter-expected.png: |
| * platform/efl/fast/css-generated-content/beforeAfter-interdocument-expected.png: |
| * platform/efl/fast/css-generated-content/hover-style-change-expected.png: |
| * platform/efl/fast/css-generated-content/table-before-after-child-add-expected.png: |
| * platform/efl/fast/css-generated-content/table-cell-before-after-child-add-expected.png: |
| * platform/efl/fast/css-generated-content/table-row-before-after-child-add-expected.png: |
| * platform/efl/fast/css-generated-content/table-table-before-after-child-add-expected.png: |
| * platform/efl/fast/css-generated-content/wbr-with-before-content-expected.png: |
| * platform/efl/fast/css/percent-top-value-with-relative-position-expected.png: |
| * platform/efl/media/controls-layout-direction-expected.png: |
| * platform/efl/printing/page-rule-in-media-query-expected.png: |
| * platform/efl/transitions/suspend-transform-transition-expected.png: Added. |
| |
| 2012-10-03 Andrey Kosyakov <caseq@chromium.org> |
| |
| Unreviewed. Skip media/event-queue-crash.html so that its console message does not cause next test to flake. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-03 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Unreviewed gardening, add expected files for new passing tests. |
| |
| * platform/qt/css3/masking/clip-path-circle-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-circle-filter-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-circle-overflow-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-circle-overflow-hidden-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-circle-relative-overflow-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-ellipse-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-polygon-evenodd-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-polygon-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-polygon-nonzero-expected.png: Added. |
| * platform/qt/css3/masking/clip-path-rectangle-expected.png: Added. |
| * platform/qt/fast/canvas/canvas-render-layer-expected.png: Added. |
| * platform/qt/fast/overflow/paged-x-div-expected.png: Added. |
| * platform/qt/fast/overflow/paged-x-div-with-column-gap-expected.png: Added. |
| * platform/qt/fast/overflow/paged-x-on-root-expected.png: Added. |
| * platform/qt/fast/overflow/paged-x-with-column-gap-expected.png: Added. |
| * platform/qt/fast/overflow/paged-y-div-expected.png: Added. |
| * platform/qt/fast/overflow/paged-y-on-root-expected.png: Added. |
| |
| 2012-10-03 Keishi Hattori <keishi@webkit.org> |
| |
| Implement DataList UI for input type time on chromium |
| https://bugs.webkit.org/show_bug.cgi?id=98240 |
| |
| Reviewed by Kent Tamura. |
| |
| * fast/forms/number/number-spinbutton-click-in-iframe.html: |
| * fast/forms/resources/common-spinbutton-click-in-iframe.js: |
| (getSpinButton): This broke because of the change to shadow DOM structure. |
| * fast/forms/resources/common.js: |
| (traverseNextNode): |
| (getElementByPseudoId): This finds a descendant node with a matching pseudo id. |
| * fast/forms/resources/suggestion-picker-common.js: Added. |
| (highlightedEntry): |
| (openPicker): |
| (sendKey): |
| * fast/forms/time-multiple-fields/time-multiple-fields-focus-style.html: |
| * fast/forms/time-multiple-fields/time-multiple-fields-spinbutton-click-in-iframe.html: |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.png: Added. |
| * platform/chromium-mac/platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.png: Added. |
| * platform/chromium/TestExpectations: |
| * platform/chromium/fast/forms/datalist/input-list-expected.txt: |
| * platform/chromium/fast/forms/date/date-suggestion-picker-mouse-operations-expected.txt: |
| * platform/chromium/fast/forms/date/date-suggestion-picker-mouse-operations.html: |
| * platform/chromium/fast/forms/date/date-suggestion-picker-mouse-operations.html: |
| * platform/chromium/fast/forms/time/time-suggestion-picker-appearance-expected.txt: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl-expected.txt: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-appearance-rtl.html: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar-expected.txt: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-appearance-with-scroll-bar.html: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-appearance.html: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-key-operations-expected.txt: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-key-operations.html: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-mouse-operations-expected.txt: Added. |
| * platform/chromium/fast/forms/time/time-suggestion-picker-mouse-operations.html: Added. |
| |
| 2012-10-03 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Enable mock scrollbars |
| https://bugs.webkit.org/show_bug.cgi?id=98011 |
| |
| Unreviewed gardening, update expected files after enabling mock scrollbars. (r130283) |
| |
| * platform/qt-5.0-wk2/compositing/columns/composited-in-paginated-expected.txt: |
| * platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.png: |
| * platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/geometry/fixed-in-composited-expected.png: |
| * platform/qt-5.0-wk2/compositing/geometry/fixed-in-composited-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.png: |
| * platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/iframes/become-composited-nested-iframes-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/become-overlapped-iframe-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/composited-parent-iframe-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe-delayed-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe2-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe3-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/enter-compositing-iframe-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/iframe-copy-on-scroll-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/iframes/iframe-copy-on-scroll-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/iframes/iframe-in-composited-layer-expected.png: |
| * platform/qt-5.0-wk2/compositing/iframes/iframe-in-composited-layer-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/iframe-resize-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/invisible-nested-iframe-show-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/iframes/overlapped-iframe-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/overlapped-nested-iframes-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/resizer-expected.txt: |
| * platform/qt-5.0-wk2/compositing/iframes/scrolling-iframe-expected.txt: |
| * platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-and-transform-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-and-transform-expected.txt: |
| * platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-out-of-view-expected.txt: |
| * platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-under-transform-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-under-transform-expected.txt: |
| * platform/qt-5.0-wk2/compositing/layer-creation/no-compositing-for-preserve-3d-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/masks/masked-ancestor-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/masks/masked-ancestor-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/masks/multiple-masks-expected.png: |
| * platform/qt-5.0-wk2/compositing/masks/multiple-masks-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/masks/simple-composited-mask-expected.png: |
| * platform/qt-5.0-wk2/compositing/masks/simple-composited-mask-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/overflow/content-gains-scrollbars-expected.txt: |
| * platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.png: |
| * platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/overflow/overflow-scrollbar-layers-expected.txt: |
| * platform/qt-5.0-wk2/compositing/overflow/scroll-ancestor-update-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/overflow/scroll-ancestor-update-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/overflow/scrollbar-painting-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/overflow/scrollbar-painting-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/repaint/newly-composited-on-scroll-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/repaint/newly-composited-on-scroll-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-absolute-overflow-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-absolute-overflow-expected.txt: |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-expected.txt: |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-absolute-overflow-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-absolute-overflow-expected.txt: |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt: |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-fixed-overflow-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-fixed-overflow-expected.txt: |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.png: Added. |
| * platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt: |
| * platform/qt-5.0-wk2/compositing/self-painting-layers-expected.png: |
| * platform/qt-5.0-wk2/compositing/self-painting-layers-expected.txt: Added. |
| * platform/qt-5.0-wk2/compositing/tiled-layers-hidpi-expected.txt: |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Rebaseline pixel expectations for scrollbars/ and tables/mozilla_expected_failures/. |
| |
| * platform/efl/scrollbars/scrollbars-on-positioned-content-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug1010-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug101759-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug1128-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug11331-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug1164-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug11945-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug1262-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug14489-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug17826-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug18770-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug19526-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug21518-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug220653-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug22122-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug25707-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug3105-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-10-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-15-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-7-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug33784-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug42043-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug4294-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug45621-expected.png: Added. |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug47163-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug51000-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug56024-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug65372-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug7113-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug7121-2-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug73629-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug8499-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug89315-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/core/backgrounds-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/core/col_span2-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/core/cols1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/core/columns-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/core/conflicts-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/dom/appendCells1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/dom/appendCol1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: |
| * platform/efl/tables/mozilla_expected_failures/other/empty_cells-expected.png: |
| |
| 2012-10-03 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: UISourceCode commitWorkingCopy should not fail when original script had syntax error. |
| https://bugs.webkit.org/show_bug.cgi?id=97272 |
| |
| Reviewed by Pavel Feldman. |
| |
| This patch is based on patch by John J. Barton. |
| |
| * http/tests/inspector/live-edit-test.js: |
| (initialize_LiveEditTest.InspectorTest.replaceInSource): |
| (initialize_LiveEditTest): |
| * inspector/debugger/live-edit-expected.txt: |
| * inspector/debugger/live-edit.html: |
| * inspector/debugger/resources/edit-me-syntax-error.js: Added. |
| (syntaxError): |
| * platform/chromium/TestExpectations: re-enabled the test. |
| |
| 2012-10-03 Csaba Osztrogonác <ossy@webkit.org> |
| |
| [Qt] Enable mock scrollbars |
| https://bugs.webkit.org/show_bug.cgi?id=98011 |
| |
| Unreviewed gardening, update expected files after enabling mock scrollbars. |
| |
| * platform/qt-5.0-wk2/fast/text/large-text-composed-char-expected.png: Removed. |
| * platform/qt-5.0-wk2/fast/text/large-text-composed-char-expected.txt: Removed. |
| * platform/qt-5.0/fast/forms/form-element-geometry-expected.png: Removed. |
| * platform/qt-5.0/fast/forms/form-element-geometry-expected.txt: Removed. |
| * platform/qt-5.0/fast/forms/listbox-bidi-align-expected.txt: Removed. |
| * platform/qt-5.0/fast/forms/textarea-align-expected.png: Removed. |
| * platform/qt-5.0/fast/forms/textarea-align-expected.txt: Removed. |
| * platform/qt-5.0/fast/forms/textarea-setinnerhtml-expected.png: Removed. |
| * platform/qt-5.0/fast/forms/textarea-setinnerhtml-expected.txt: Removed. |
| * platform/qt-5.0/fast/table/003-expected.png: Removed. |
| * platform/qt-5.0/fast/table/003-expected.txt: Removed. |
| * platform/qt-5.0/fast/table/border-collapsing/004-expected.txt: Removed. |
| * platform/qt-5.0/fast/text/backslash-to-yen-sign-euc-expected.txt: Removed. |
| * platform/qt-5.0/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: Removed. |
| * platform/qt-5.0/fast/text/large-text-composed-char-expected.png: Removed. |
| * platform/qt-5.0/fast/text/large-text-composed-char-expected.txt: Removed. |
| * platform/qt-5.0/fast/text/softHyphen-expected.txt: Removed. |
| * platform/qt-5.0/fast/text/text-letter-spacing-expected.txt: Removed. |
| * platform/qt-5.0/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Removed. |
| * platform/qt-5.0/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.txt: Removed. |
| * platform/qt/compositing/overflow/clipping-ancestor-with-accelerated-scrolling-ancestor-expected.txt: Added. |
| * platform/qt/compositing/overflow/nested-scrolling-expected.txt: Added. |
| * platform/qt/compositing/overflow/overflow-clip-with-accelerated-scrolling-ancestor-expected.txt: Added. |
| * platform/qt/compositing/overflow/remove-overflow-crash2-expected.txt: Added. |
| * platform/qt/css1/basic/comments-expected.png: |
| * platform/qt/css1/basic/comments-expected.txt: |
| * platform/qt/css1/basic/containment-expected.png: |
| * platform/qt/css1/basic/containment-expected.txt: |
| * platform/qt/css1/basic/id_as_selector-expected.png: |
| * platform/qt/css1/basic/id_as_selector-expected.txt: |
| * platform/qt/css1/basic/inheritance-expected.png: |
| * platform/qt/css1/basic/inheritance-expected.txt: |
| * platform/qt/css1/box_properties/border-expected.png: |
| * platform/qt/css1/box_properties/border-expected.txt: |
| * platform/qt/css1/box_properties/border_bottom-expected.png: |
| * platform/qt/css1/box_properties/border_bottom-expected.txt: |
| * platform/qt/css1/box_properties/border_bottom_width-expected.png: |
| * platform/qt/css1/box_properties/border_bottom_width-expected.txt: |
| * platform/qt/css1/box_properties/border_left-expected.png: |
| * platform/qt/css1/box_properties/border_left-expected.txt: |
| * platform/qt/css1/box_properties/border_left_width-expected.png: |
| * platform/qt/css1/box_properties/border_left_width-expected.txt: |
| * platform/qt/css1/box_properties/border_right_inline-expected.png: |
| * platform/qt/css1/box_properties/border_right_inline-expected.txt: |
| * platform/qt/css1/box_properties/border_right_width-expected.png: |
| * platform/qt/css1/box_properties/border_right_width-expected.txt: |
| * platform/qt/css1/box_properties/border_style-expected.png: |
| * platform/qt/css1/box_properties/border_style-expected.txt: |
| * platform/qt/css1/box_properties/border_top-expected.png: |
| * platform/qt/css1/box_properties/border_top-expected.txt: |
| * platform/qt/css1/box_properties/border_top_width-expected.png: |
| * platform/qt/css1/box_properties/border_top_width-expected.txt: |
| * platform/qt/css1/box_properties/border_width-expected.png: |
| * platform/qt/css1/box_properties/border_width-expected.txt: |
| * platform/qt/css1/box_properties/clear-expected.png: |
| * platform/qt/css1/box_properties/clear-expected.txt: |
| * platform/qt/css1/box_properties/clear_float-expected.png: |
| * platform/qt/css1/box_properties/clear_float-expected.txt: |
| * platform/qt/css1/box_properties/float_elements_in_series-expected.png: |
| * platform/qt/css1/box_properties/float_elements_in_series-expected.txt: |
| * platform/qt/css1/box_properties/float_margin-expected.png: |
| * platform/qt/css1/box_properties/float_margin-expected.txt: |
| * platform/qt/css1/box_properties/float_on_text_elements-expected.png: |
| * platform/qt/css1/box_properties/float_on_text_elements-expected.txt: |
| * platform/qt/css1/box_properties/height-expected.png: |
| * platform/qt/css1/box_properties/height-expected.txt: |
| * platform/qt/css1/box_properties/margin-expected.png: |
| * platform/qt/css1/box_properties/margin-expected.txt: |
| * platform/qt/css1/box_properties/margin_bottom-expected.png: |
| * platform/qt/css1/box_properties/margin_bottom-expected.txt: |
| * platform/qt/css1/box_properties/margin_inline-expected.png: |
| * platform/qt/css1/box_properties/margin_inline-expected.txt: |
| * platform/qt/css1/box_properties/margin_left-expected.png: |
| * platform/qt/css1/box_properties/margin_left-expected.txt: |
| * platform/qt/css1/box_properties/margin_right-expected.png: |
| * platform/qt/css1/box_properties/margin_right-expected.txt: |
| * platform/qt/css1/box_properties/margin_top-expected.png: |
| * platform/qt/css1/box_properties/margin_top-expected.txt: |
| * platform/qt/css1/box_properties/padding-expected.png: |
| * platform/qt/css1/box_properties/padding-expected.txt: |
| * platform/qt/css1/box_properties/padding_bottom-expected.png: |
| * platform/qt/css1/box_properties/padding_bottom-expected.txt: |
| * platform/qt/css1/box_properties/padding_inline-expected.png: |
| * platform/qt/css1/box_properties/padding_inline-expected.txt: |
| * platform/qt/css1/box_properties/padding_left-expected.png: |
| * platform/qt/css1/box_properties/padding_left-expected.txt: |
| * platform/qt/css1/box_properties/padding_right-expected.png: |
| * platform/qt/css1/box_properties/padding_right-expected.txt: |
| * platform/qt/css1/box_properties/padding_top-expected.png: |
| * platform/qt/css1/box_properties/padding_top-expected.txt: |
| * platform/qt/css1/box_properties/width-expected.png: |
| * platform/qt/css1/box_properties/width-expected.txt: |
| * platform/qt/css1/cascade/cascade_order-expected.png: |
| * platform/qt/css1/cascade/cascade_order-expected.txt: |
| * platform/qt/css1/classification/display-expected.png: |
| * platform/qt/css1/classification/display-expected.txt: |
| * platform/qt/css1/classification/list_style_type-expected.png: |
| * platform/qt/css1/classification/list_style_type-expected.txt: |
| * platform/qt/css1/classification/white_space-expected.png: |
| * platform/qt/css1/classification/white_space-expected.txt: |
| * platform/qt/css1/color_and_background/background-expected.png: |
| * platform/qt/css1/color_and_background/background-expected.txt: |
| * platform/qt/css1/color_and_background/background_attachment-expected.png: |
| * platform/qt/css1/color_and_background/background_attachment-expected.txt: |
| * platform/qt/css1/color_and_background/background_position-expected.png: |
| * platform/qt/css1/color_and_background/background_position-expected.txt: |
| * platform/qt/css1/color_and_background/background_repeat-expected.png: |
| * platform/qt/css1/color_and_background/background_repeat-expected.txt: |
| * platform/qt/css1/conformance/forward_compatible_parsing-expected.png: |
| * platform/qt/css1/conformance/forward_compatible_parsing-expected.txt: |
| * platform/qt/css1/font_properties/font-expected.png: |
| * platform/qt/css1/font_properties/font-expected.txt: |
| * platform/qt/css1/font_properties/font_family-expected.png: |
| * platform/qt/css1/font_properties/font_family-expected.txt: |
| * platform/qt/css1/font_properties/font_size-expected.png: |
| * platform/qt/css1/font_properties/font_size-expected.txt: |
| * platform/qt/css1/font_properties/font_weight-expected.png: |
| * platform/qt/css1/font_properties/font_weight-expected.txt: |
| * platform/qt/css1/formatting_model/height_of_lines-expected.png: |
| * platform/qt/css1/formatting_model/height_of_lines-expected.txt: |
| * platform/qt/css1/formatting_model/horizontal_formatting-expected.png: |
| * platform/qt/css1/formatting_model/horizontal_formatting-expected.txt: |
| * platform/qt/css1/formatting_model/inline_elements-expected.png: |
| * platform/qt/css1/formatting_model/inline_elements-expected.txt: |
| * platform/qt/css1/formatting_model/replaced_elements-expected.png: |
| * platform/qt/css1/formatting_model/replaced_elements-expected.txt: |
| * platform/qt/css1/formatting_model/vertical_formatting-expected.png: |
| * platform/qt/css1/formatting_model/vertical_formatting-expected.txt: |
| * platform/qt/css1/pseudo/anchor-expected.png: |
| * platform/qt/css1/pseudo/anchor-expected.txt: |
| * platform/qt/css1/pseudo/firstletter-expected.png: |
| * platform/qt/css1/pseudo/firstletter-expected.txt: |
| * platform/qt/css1/pseudo/firstline-expected.png: |
| * platform/qt/css1/pseudo/firstline-expected.txt: |
| * platform/qt/css1/pseudo/multiple_pseudo_elements-expected.png: |
| * platform/qt/css1/pseudo/multiple_pseudo_elements-expected.txt: |
| * platform/qt/css1/text_properties/letter_spacing-expected.png: |
| * platform/qt/css1/text_properties/letter_spacing-expected.txt: |
| * platform/qt/css1/text_properties/line_height-expected.png: |
| * platform/qt/css1/text_properties/line_height-expected.txt: |
| * platform/qt/css1/text_properties/text_decoration-expected.png: |
| * platform/qt/css1/text_properties/text_decoration-expected.txt: |
| * platform/qt/css1/text_properties/text_indent-expected.png: |
| * platform/qt/css1/text_properties/text_indent-expected.txt: |
| * platform/qt/css1/text_properties/text_transform-expected.png: |
| * platform/qt/css1/text_properties/text_transform-expected.txt: |
| * platform/qt/css1/text_properties/vertical_align-expected.png: |
| * platform/qt/css1/text_properties/vertical_align-expected.txt: |
| * platform/qt/css1/text_properties/word_spacing-expected.png: |
| * platform/qt/css1/text_properties/word_spacing-expected.txt: |
| * platform/qt/css1/units/color_units-expected.png: |
| * platform/qt/css1/units/color_units-expected.txt: |
| * platform/qt/css1/units/length_units-expected.png: |
| * platform/qt/css1/units/length_units-expected.txt: |
| * platform/qt/css2.1/20110323/absolute-replaced-height-007-expected.txt: |
| * platform/qt/css2.1/20110323/absolute-replaced-height-014-expected.txt: |
| * platform/qt/css2.1/20110323/absolute-replaced-height-021-expected.txt: |
| * platform/qt/css2.1/20110323/absolute-replaced-height-028-expected.txt: |
| * platform/qt/css2.1/20110323/absolute-replaced-height-035-expected.txt: |
| * platform/qt/css2.1/20110323/abspos-containing-block-initial-001-expected.png: Added. |
| * platform/qt/css2.1/20110323/abspos-containing-block-initial-001-expected.txt: |
| * platform/qt/css2.1/20110323/abspos-containing-block-initial-007-expected.png: Added. |
| * platform/qt/css2.1/20110323/abspos-containing-block-initial-007-expected.txt: Added. |
| * platform/qt/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: |
| * platform/qt/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt: |
| * platform/qt/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: |
| * platform/qt/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-002-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-002-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-004-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-004-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-006-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-006-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-008-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-008-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-010-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-010-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-012-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-012-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-014-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-014-expected.txt: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-016-expected.png: |
| * platform/qt/css2.1/20110323/block-non-replaced-height-016-expected.txt: |
| * platform/qt/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: |
| * platform/qt/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: |
| * platform/qt/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: |
| * platform/qt/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt: |
| * platform/qt/css2.1/t0803-c5505-mrgn-02-c-expected.png: |
| * platform/qt/css2.1/t0803-c5505-mrgn-02-c-expected.txt: |
| * platform/qt/css2.1/t080301-c411-vt-mrgn-00-b-expected.png: |
| * platform/qt/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt: |
| * platform/qt/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png: |
| * platform/qt/css2.1/t0905-c5525-fltclr-00-c-ag-expected.txt: |
| * platform/qt/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png: |
| * platform/qt/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.txt: |
| * platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: |
| * platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt: |
| * platform/qt/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png: |
| * platform/qt/css2.1/t0905-c5526-fltclr-00-c-ag-expected.txt: |
| * platform/qt/css2.1/t1002-c5523-width-02-b-g-expected.png: |
| * platform/qt/css2.1/t1002-c5523-width-02-b-g-expected.txt: |
| * platform/qt/css2.1/t1202-counters-08-b-expected.png: |
| * platform/qt/css2.1/t1202-counters-08-b-expected.txt: |
| * platform/qt/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png: |
| * platform/qt/css2.1/t140201-c535-bg-fixd-00-b-g-expected.txt: |
| * platform/qt/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png: |
| * platform/qt/css2.1/t140201-c537-bgfxps-00-c-ag-expected.txt: |
| * platform/qt/css2.1/t1508-c527-font-07-b-expected.png: |
| * platform/qt/css2.1/t1508-c527-font-07-b-expected.txt: |
| * platform/qt/css3/masking/clip-path-circle-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-circle-filter-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-circle-overflow-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-circle-overflow-hidden-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-circle-relative-overflow-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-ellipse-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-polygon-evenodd-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-polygon-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-polygon-nonzero-expected.txt: Added. |
| * platform/qt/css3/masking/clip-path-rectangle-expected.txt: Added. |
| * platform/qt/editing/deleting/delete-after-span-ws-001-expected.png: |
| * platform/qt/editing/deleting/delete-after-span-ws-001-expected.txt: |
| * platform/qt/editing/deleting/delete-after-span-ws-002-expected.png: |
| * platform/qt/editing/deleting/delete-after-span-ws-002-expected.txt: |
| * platform/qt/editing/deleting/delete-after-span-ws-003-expected.png: |
| * platform/qt/editing/deleting/delete-after-span-ws-003-expected.txt: |
| * platform/qt/editing/deleting/delete-line-end-ws-001-expected.png: |
| * platform/qt/editing/deleting/delete-line-end-ws-001-expected.txt: |
| * platform/qt/editing/deleting/delete-line-end-ws-002-expected.png: |
| * platform/qt/editing/deleting/delete-line-end-ws-002-expected.txt: |
| * platform/qt/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: |
| * platform/qt/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: |
| * platform/qt/editing/input/reveal-caret-of-multiline-input-expected.png: |
| * platform/qt/editing/input/reveal-caret-of-multiline-input-expected.txt: |
| * platform/qt/editing/inserting/4960120-1-expected.png: |
| * platform/qt/editing/inserting/4960120-1-expected.txt: |
| * platform/qt/editing/inserting/insert-div-023-expected.png: |
| * platform/qt/editing/inserting/insert-div-023-expected.txt: |
| * platform/qt/editing/selection/focus_editable_html-expected.png: |
| * platform/qt/editing/selection/focus_editable_html-expected.txt: |
| * platform/qt/editing/selection/iframe-expected.png: |
| * platform/qt/editing/selection/iframe-expected.txt: |
| * platform/qt/editing/selection/select-all-001-expected.png: |
| * platform/qt/editing/selection/select-all-001-expected.txt: |
| * platform/qt/editing/selection/select-all-002-expected.png: |
| * platform/qt/editing/selection/select-all-002-expected.txt: |
| * platform/qt/editing/selection/select-all-003-expected.png: |
| * platform/qt/editing/selection/select-all-003-expected.txt: |
| * platform/qt/editing/selection/select-all-004-expected.png: |
| * platform/qt/editing/selection/select-all-004-expected.txt: |
| * platform/qt/editing/selection/unrendered-001-expected.png: |
| * platform/qt/editing/selection/unrendered-001-expected.txt: |
| * platform/qt/editing/selection/unrendered-002-expected.png: |
| * platform/qt/editing/selection/unrendered-002-expected.txt: |
| * platform/qt/editing/selection/unrendered-003-expected.png: |
| * platform/qt/editing/selection/unrendered-003-expected.txt: |
| * platform/qt/editing/selection/unrendered-004-expected.png: |
| * platform/qt/editing/selection/unrendered-004-expected.txt: |
| * platform/qt/editing/selection/unrendered-005-expected.png: |
| * platform/qt/editing/selection/unrendered-005-expected.txt: |
| * platform/qt/fast/backgrounds/background-inherit-color-bug-expected.png: |
| * platform/qt/fast/backgrounds/background-inherit-color-bug-expected.txt: |
| * platform/qt/fast/backgrounds/background-leakage-transforms-expected.png: |
| * platform/qt/fast/backgrounds/background-leakage-transforms-expected.txt: |
| * platform/qt/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: |
| * platform/qt/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.txt: |
| * platform/qt/fast/backgrounds/size/backgroundSize15-expected.png: |
| * platform/qt/fast/backgrounds/size/backgroundSize15-expected.txt: |
| * platform/qt/fast/block/basic/016-expected.png: |
| * platform/qt/fast/block/basic/016-expected.txt: |
| * platform/qt/fast/block/basic/truncation-rtl-expected.png: |
| * platform/qt/fast/block/basic/truncation-rtl-expected.txt: |
| * platform/qt/fast/block/float/008-expected.png: |
| * platform/qt/fast/block/float/008-expected.txt: Added. |
| * platform/qt/fast/block/float/013-expected.png: |
| * platform/qt/fast/block/float/013-expected.txt: |
| * platform/qt/fast/block/float/019-expected.png: |
| * platform/qt/fast/block/float/019-expected.txt: Added. |
| * platform/qt/fast/block/float/021-expected.png: |
| * platform/qt/fast/block/float/021-expected.txt: |
| * platform/qt/fast/block/float/025-expected.png: |
| * platform/qt/fast/block/float/025-expected.txt: |
| * platform/qt/fast/block/float/027-expected.png: |
| * platform/qt/fast/block/float/027-expected.txt: |
| * platform/qt/fast/block/float/032-expected.png: |
| * platform/qt/fast/block/float/032-expected.txt: |
| * platform/qt/fast/block/float/033-expected.png: |
| * platform/qt/fast/block/float/033-expected.txt: |
| * platform/qt/fast/block/float/035-expected.png: |
| * platform/qt/fast/block/float/035-expected.txt: Added. |
| * platform/qt/fast/block/float/avoidance-percent-width-strict-expected.png: |
| * platform/qt/fast/block/float/avoidance-percent-width-strict-expected.txt: |
| * platform/qt/fast/block/float/br-with-clear-2-expected.png: |
| * platform/qt/fast/block/float/br-with-clear-2-expected.txt: |
| * platform/qt/fast/block/float/centered-float-avoidance-complexity-expected.png: |
| * platform/qt/fast/block/float/centered-float-avoidance-complexity-expected.txt: |
| * platform/qt/fast/block/float/float-avoidance-expected.png: |
| * platform/qt/fast/block/float/float-avoidance-expected.txt: |
| * platform/qt/fast/block/float/nested-clearance-expected.png: |
| * platform/qt/fast/block/float/nested-clearance-expected.txt: |
| * platform/qt/fast/block/float/overhanging-tall-block-expected.png: |
| * platform/qt/fast/block/float/overhanging-tall-block-expected.txt: |
| * platform/qt/fast/block/float/relative-painted-twice-expected.png: |
| * platform/qt/fast/block/float/relative-painted-twice-expected.txt: Added. |
| * platform/qt/fast/block/float/shrink-to-avoid-float-complexity-expected.png: |
| * platform/qt/fast/block/float/shrink-to-avoid-float-complexity-expected.txt: |
| * platform/qt/fast/block/lineboxcontain/parsing-invalid-expected.png: |
| * platform/qt/fast/block/lineboxcontain/parsing-invalid-expected.txt: |
| * platform/qt/fast/block/margin-collapse/103-expected.png: |
| * platform/qt/fast/block/margin-collapse/103-expected.txt: |
| * platform/qt/fast/block/margin-collapse/104-expected.png: |
| * platform/qt/fast/block/margin-collapse/104-expected.txt: |
| * platform/qt/fast/block/margin-collapse/empty-clear-blocks-expected.png: |
| * platform/qt/fast/block/margin-collapse/empty-clear-blocks-expected.txt: |
| * platform/qt/fast/block/positioning/047-expected.png: |
| * platform/qt/fast/block/positioning/047-expected.txt: |
| * platform/qt/fast/block/positioning/051-expected.png: |
| * platform/qt/fast/block/positioning/051-expected.txt: |
| * platform/qt/fast/block/positioning/055-expected.png: |
| * platform/qt/fast/block/positioning/055-expected.txt: |
| * platform/qt/fast/block/positioning/auto/007-expected.png: |
| * platform/qt/fast/block/positioning/auto/007-expected.txt: |
| * platform/qt/fast/block/positioning/auto/vertical-lr/005-expected.png: |
| * platform/qt/fast/block/positioning/auto/vertical-lr/005-expected.txt: |
| * platform/qt/fast/block/positioning/auto/vertical-lr/007-expected.png: |
| * platform/qt/fast/block/positioning/auto/vertical-lr/007-expected.txt: |
| * platform/qt/fast/block/positioning/auto/vertical-rl/005-expected.png: |
| * platform/qt/fast/block/positioning/auto/vertical-rl/005-expected.txt: |
| * platform/qt/fast/block/positioning/auto/vertical-rl/007-expected.png: |
| * platform/qt/fast/block/positioning/auto/vertical-rl/007-expected.txt: |
| * platform/qt/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.png: |
| * platform/qt/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt: |
| * platform/qt/fast/block/positioning/negative-rel-position-expected.png: |
| * platform/qt/fast/block/positioning/negative-rel-position-expected.txt: Added. |
| * platform/qt/fast/block/positioning/relative-overflow-block-expected.png: |
| * platform/qt/fast/block/positioning/relative-overflow-block-expected.txt: |
| * platform/qt/fast/block/positioning/relative-overflow-replaced-expected.png: |
| * platform/qt/fast/block/positioning/relative-overflow-replaced-expected.txt: |
| * platform/qt/fast/block/positioning/relative-overflow-replaced-float-expected.png: |
| * platform/qt/fast/block/positioning/relative-overflow-replaced-float-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/001-expected.png: |
| * platform/qt/fast/body-propagation/overflow/001-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/001-xhtml-expected.png: |
| * platform/qt/fast/body-propagation/overflow/001-xhtml-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/002-expected.png: |
| * platform/qt/fast/body-propagation/overflow/002-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/002-xhtml-expected.png: |
| * platform/qt/fast/body-propagation/overflow/002-xhtml-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/003-declarative-expected.png: |
| * platform/qt/fast/body-propagation/overflow/003-declarative-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/003-expected.png: |
| * platform/qt/fast/body-propagation/overflow/003-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/003-xhtml-expected.png: |
| * platform/qt/fast/body-propagation/overflow/003-xhtml-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/004-declarative-expected.png: |
| * platform/qt/fast/body-propagation/overflow/004-declarative-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/004-expected.png: |
| * platform/qt/fast/body-propagation/overflow/004-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/004-xhtml-expected.png: |
| * platform/qt/fast/body-propagation/overflow/004-xhtml-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/005-declarative-expected.png: |
| * platform/qt/fast/body-propagation/overflow/005-declarative-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/005-expected.png: |
| * platform/qt/fast/body-propagation/overflow/005-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/005-xhtml-expected.png: |
| * platform/qt/fast/body-propagation/overflow/005-xhtml-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/006-declarative-expected.png: |
| * platform/qt/fast/body-propagation/overflow/006-declarative-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/006-expected.png: |
| * platform/qt/fast/body-propagation/overflow/006-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/006-xhtml-expected.png: |
| * platform/qt/fast/body-propagation/overflow/006-xhtml-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/007-declarative-expected.png: |
| * platform/qt/fast/body-propagation/overflow/007-declarative-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/007-expected.png: |
| * platform/qt/fast/body-propagation/overflow/007-expected.txt: |
| * platform/qt/fast/body-propagation/overflow/007-xhtml-expected.png: |
| * platform/qt/fast/body-propagation/overflow/007-xhtml-expected.txt: |
| * platform/qt/fast/borders/border-image-massive-scale-expected.png: |
| * platform/qt/fast/borders/border-image-massive-scale-expected.txt: |
| * platform/qt/fast/borders/border-image-rotate-transform-expected.png: |
| * platform/qt/fast/borders/border-image-rotate-transform-expected.txt: |
| * platform/qt/fast/borders/border-image-scale-transform-expected.png: |
| * platform/qt/fast/borders/border-image-scale-transform-expected.txt: |
| * platform/qt/fast/borders/border-image-scaled-expected.png: |
| * platform/qt/fast/borders/border-image-scaled-expected.txt: |
| * platform/qt/fast/borders/inline-mask-overlay-image-expected.png: |
| * platform/qt/fast/borders/inline-mask-overlay-image-expected.txt: |
| * platform/qt/fast/borders/rtl-border-01-expected.png: |
| * platform/qt/fast/borders/rtl-border-01-expected.txt: |
| * platform/qt/fast/borders/rtl-border-02-expected.png: |
| * platform/qt/fast/borders/rtl-border-02-expected.txt: |
| * platform/qt/fast/borders/rtl-border-03-expected.png: |
| * platform/qt/fast/borders/rtl-border-03-expected.txt: |
| * platform/qt/fast/box-shadow/basic-shadows-expected.png: |
| * platform/qt/fast/box-shadow/basic-shadows-expected.txt: |
| * platform/qt/fast/box-sizing/box-sizing-expected.png: |
| * platform/qt/fast/box-sizing/box-sizing-expected.txt: |
| * platform/qt/fast/canvas/canvas-bg-expected.png: |
| * platform/qt/fast/canvas/canvas-bg-expected.txt: Added. |
| * platform/qt/fast/canvas/canvas-render-layer-expected.txt: Added. |
| * platform/qt/fast/clip/014-expected.png: |
| * platform/qt/fast/clip/014-expected.txt: |
| * platform/qt/fast/css-generated-content/014-expected.png: |
| * platform/qt/fast/css-generated-content/014-expected.txt: |
| * platform/qt/fast/css-generated-content/table-parts-before-and-after-expected.png: |
| * platform/qt/fast/css-generated-content/table-parts-before-and-after-expected.txt: Added. |
| * platform/qt/fast/css/005-expected.png: |
| * platform/qt/fast/css/005-expected.txt: |
| * platform/qt/fast/css/MarqueeLayoutTest-expected.png: |
| * platform/qt/fast/css/MarqueeLayoutTest-expected.txt: |
| * platform/qt/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.png: |
| * platform/qt/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.txt: |
| * platform/qt/fast/css/bidi-override-in-anonymous-block-expected.png: |
| * platform/qt/fast/css/bidi-override-in-anonymous-block-expected.txt: |
| * platform/qt/fast/css/border-height-expected.png: |
| * platform/qt/fast/css/border-height-expected.txt: |
| * platform/qt/fast/css/clip-text-in-scaled-div-expected.png: |
| * platform/qt/fast/css/clip-text-in-scaled-div-expected.txt: |
| * platform/qt/fast/css/color-correction-backgrounds-and-text-expected.png: |
| * platform/qt/fast/css/color-correction-backgrounds-and-text-expected.txt: |
| * platform/qt/fast/css/empty-pseudo-class-expected.png: |
| * platform/qt/fast/css/empty-pseudo-class-expected.txt: |
| * platform/qt/fast/css/first-child-pseudo-class-expected.png: |
| * platform/qt/fast/css/first-child-pseudo-class-expected.txt: |
| * platform/qt/fast/css/first-of-type-pseudo-class-expected.png: |
| * platform/qt/fast/css/first-of-type-pseudo-class-expected.txt: |
| * platform/qt/fast/css/font_property_normal-expected.png: |
| * platform/qt/fast/css/font_property_normal-expected.txt: |
| * platform/qt/fast/css/hsl-color-expected.png: |
| * platform/qt/fast/css/hsl-color-expected.txt: |
| * platform/qt/fast/css/last-child-pseudo-class-expected.png: |
| * platform/qt/fast/css/last-child-pseudo-class-expected.txt: |
| * platform/qt/fast/css/last-of-type-pseudo-class-expected.png: |
| * platform/qt/fast/css/last-of-type-pseudo-class-expected.txt: |
| * platform/qt/fast/css/line-height-overflow-expected.png: |
| * platform/qt/fast/css/line-height-overflow-expected.txt: |
| * platform/qt/fast/css/nested-floating-relative-position-percentages-expected.png: |
| * platform/qt/fast/css/nested-floating-relative-position-percentages-expected.txt: |
| * platform/qt/fast/css/nested-rounded-corners-expected.png: Added. |
| * platform/qt/fast/css/nested-rounded-corners-expected.txt: Added. |
| * platform/qt/fast/css/only-child-pseudo-class-expected.png: |
| * platform/qt/fast/css/only-child-pseudo-class-expected.txt: |
| * platform/qt/fast/css/only-of-type-pseudo-class-expected.png: |
| * platform/qt/fast/css/only-of-type-pseudo-class-expected.txt: |
| * platform/qt/fast/css/positioned-overflow-scroll-expected.png: |
| * platform/qt/fast/css/positioned-overflow-scroll-expected.txt: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: |
| * platform/qt/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: |
| * platform/qt/fast/css/resize-corner-tracking-expected.png: |
| * platform/qt/fast/css/resize-corner-tracking-expected.txt: |
| * platform/qt/fast/css/shadow-multiple-expected.png: |
| * platform/qt/fast/css/shadow-multiple-expected.txt: |
| * platform/qt/fast/css/text-transform-select-expected.png: |
| * platform/qt/fast/css/text-transform-select-expected.txt: |
| * platform/qt/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: |
| * platform/qt/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: |
| * platform/qt/fast/dom/clone-node-dynamic-style-expected.png: |
| * platform/qt/fast/dom/clone-node-dynamic-style-expected.txt: |
| * platform/qt/fast/dom/rtl-scroll-to-leftmost-and-resize-expected.png: |
| * platform/qt/fast/dom/rtl-scroll-to-leftmost-and-resize-expected.txt: |
| * platform/qt/fast/dom/scroll-reveal-left-overflow-expected.png: |
| * platform/qt/fast/dom/scroll-reveal-left-overflow-expected.txt: |
| * platform/qt/fast/dom/scroll-reveal-top-overflow-expected.png: |
| * platform/qt/fast/dom/scroll-reveal-top-overflow-expected.txt: |
| * platform/qt/fast/dom/vertical-scrollbar-in-rtl-expected.txt: |
| * platform/qt/fast/dynamic/008-expected.png: |
| * platform/qt/fast/dynamic/008-expected.txt: |
| * platform/qt/fast/dynamic/anchor-lock-expected.png: |
| * platform/qt/fast/dynamic/anchor-lock-expected.txt: |
| * platform/qt/fast/dynamic/insert-before-table-part-in-continuation-expected.png: |
| * platform/qt/fast/dynamic/insert-before-table-part-in-continuation-expected.txt: |
| * platform/qt/fast/encoding/utf-16-big-endian-expected.png: |
| * platform/qt/fast/encoding/utf-16-big-endian-expected.txt: |
| * platform/qt/fast/encoding/utf-16-little-endian-expected.png: |
| * platform/qt/fast/encoding/utf-16-little-endian-expected.txt: |
| * platform/qt/fast/events/pointer-events-2-expected.png: |
| * platform/qt/fast/events/pointer-events-2-expected.txt: |
| * platform/qt/fast/events/resize-events-expected.png: |
| * platform/qt/fast/events/resize-events-expected.txt: |
| * platform/qt/fast/events/reveal-link-when-focused-expected.png: |
| * platform/qt/fast/events/reveal-link-when-focused-expected.txt: |
| * platform/qt/fast/flexbox/009-expected.png: |
| * platform/qt/fast/flexbox/009-expected.txt: |
| * platform/qt/fast/flexbox/016-expected.png: |
| * platform/qt/fast/flexbox/016-expected.txt: |
| * platform/qt/fast/flexbox/flex-hang-expected.png: |
| * platform/qt/fast/flexbox/flex-hang-expected.txt: |
| * platform/qt/fast/forms/HTMLOptionElement_label05-expected.png: Added. |
| * platform/qt/fast/forms/HTMLOptionElement_label05-expected.txt: |
| * platform/qt/fast/forms/basic-textareas-quirks-expected.png: |
| * platform/qt/fast/forms/basic-textareas-quirks-expected.txt: |
| * platform/qt/fast/forms/button-default-title-expected.png: Added. |
| * platform/qt/fast/forms/button-default-title-expected.txt: |
| * platform/qt/fast/forms/button-table-styles-expected.png: |
| * platform/qt/fast/forms/button-table-styles-expected.txt: |
| * platform/qt/fast/forms/disabled-select-change-index-expected.png: |
| * platform/qt/fast/forms/disabled-select-change-index-expected.txt: |
| * platform/qt/fast/forms/fieldset-align-expected.png: |
| * platform/qt/fast/forms/fieldset-align-expected.txt: |
| * platform/qt/fast/forms/file/file-input-direction-expected.png: |
| * platform/qt/fast/forms/file/file-input-direction-expected.txt: |
| * platform/qt/fast/forms/form-element-geometry-expected.png: |
| * platform/qt/fast/forms/form-element-geometry-expected.txt: |
| * platform/qt/fast/forms/form-hides-table-expected.png: |
| * platform/qt/fast/forms/form-hides-table-expected.txt: |
| * platform/qt/fast/forms/hidden-listbox-expected.png: Added. |
| * platform/qt/fast/forms/hidden-listbox-expected.txt: |
| * platform/qt/fast/forms/input-appearance-selection-expected.png: |
| * platform/qt/fast/forms/input-appearance-selection-expected.txt: |
| * platform/qt/fast/forms/listbox-bidi-align-expected.png: |
| * platform/qt/fast/forms/listbox-bidi-align-expected.txt: |
| * platform/qt/fast/forms/listbox-scrollbar-incremental-load-expected.png: Added. |
| * platform/qt/fast/forms/listbox-scrollbar-incremental-load-expected.txt: |
| * platform/qt/fast/forms/number/number-appearance-rtl-expected.png: |
| * platform/qt/fast/forms/number/number-appearance-rtl-expected.txt: |
| * platform/qt/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.png: |
| * platform/qt/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.txt: |
| * platform/qt/fast/forms/number/number-appearance-spinbutton-layer-expected.png: |
| * platform/qt/fast/forms/number/number-appearance-spinbutton-layer-expected.txt: |
| * platform/qt/fast/forms/option-strip-whitespace-expected.png: Added. |
| * platform/qt/fast/forms/option-strip-whitespace-expected.txt: |
| * platform/qt/fast/forms/placeholder-position-expected.png: |
| * platform/qt/fast/forms/placeholder-position-expected.txt: |
| * platform/qt/fast/forms/select-block-background-expected.png: Added. |
| * platform/qt/fast/forms/select-block-background-expected.txt: |
| * platform/qt/fast/forms/select-change-listbox-size-expected.png: Added. |
| * platform/qt/fast/forms/select-change-listbox-size-expected.txt: |
| * platform/qt/fast/forms/select-change-popup-to-listbox-expected.png: Added. |
| * platform/qt/fast/forms/select-change-popup-to-listbox-expected.txt: |
| * platform/qt/fast/forms/select-initial-position-expected.png: Added. |
| * platform/qt/fast/forms/select-initial-position-expected.txt: |
| * platform/qt/fast/forms/select-item-background-clip-expected.png: Added. |
| * platform/qt/fast/forms/select-item-background-clip-expected.txt: |
| * platform/qt/fast/forms/select-list-box-with-height-expected.png: Added. |
| * platform/qt/fast/forms/select-list-box-with-height-expected.txt: |
| * platform/qt/fast/forms/select-listbox-multiple-no-focusring-expected.png: |
| * platform/qt/fast/forms/select-listbox-multiple-no-focusring-expected.txt: |
| * platform/qt/fast/forms/select-overflow-scroll-expected.png: |
| * platform/qt/fast/forms/select-overflow-scroll-expected.txt: |
| * platform/qt/fast/forms/select-overflow-scroll-inherited-expected.png: |
| * platform/qt/fast/forms/select-overflow-scroll-inherited-expected.txt: |
| * platform/qt/fast/forms/textarea-align-expected.png: |
| * platform/qt/fast/forms/textarea-align-expected.txt: |
| * platform/qt/fast/forms/textarea-placeholder-pseudo-style-expected.png: |
| * platform/qt/fast/forms/textarea-placeholder-pseudo-style-expected.txt: |
| * platform/qt/fast/forms/textarea-placeholder-visibility-1-expected.png: |
| * platform/qt/fast/forms/textarea-placeholder-visibility-1-expected.txt: |
| * platform/qt/fast/forms/textarea-placeholder-visibility-2-expected.png: |
| * platform/qt/fast/forms/textarea-placeholder-visibility-2-expected.txt: |
| * platform/qt/fast/forms/textarea-setinnerhtml-expected.png: |
| * platform/qt/fast/forms/textarea-setinnerhtml-expected.txt: |
| * platform/qt/fast/frames/calculate-fixed-expected.png: Added. |
| * platform/qt/fast/frames/calculate-fixed-expected.txt: |
| * platform/qt/fast/frames/calculate-order-expected.png: Added. |
| * platform/qt/fast/frames/calculate-order-expected.txt: |
| * platform/qt/fast/frames/calculate-percentage-expected.png: Added. |
| * platform/qt/fast/frames/calculate-percentage-expected.txt: |
| * platform/qt/fast/frames/calculate-relative-expected.png: Added. |
| * platform/qt/fast/frames/calculate-relative-expected.txt: |
| * platform/qt/fast/frames/flattening/frameset-flattening-advanced-expected.png: |
| * platform/qt/fast/frames/flattening/frameset-flattening-advanced-expected.txt: |
| * platform/qt/fast/frames/flattening/frameset-flattening-grid-expected.png: |
| * platform/qt/fast/frames/flattening/frameset-flattening-grid-expected.txt: |
| * platform/qt/fast/frames/flattening/frameset-flattening-simple-expected.png: |
| * platform/qt/fast/frames/flattening/frameset-flattening-simple-expected.txt: |
| * platform/qt/fast/frames/flattening/frameset-flattening-subframe-resize-expected.png: |
| * platform/qt/fast/frames/flattening/frameset-flattening-subframe-resize-expected.txt: |
| * platform/qt/fast/frames/flattening/frameset-flattening-subframesets-expected.png: |
| * platform/qt/fast/frames/flattening/frameset-flattening-subframesets-expected.txt: |
| * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.png: |
| * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.txt: |
| * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-expected.png: |
| * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-expected.txt: |
| * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.png: |
| * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.txt: |
| * platform/qt/fast/frames/frame-scrolling-attribute-expected.png: |
| * platform/qt/fast/frames/frame-scrolling-attribute-expected.txt: |
| * platform/qt/fast/frames/iframe-scaling-with-scroll-expected.png: Added. |
| * platform/qt/fast/frames/iframe-scaling-with-scroll-expected.txt: Added. |
| * platform/qt/fast/frames/iframe-scrolling-attribute-expected.png: |
| * platform/qt/fast/frames/iframe-scrolling-attribute-expected.txt: |
| * platform/qt/fast/frames/inline-object-inside-frameset-expected.png: |
| * platform/qt/fast/frames/inline-object-inside-frameset-expected.txt: |
| * platform/qt/fast/frames/invalid-expected.png: Added. |
| * platform/qt/fast/frames/invalid-expected.txt: |
| * platform/qt/fast/frames/take-focus-from-iframe-expected.png: |
| * platform/qt/fast/frames/take-focus-from-iframe-expected.txt: |
| * platform/qt/fast/frames/valid-expected.png: Added. |
| * platform/qt/fast/frames/valid-expected.txt: |
| * platform/qt/fast/gradients/background-clipped-expected.png: |
| * platform/qt/fast/gradients/background-clipped-expected.txt: Added. |
| * platform/qt/fast/html/details-position-expected.png: |
| * platform/qt/fast/html/details-position-expected.txt: |
| * platform/qt/fast/html/details-writing-mode-expected.png: |
| * platform/qt/fast/html/details-writing-mode-expected.txt: |
| * platform/qt/fast/images/gif-large-checkerboard-expected.png: |
| * platform/qt/fast/images/gif-large-checkerboard-expected.txt: Added. |
| * platform/qt/fast/images/gray-scale-jpeg-with-color-profile-expected.png: |
| * platform/qt/fast/images/gray-scale-jpeg-with-color-profile-expected.txt: |
| * platform/qt/fast/inline-block/tricky-baseline-expected.png: |
| * platform/qt/fast/inline-block/tricky-baseline-expected.txt: |
| * platform/qt/fast/inline/inline-borders-with-bidi-override-expected.png: |
| * platform/qt/fast/inline/inline-borders-with-bidi-override-expected.txt: |
| * platform/qt/fast/inline/inline-continuation-borders-expected.png: |
| * platform/qt/fast/inline/inline-continuation-borders-expected.txt: |
| * platform/qt/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.png: |
| * platform/qt/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt: |
| * platform/qt/fast/inline/long-wrapped-line-expected.png: |
| * platform/qt/fast/inline/long-wrapped-line-expected.txt: |
| * platform/qt/fast/layers/overflow-scroll-auto-switch-expected.png: |
| * platform/qt/fast/layers/overflow-scroll-auto-switch-expected.txt: |
| * platform/qt/fast/layers/scroll-rect-to-visible-expected.png: |
| * platform/qt/fast/layers/scroll-rect-to-visible-expected.txt: |
| * platform/qt/fast/line-grid/line-grid-inside-columns-expected.png: |
| * platform/qt/fast/line-grid/line-grid-inside-columns-expected.txt: |
| * platform/qt/fast/lists/001-expected.png: |
| * platform/qt/fast/lists/001-expected.txt: |
| * platform/qt/fast/lists/001-vertical-expected.png: |
| * platform/qt/fast/lists/001-vertical-expected.txt: |
| * platform/qt/fast/lists/008-expected.png: |
| * platform/qt/fast/lists/008-expected.txt: |
| * platform/qt/fast/lists/008-vertical-expected.png: |
| * platform/qt/fast/lists/008-vertical-expected.txt: |
| * platform/qt/fast/lists/li-br-expected.png: |
| * platform/qt/fast/lists/li-br-expected.txt: |
| * platform/qt/fast/lists/ol-start-parsing-expected.png: |
| * platform/qt/fast/lists/ol-start-parsing-expected.txt: |
| * platform/qt/fast/lists/olstart-expected.png: |
| * platform/qt/fast/lists/olstart-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-02-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-02-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-03-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-03-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-04-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-04-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-05-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-05-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-06-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-06-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-07-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-07-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-08-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-08-expected.txt: |
| * platform/qt/fast/media/mq-relative-constraints-09-expected.png: |
| * platform/qt/fast/media/mq-relative-constraints-09-expected.txt: |
| * platform/qt/fast/media/mq-width-absolute-01-expected.png: |
| * platform/qt/fast/media/mq-width-absolute-01-expected.txt: |
| * platform/qt/fast/media/mq-width-absolute-02-expected.png: |
| * platform/qt/fast/media/mq-width-absolute-02-expected.txt: |
| * platform/qt/fast/media/mq-width-absolute-03-expected.png: |
| * platform/qt/fast/media/mq-width-absolute-03-expected.txt: |
| * platform/qt/fast/media/mq-width-absolute-04-expected.png: |
| * platform/qt/fast/media/mq-width-absolute-04-expected.txt: |
| * platform/qt/fast/multicol/block-axis-horizontal-tb-expected.png: |
| * platform/qt/fast/multicol/block-axis-horizontal-tb-expected.txt: |
| * platform/qt/fast/multicol/client-rects-expected.png: |
| * platform/qt/fast/multicol/client-rects-expected.txt: |
| * platform/qt/fast/multicol/column-break-with-balancing-expected.png: |
| * platform/qt/fast/multicol/column-break-with-balancing-expected.txt: |
| * platform/qt/fast/multicol/column-rules-stacking-expected.png: |
| * platform/qt/fast/multicol/column-rules-stacking-expected.txt: |
| * platform/qt/fast/multicol/columns-shorthand-parsing-expected.png: |
| * platform/qt/fast/multicol/columns-shorthand-parsing-expected.txt: |
| * platform/qt/fast/multicol/float-multicol-expected.png: |
| * platform/qt/fast/multicol/float-multicol-expected.txt: |
| * platform/qt/fast/multicol/float-paginate-complex-expected.png: |
| * platform/qt/fast/multicol/float-paginate-complex-expected.txt: |
| * platform/qt/fast/multicol/float-paginate-expected.png: |
| * platform/qt/fast/multicol/float-paginate-expected.txt: |
| * platform/qt/fast/multicol/layers-in-multicol-expected.png: |
| * platform/qt/fast/multicol/layers-in-multicol-expected.txt: |
| * platform/qt/fast/multicol/layers-split-across-columns-expected.png: |
| * platform/qt/fast/multicol/layers-split-across-columns-expected.txt: |
| * platform/qt/fast/multicol/paginate-block-replaced-expected.png: |
| * platform/qt/fast/multicol/paginate-block-replaced-expected.txt: |
| * platform/qt/fast/multicol/pagination-h-horizontal-bt-expected.png: |
| * platform/qt/fast/multicol/pagination-h-horizontal-bt-expected.txt: |
| * platform/qt/fast/multicol/pagination-h-horizontal-tb-expected.png: |
| * platform/qt/fast/multicol/pagination-h-horizontal-tb-expected.txt: |
| * platform/qt/fast/multicol/pagination-h-vertical-lr-expected.png: |
| * platform/qt/fast/multicol/pagination-h-vertical-lr-expected.txt: |
| * platform/qt/fast/multicol/pagination-h-vertical-rl-expected.png: |
| * platform/qt/fast/multicol/pagination-h-vertical-rl-expected.txt: |
| * platform/qt/fast/multicol/pagination-v-horizontal-bt-expected.png: |
| * platform/qt/fast/multicol/pagination-v-horizontal-bt-expected.txt: |
| * platform/qt/fast/multicol/pagination-v-horizontal-tb-expected.png: |
| * platform/qt/fast/multicol/pagination-v-horizontal-tb-expected.txt: |
| * platform/qt/fast/multicol/pagination-v-vertical-lr-expected.png: |
| * platform/qt/fast/multicol/pagination-v-vertical-lr-expected.txt: |
| * platform/qt/fast/multicol/pagination-v-vertical-rl-expected.png: |
| * platform/qt/fast/multicol/pagination-v-vertical-rl-expected.txt: |
| * platform/qt/fast/multicol/positioned-with-constrained-height-expected.png: |
| * platform/qt/fast/multicol/positioned-with-constrained-height-expected.txt: |
| * platform/qt/fast/multicol/progression-reverse-expected.png: |
| * platform/qt/fast/multicol/progression-reverse-expected.txt: |
| * platform/qt/fast/multicol/scrolling-overflow-expected.png: |
| * platform/qt/fast/multicol/scrolling-overflow-expected.txt: |
| * platform/qt/fast/multicol/span/anonymous-style-inheritance-expected.png: |
| * platform/qt/fast/multicol/span/anonymous-style-inheritance-expected.txt: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-expected.png: |
| * platform/qt/fast/multicol/span/span-as-immediate-columns-child-expected.txt: |
| * platform/qt/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.png: |
| * platform/qt/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt: |
| * platform/qt/fast/multicol/span/span-as-nested-columns-child-expected.png: |
| * platform/qt/fast/multicol/span/span-as-nested-columns-child-expected.txt: |
| * platform/qt/fast/multicol/span/span-margin-collapsing-expected.png: |
| * platform/qt/fast/multicol/span/span-margin-collapsing-expected.txt: |
| * platform/qt/fast/multicol/table-vertical-align-expected.png: |
| * platform/qt/fast/multicol/table-vertical-align-expected.txt: |
| * platform/qt/fast/multicol/vertical-lr/column-break-with-balancing-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: |
| * platform/qt/fast/multicol/vertical-lr/float-multicol-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/float-multicol-expected.txt: |
| * platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.txt: |
| * platform/qt/fast/multicol/vertical-lr/float-paginate-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/float-paginate-expected.txt: |
| * platform/qt/fast/multicol/vertical-lr/nested-columns-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/nested-columns-expected.txt: |
| * platform/qt/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png: |
| * platform/qt/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: |
| * platform/qt/fast/multicol/vertical-rl/column-break-with-balancing-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: |
| * platform/qt/fast/multicol/vertical-rl/float-multicol-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/float-multicol-expected.txt: |
| * platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: |
| * platform/qt/fast/multicol/vertical-rl/float-paginate-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/float-paginate-expected.txt: |
| * platform/qt/fast/multicol/vertical-rl/nested-columns-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/nested-columns-expected.txt: |
| * platform/qt/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png: |
| * platform/qt/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: |
| * platform/qt/fast/overflow/002-expected.png: |
| * platform/qt/fast/overflow/002-expected.txt: |
| * platform/qt/fast/overflow/006-expected.png: |
| * platform/qt/fast/overflow/006-expected.txt: |
| * platform/qt/fast/overflow/007-expected.png: |
| * platform/qt/fast/overflow/007-expected.txt: |
| * platform/qt/fast/overflow/008-expected.png: |
| * platform/qt/fast/overflow/008-expected.txt: |
| * platform/qt/fast/overflow/childFocusRingClip-expected.png: |
| * platform/qt/fast/overflow/childFocusRingClip-expected.txt: |
| * platform/qt/fast/overflow/float-in-relpositioned-expected.png: |
| * platform/qt/fast/overflow/float-in-relpositioned-expected.txt: |
| * platform/qt/fast/overflow/hidden-scrollbar-resize-expected.txt: |
| * platform/qt/fast/overflow/hit-test-overflow-controls-expected.png: |
| * platform/qt/fast/overflow/hit-test-overflow-controls-expected.txt: |
| * platform/qt/fast/overflow/image-selection-highlight-expected.png: |
| * platform/qt/fast/overflow/image-selection-highlight-expected.txt: |
| * platform/qt/fast/overflow/overflow-auto-position-absolute-expected.png: |
| * platform/qt/fast/overflow/overflow-auto-position-absolute-expected.txt: |
| * platform/qt/fast/overflow/overflow-auto-table-expected.png: |
| * platform/qt/fast/overflow/overflow-auto-table-expected.txt: |
| * platform/qt/fast/overflow/overflow-float-stacking-expected.txt: |
| * platform/qt/fast/overflow/overflow-rtl-vertical-expected.png: |
| * platform/qt/fast/overflow/overflow-rtl-vertical-expected.txt: |
| * platform/qt/fast/overflow/overflow-stacking-expected.png: |
| * platform/qt/fast/overflow/overflow-stacking-expected.txt: |
| * platform/qt/fast/overflow/overflow-update-transform-expected.png: |
| * platform/qt/fast/overflow/overflow-update-transform-expected.txt: Added. |
| * platform/qt/fast/overflow/overflow-with-local-background-attachment-expected.png: |
| * platform/qt/fast/overflow/overflow-with-local-background-attachment-expected.txt: |
| * platform/qt/fast/overflow/paged-x-div-expected.txt: Added. |
| * platform/qt/fast/overflow/paged-x-div-with-column-gap-expected.txt: Added. |
| * platform/qt/fast/overflow/paged-x-on-root-expected.txt: Added. |
| * platform/qt/fast/overflow/paged-x-with-column-gap-expected.txt: Added. |
| * platform/qt/fast/overflow/paged-y-div-expected.txt: Added. |
| * platform/qt/fast/overflow/paged-y-on-root-expected.txt: Added. |
| * platform/qt/fast/overflow/position-fixed-transform-clipping-expected.png: |
| * platform/qt/fast/overflow/position-fixed-transform-clipping-expected.txt: |
| * platform/qt/fast/overflow/scrollbar-position-update-expected.png: |
| * platform/qt/fast/overflow/scrollbar-position-update-expected.txt: |
| * platform/qt/fast/overflow/table-overflow-float-expected.png: |
| * platform/qt/fast/overflow/table-overflow-float-expected.txt: |
| * platform/qt/fast/overflow/unreachable-overflow-rtl-bug-expected.png: |
| * platform/qt/fast/overflow/unreachable-overflow-rtl-bug-expected.txt: |
| * platform/qt/fast/parser/entity-comment-in-textarea-expected.png: |
| * platform/qt/fast/parser/entity-comment-in-textarea-expected.txt: |
| * platform/qt/fast/parser/open-comment-in-textarea-expected.png: |
| * platform/qt/fast/parser/open-comment-in-textarea-expected.txt: |
| * platform/qt/fast/reflections/reflection-direction-expected.png: |
| * platform/qt/fast/reflections/reflection-direction-expected.txt: |
| * platform/qt/fast/repaint/dynamic-table-vertical-alignment-change-expected.png: |
| * platform/qt/fast/repaint/dynamic-table-vertical-alignment-change-expected.txt: |
| * platform/qt/fast/repaint/fixed-child-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-child-move-after-scroll-expected.txt: |
| * platform/qt/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.txt: |
| * platform/qt/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.txt: |
| * platform/qt/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-move-after-keyboard-scroll-expected.txt: |
| * platform/qt/fast/repaint/fixed-move-after-scroll-expected.png: |
| * platform/qt/fast/repaint/fixed-move-after-scroll-expected.txt: |
| * platform/qt/fast/repaint/fixed-tranformed-expected.png: |
| * platform/qt/fast/repaint/fixed-tranformed-expected.txt: |
| * platform/qt/fast/repaint/layout-state-only-positioned-expected.png: |
| * platform/qt/fast/repaint/layout-state-only-positioned-expected.txt: |
| * platform/qt/fast/repaint/overflow-scroll-body-appear-expected.png: |
| * platform/qt/fast/repaint/overflow-scroll-body-appear-expected.txt: |
| * platform/qt/fast/repaint/overflow-scroll-delete-expected.png: |
| * platform/qt/fast/repaint/overflow-scroll-delete-expected.txt: |
| * platform/qt/fast/repaint/repaint-during-scroll-expected.png: |
| * platform/qt/fast/repaint/repaint-during-scroll-expected.txt: |
| * platform/qt/fast/repaint/select-option-background-color-expected.png: |
| * platform/qt/fast/repaint/select-option-background-color-expected.txt: |
| * platform/qt/fast/repaint/selection-gap-overflow-scroll-2-expected.png: |
| * platform/qt/fast/repaint/selection-gap-overflow-scroll-2-expected.txt: |
| * platform/qt/fast/repaint/transform-absolute-in-positioned-container-expected.png: |
| * platform/qt/fast/repaint/transform-absolute-in-positioned-container-expected.txt: |
| * platform/qt/fast/replaced/005-expected.png: |
| * platform/qt/fast/replaced/005-expected.txt: |
| * platform/qt/fast/replaced/border-radius-clip-expected.png: |
| * platform/qt/fast/replaced/border-radius-clip-expected.txt: |
| * platform/qt/fast/replaced/replaced-breaking-expected.png: |
| * platform/qt/fast/replaced/replaced-breaking-expected.txt: |
| * platform/qt/fast/replaced/width100percent-image-expected.png: |
| * platform/qt/fast/replaced/width100percent-image-expected.txt: |
| * platform/qt/fast/replaced/width100percent-searchfield-expected.png: |
| * platform/qt/fast/replaced/width100percent-searchfield-expected.txt: |
| * platform/qt/fast/replaced/width100percent-textfield-expected.png: |
| * platform/qt/fast/replaced/width100percent-textfield-expected.txt: |
| * platform/qt/fast/selectors/166-expected.png: |
| * platform/qt/fast/selectors/166-expected.txt: |
| * platform/qt/fast/spatial-navigation/snav-multiple-select-focusring-expected.png: |
| * platform/qt/fast/spatial-navigation/snav-multiple-select-focusring-expected.txt: |
| * platform/qt/fast/table/003-expected.png: |
| * platform/qt/fast/table/003-expected.txt: |
| * platform/qt/fast/table/023-expected.png: |
| * platform/qt/fast/table/023-expected.txt: |
| * platform/qt/fast/table/027-vertical-expected.png: |
| * platform/qt/fast/table/027-vertical-expected.txt: |
| * platform/qt/fast/table/034-expected.png: |
| * platform/qt/fast/table/034-expected.txt: |
| * platform/qt/fast/table/038-vertical-expected.png: |
| * platform/qt/fast/table/038-vertical-expected.txt: |
| * platform/qt/fast/table/040-expected.png: |
| * platform/qt/fast/table/040-expected.txt: |
| * platform/qt/fast/table/040-vertical-expected.png: |
| * platform/qt/fast/table/040-vertical-expected.txt: |
| * platform/qt/fast/table/border-collapsing/002-vertical-expected.png: |
| * platform/qt/fast/table/border-collapsing/002-vertical-expected.txt: |
| * platform/qt/fast/table/border-collapsing/004-expected.png: |
| * platform/qt/fast/table/border-collapsing/004-expected.txt: |
| * platform/qt/fast/table/border-collapsing/004-vertical-expected.png: |
| * platform/qt/fast/table/border-collapsing/004-vertical-expected.txt: |
| * platform/qt/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.png: |
| * platform/qt/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt: |
| * platform/qt/fast/table/edge-offsets-expected.png: |
| * platform/qt/fast/table/edge-offsets-expected.txt: |
| * platform/qt/fast/table/empty-cells-expected.png: |
| * platform/qt/fast/table/empty-cells-expected.txt: |
| * platform/qt/fast/table/frame-and-rules-expected.png: |
| * platform/qt/fast/table/frame-and-rules-expected.txt: |
| * platform/qt/fast/table/height-percent-test-expected.png: Added. |
| * platform/qt/fast/table/height-percent-test-expected.txt: |
| * platform/qt/fast/table/height-percent-test-vertical-expected.png: |
| * platform/qt/fast/table/height-percent-test-vertical-expected.txt: |
| * platform/qt/fast/table/overflowHidden-expected.png: |
| * platform/qt/fast/table/overflowHidden-expected.txt: |
| * platform/qt/fast/table/prepend-in-anonymous-table-expected.png: |
| * platform/qt/fast/table/prepend-in-anonymous-table-expected.txt: |
| * platform/qt/fast/table/table-display-types-vertical-expected.png: |
| * platform/qt/fast/table/table-display-types-vertical-expected.txt: |
| * platform/qt/fast/table/wide-colspan-expected.png: |
| * platform/qt/fast/table/wide-colspan-expected.txt: Added. |
| * platform/qt/fast/table/wide-column-expected.png: |
| * platform/qt/fast/table/wide-column-expected.txt: Added. |
| * platform/qt/fast/text/backslash-to-yen-sign-euc-expected.png: |
| * platform/qt/fast/text/backslash-to-yen-sign-euc-expected.txt: |
| * platform/qt/fast/text/hyphenate-limit-lines-expected.png: |
| * platform/qt/fast/text/hyphenate-limit-lines-expected.txt: |
| * platform/qt/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: |
| * platform/qt/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: |
| * platform/qt/fast/text/large-text-composed-char-expected.png: |
| * platform/qt/fast/text/large-text-composed-char-expected.txt: |
| * platform/qt/fast/text/softHyphen-expected.png: |
| * platform/qt/fast/text/softHyphen-expected.txt: |
| * platform/qt/fast/text/text-letter-spacing-expected.png: |
| * platform/qt/fast/text/text-letter-spacing-expected.txt: |
| * platform/qt/fast/text/updateNewFont-expected.png: Added. |
| * platform/qt/fast/text/updateNewFont-expected.txt: |
| * platform/qt/fast/text/wbr-expected.png: |
| * platform/qt/fast/text/wbr-expected.txt: |
| * platform/qt/fast/text/word-break-expected.png: |
| * platform/qt/fast/text/word-break-expected.txt: |
| * platform/qt/fast/transforms/rotated-transform-affects-scrolling-1-expected.png: |
| * platform/qt/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt: |
| * platform/qt/fast/transforms/rotated-transform-affects-scrolling-2-expected.png: |
| * platform/qt/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt: |
| * platform/qt/fast/writing-mode/border-radius-clipping-vertical-lr-expected.png: |
| * platform/qt/fast/writing-mode/border-radius-clipping-vertical-lr-expected.txt: |
| * platform/qt/fast/writing-mode/box-shadow-vertical-lr-expected.png: |
| * platform/qt/fast/writing-mode/box-shadow-vertical-lr-expected.txt: |
| * platform/qt/fast/writing-mode/box-shadow-vertical-rl-expected.png: |
| * platform/qt/fast/writing-mode/box-shadow-vertical-rl-expected.txt: |
| * platform/qt/fast/writing-mode/fieldsets-expected.png: |
| * platform/qt/fast/writing-mode/fieldsets-expected.txt: |
| * platform/qt/fast/writing-mode/table-percent-width-quirk-expected.png: |
| * platform/qt/fast/writing-mode/table-percent-width-quirk-expected.txt: |
| * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: |
| * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.txt: |
| * platform/qt/http/tests/navigation/error404-subframeload-expected.png: |
| * platform/qt/http/tests/navigation/error404-subframeload-expected.txt: |
| * platform/qt/http/tests/navigation/javascriptlink-frames-expected.png: |
| * platform/qt/http/tests/navigation/javascriptlink-frames-expected.txt: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.png: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.txt: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.png: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.txt: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.png: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.txt: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png: |
| * platform/qt/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.txt: |
| * platform/qt/printing/width-overflow-expected.txt: |
| * platform/qt/scrollbars/scrollbars-on-positioned-content-expected.png: |
| * platform/qt/scrollbars/scrollbars-on-positioned-content-expected.txt: |
| * platform/qt/svg/as-image/image-respects-pageScaleFactor-expected.png: |
| * platform/qt/svg/as-image/image-respects-pageScaleFactor-expected.txt: |
| * platform/qt/svg/custom/altglyph-expected.png: |
| * platform/qt/svg/custom/altglyph-expected.txt: |
| * platform/qt/svg/custom/clip-mask-negative-scale-expected.txt: Added. |
| * platform/qt/svg/custom/external-paintserver-reference-expected.png: |
| * platform/qt/svg/custom/external-paintserver-reference-expected.txt: |
| * platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-expected.png: |
| * platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-expected.txt: |
| * platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.png: |
| * platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt: |
| * platform/qt/svg/custom/getscreenctm-in-scrollable-svg-area-expected.png: |
| * platform/qt/svg/custom/getscreenctm-in-scrollable-svg-area-expected.txt: |
| * platform/qt/svg/custom/invisible-text-after-scrolling-expected.png: |
| * platform/qt/svg/custom/invisible-text-after-scrolling-expected.txt: |
| * platform/qt/svg/custom/linking-base-external-reference-expected.png: |
| * platform/qt/svg/custom/linking-base-external-reference-expected.txt: |
| * platform/qt/svg/custom/object-sizing-no-width-height-expected.png: |
| * platform/qt/svg/custom/object-sizing-no-width-height-expected.txt: |
| * platform/qt/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: |
| * platform/qt/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: |
| * platform/qt/svg/custom/svg-fonts-in-text-controls-expected.txt: |
| * platform/qt/svg/custom/text-xy-updates-SVGList-expected.png: |
| * platform/qt/svg/custom/text-xy-updates-SVGList-expected.txt: |
| * platform/qt/svg/filters/feImage-filterUnits-objectBoundingBox-primitiveUnits-objectBoundingBox-expected.png: |
| * platform/qt/svg/filters/feImage-filterUnits-objectBoundingBox-primitiveUnits-objectBoundingBox-expected.txt: |
| * platform/qt/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-objectBoundingBox-expected.png: |
| * platform/qt/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-objectBoundingBox-expected.txt: |
| * platform/qt/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-userSpaceOnUse-expected.png: |
| * platform/qt/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-userSpaceOnUse-expected.txt: |
| * platform/qt/svg/in-html/circle-expected.png: |
| * platform/qt/svg/in-html/circle-expected.txt: |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.png: |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.txt: Added. |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.png: |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.txt: Added. |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.png: |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.txt: Added. |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.png: |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.txt: Added. |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.png: |
| * platform/qt/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.txt: |
| * platform/qt/svg/text/kerning-expected.png: |
| * platform/qt/svg/text/kerning-expected.txt: |
| * platform/qt/svg/text/multichar-glyph-expected.png: |
| * platform/qt/svg/text/multichar-glyph-expected.txt: |
| * platform/qt/svg/wicd/rightsizing-grid-expected.png: |
| * platform/qt/svg/wicd/rightsizing-grid-expected.txt: |
| * platform/qt/svg/wicd/test-rightsizing-b-expected.png: |
| * platform/qt/svg/wicd/test-rightsizing-b-expected.txt: |
| * platform/qt/svg/wicd/test-scalable-background-image1-expected.png: |
| * platform/qt/svg/wicd/test-scalable-background-image1-expected.txt: |
| * platform/qt/svg/zoom/page/absolute-sized-document-scrollbars-expected.png: |
| * platform/qt/svg/zoom/page/absolute-sized-document-scrollbars-expected.txt: |
| * platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.png: |
| * platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.txt: |
| * platform/qt/svg/zoom/page/zoom-mask-with-percentages-expected.png: |
| * platform/qt/svg/zoom/page/zoom-mask-with-percentages-expected.txt: |
| * platform/qt/svg/zoom/page/zoom-svg-float-border-padding-expected.png: |
| * platform/qt/svg/zoom/page/zoom-svg-float-border-padding-expected.txt: |
| * platform/qt/svg/zoom/text/zoom-svg-float-border-padding-expected.png: |
| * platform/qt/svg/zoom/text/zoom-svg-float-border-padding-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug101674-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug101674-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug10269-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug10269-2-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug1055-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug1055-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug113235-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug113235-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug113235-3-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug113235-3-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug11944-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug11944-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug120364-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug120364-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug1302-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug1302-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug131020-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug131020-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug131020_iframe-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug131020_iframe-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug137388-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug137388-2-expected.txt: Added. |
| * platform/qt/tables/mozilla/bugs/bug149275-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug149275-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug16252-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug16252-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug194024-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug194024-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug22019-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug22019-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug23151-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug23151-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug2479-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2479-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug2479-3-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2479-3-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug2479-4-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2479-4-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug27038-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug27038-2-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug29314-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug29314-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug2947-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug2947-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug30559-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug30559-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug32205-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug32205-2-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug38916-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug38916-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug3977-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug3977-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug43039-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug43039-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug43854-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug43854-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug44505-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug44505-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug46480-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug46480-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug46480-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug46480-2-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug50695-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug50695-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug56405-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug56405-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug5797-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug5797-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug5835-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug5835-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug625-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug625-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug650-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug650-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug67915-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug67915-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug7112-1-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug7112-1-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug7112-2-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug7112-2-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug73321-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug73321-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug92143-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug92143-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug96334-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug96334-expected.txt: |
| * platform/qt/tables/mozilla/bugs/bug96343-expected.png: |
| * platform/qt/tables/mozilla/bugs/bug96343-expected.txt: |
| * platform/qt/tables/mozilla/collapsing_borders/bug41262-3-expected.png: |
| * platform/qt/tables/mozilla/collapsing_borders/bug41262-3-expected.txt: |
| * platform/qt/tables/mozilla/core/bloomberg-expected.png: |
| * platform/qt/tables/mozilla/core/bloomberg-expected.txt: |
| * platform/qt/tables/mozilla/core/captions-expected.png: |
| * platform/qt/tables/mozilla/core/captions-expected.txt: |
| * platform/qt/tables/mozilla/core/cell_heights-expected.png: |
| * platform/qt/tables/mozilla/core/cell_heights-expected.txt: |
| * platform/qt/tables/mozilla/core/col_span-expected.png: |
| * platform/qt/tables/mozilla/core/col_span-expected.txt: |
| * platform/qt/tables/mozilla/core/col_widths_auto_fix-expected.png: |
| * platform/qt/tables/mozilla/core/col_widths_auto_fix-expected.txt: |
| * platform/qt/tables/mozilla/core/col_widths_fix_fixPer-expected.png: |
| * platform/qt/tables/mozilla/core/col_widths_fix_fixPer-expected.txt: |
| * platform/qt/tables/mozilla/core/nested1-expected.png: |
| * platform/qt/tables/mozilla/core/nested1-expected.txt: |
| * platform/qt/tables/mozilla/core/one_row-expected.png: |
| * platform/qt/tables/mozilla/core/one_row-expected.txt: |
| * platform/qt/tables/mozilla/core/row_span-expected.png: |
| * platform/qt/tables/mozilla/core/row_span-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_index-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_index-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_layers-opacity-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_layers-opacity-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_position-table-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_position-table-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-cell-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-column-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-column-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-row-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-row-expected.txt: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png: |
| * platform/qt/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_table_bgcolor_name-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_td_bgcolor_name-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_td_height-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_td_height-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_td_nowrap-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_td_nowrap-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_th_bgcolor_name-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_th_height-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_th_height-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_th_nowrap-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_th_nowrap-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_tr_bgcolor_name-expected.txt: |
| * platform/qt/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: |
| * platform/qt/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.txt: |
| * platform/qt/tables/mozilla/other/cell_widths-expected.png: |
| * platform/qt/tables/mozilla/other/cell_widths-expected.txt: |
| * platform/qt/tables/mozilla/other/nestedTables-expected.png: |
| * platform/qt/tables/mozilla/other/nestedTables-expected.txt: |
| * platform/qt/tables/mozilla/other/test3-expected.png: |
| * platform/qt/tables/mozilla/other/test3-expected.txt: |
| * platform/qt/tables/mozilla/other/test6-expected.png: |
| * platform/qt/tables/mozilla/other/test6-expected.txt: |
| * platform/qt/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: |
| * platform/qt/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt: |
| * platform/qt/tables/mozilla/other/wa_table_tr_align-expected.png: |
| * platform/qt/tables/mozilla/other/wa_table_tr_align-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug10140-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug101759-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug101759-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug10216-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug10216-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug106966-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug106966-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug19526-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug19526-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug220653-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug220653-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug22122-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug22122-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug32205-1-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug7243-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug7243-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug85016-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug89315-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug89315-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug91057-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/bugs/bug91057-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/backgrounds-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/backgrounds-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/captions1-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/captions1-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/captions2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/captions2-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/captions3-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/captions3-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/col_span2-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/col_span2-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/columns-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/columns-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/conflicts-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/conflicts-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/core/standards1-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/core/standards1-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/other/empty_cells-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/other/empty_cells-expected.txt: |
| * platform/qt/tables/mozilla_expected_failures/other/test4-expected.png: |
| * platform/qt/tables/mozilla_expected_failures/other/test4-expected.txt: |
| * platform/qt/transforms/2d/transform-fixed-container-expected.png: |
| * platform/qt/transforms/2d/transform-fixed-container-expected.txt: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-deep-expected.png: Added. |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-deep-expected.txt: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-expected.png: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-expected.txt: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: |
| * platform/qt/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.txt: |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [EFL] Update pixel expectations for some css2.1 tests. |
| |
| * platform/efl/css2.1/20110323/c543-txt-decor-000-expected.png: Added. |
| * platform/efl/css2.1/20110323/replaced-elements-001-expected.png: |
| |
| 2012-10-03 Jussi Kukkonen <jussi.kukkonen@intel.com> |
| |
| getComputedStyle perspective-origin is based on the wrong bounding box |
| https://bugs.webkit.org/show_bug.cgi?id=98027 |
| |
| Reviewed by Simon Fraser. |
| |
| Add test for perspective-origin calculation into existing transform-origin test. |
| |
| * transforms/2d/computed-style-origin-expected.txt: |
| * transforms/2d/computed-style-origin.html: |
| |
| 2012-10-03 Andrey Kosyakov <caseq@chromium.org> |
| |
| Unreviewed test rebaseline. |
| |
| * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium-mac/fast/css/text-overflow-input-expected.png: |
| * platform/chromium-mac/fast/forms/box-shadow-override-expected.png: |
| |
| 2012-10-03 Dominik Röttsches <dominik.rottsches@intel.com> |
| |
| [EFL] Gardening after r130186 and r130231 |
| |
| Unreviewed, EFL gardening. |
| |
| r130186 introduces usage of Xvfb which allows us to unskip a few X11 dependent cases. |
| r130231 introduces caching for the Harfbuzz font path, which caused regressions on Harfbuzz NG + Freetype, |
| see bug 98247. Temporarily going to skip those failures until I check Kenichi's patch. |
| |
| * platform/efl-wk1/TestExpectations: DRT disables X11 usage, skip a few tests here only for Wk1. |
| * platform/efl-wk2/TestExpectations: Unskip a couple of X11 dependent cases. (r130186) |
| * platform/efl/TestExpectations: Temporarily mark a few complex font text as failed (r130231) |
| * platform/efl/fast/text/atsui-multiple-renderers-expected.png: Rebaseline incorrect result. |
| * platform/efl/fast/text/atsui-spacing-features-expected.png: Rebaseline incorrect result. |
| * platform/efl/fast/text/wide-zero-width-space-expected.png: Rebaseline incorrect result. |
| |
| 2012-10-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
| |
| [Qt][DRT] Add support for overriding the "WebKitDisplayImagesKey" preference. |
| https://bugs.webkit.org/show_bug.cgi?id=98200 |
| |
| Reviewed by Csaba Osztrogonác. |
| |
| * platform/qt/TestExpectations: Unskip a few tests that depended |
| on this feature. |
| |
| 2012-10-03 Jochen Eisinger <jochen@chromium.org> |
| |
| Make sure that user gestures can't be consumed twice |
| https://bugs.webkit.org/show_bug.cgi?id=97483 |
| |
| Reviewed by Adam Barth. |
| |
| * platform/chromium/fast/events/popup-forwarded-gesture-blocked-expected.txt: Added. |
| * platform/chromium/fast/events/popup-forwarded-gesture-blocked.html: Added. |
| * platform/chromium/fast/events/popup-forwarded-gesture-expected.txt: Added. |
| * platform/chromium/fast/events/popup-forwarded-gesture.html: Added. |
| |
| 2012-10-03 Dominic Mazzoni <dmazzoni@google.com> |
| |
| AX: Heap-use-after-free when deleting a ContainerNode with an AX object |
| https://bugs.webkit.org/show_bug.cgi?id=98073 |
| |
| Reviewed by Hajime Morita. |
| |
| Adds test for heap-use-after-free when container node with AX object is deleted. |
| |
| * accessibility/container-node-delete-causes-crash-expected.txt: Added. |
| * accessibility/container-node-delete-causes-crash.html: Added. |
| |
| 2012-10-03 Vsevolod Vlasov <vsevik@chromium.org> |
| |
| Web Inspector: SourceURL should be taken from debugger agent when possible. |
| https://bugs.webkit.org/show_bug.cgi?id=98239 |
| |
| Reviewed by Yury Semikhatsky. |
| |
| Unskipped test. |
| |
| * platform/chromium/TestExpectations: |
| |
| 2012-10-03 Harald Alvestrand <hta@google.com> |
| |
| Add data passing to the GetStats interface of RTCPeerConnection |
| https://bugs.webkit.org/show_bug.cgi?id=98003 |
| |
| Reviewed by Adam Barth. |
| |
| * fast/mediastream/RTCPeerConnection-stats-expected.txt: |
| * fast/mediastream/RTCPeerConnection-stats.html: |
| |
| 2012-10-02 Arko Saha <arko@motorola.com> |
| |
| Microdata: itemprop names must not override builtin properties. |
| https://bugs.webkit.org/show_bug.cgi?id=98025 |
| |
| Reviewed by Kentaro Hara. |
| |
| Added test case to verify that itemprop names must not override builtin properties. |
| |
| * fast/dom/MicroData/itemprop-names-override-builtin-properties-expected.txt: Added. |
| * fast/dom/MicroData/itemprop-names-override-builtin-properties.html: Added. |
| |
| 2012-10-02 Keishi Hattori <keishi@webkit.org> |
| |
| REGRESSION (r129738): Suggestion picker label is placed in the wrong location |
| https://bugs.webkit.org/show_bug.cgi?id=98094 |
| |
| Reviewed by Kent Tamura. |
| |
| * platform/chromium-mac/platform/chromium/fast/forms/date/date-suggestion-picker-appearance-expected.png: |
| * platform/chromium/TestExpectations: |
| |
| == Rolled over to ChangeLog-2012-10-02 == |