[CherryPick] Correct input[type=number] value sanitization for user-input
authortkent@chromium.org <tkent@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 23 Nov 2012 13:11:46 +0000 (13:11 +0000)
committerjinwoo jeong <jw00.jeong@samsung.com>
Thu, 28 Mar 2013 03:52:18 +0000 (12:52 +0900)
[Title] Correct input[type=number] value sanitization for user-input
[Issues] N_SE-28998
[Problem] Input type number not showing any error message in Jquery mobile single page application
[Solution] Cherry picked.
[Cherry-Picker] Jinwoo Jeong <jw00.jeong@samsung.com>

Correct input[type=number] value sanitization for user-input
https://bugs.webkit.org/show_bug.cgi?id=103018

Reviewed by Kentaro Hara.

Source/WebCore:

If a number field has non-number string, HTMLInputElement::value is not
updated and returns the past valid value. It doesn't match to the value
sanitization algorithm defined by the HTML standard [1], and Opera's
behavior. We should sanitize non-number strings to "".

[1] http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#number-state-(type=number)
> The value sanitization algorithm is as follows: If the value of the
> element is not a valid floating-point number, then set it to the empty
> string instead.

No new tests. Update existing tests;
fast/forms/number/number-commit-valid-only.html and
fast/forms/number/number-unacceptable-style.html

* html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::subtreeHasChanged):
Remove isAcceptableValue check.

* html/HTMLInputElement.h:
(HTMLInputElement): isAcceptableValue is no longer needed.
* html/InputType.cpp: Remove isAcceptableValue.
* html/InputType.h: Ditto.
* html/NumberInputType.cpp: Ditto.
(WebCore::NumberInputType::hasUnacceptableValue):
Fold the isAcceptableValue content into this.
* html/NumberInputType.h:
(NumberInputType): Remove isAcceptableValue.

LayoutTests:

* fast/forms/number/number-commit-valid-only-expected.txt:
* fast/forms/number/number-commit-valid-only.html:
Update the expected HTMLInputElement::value results.
* fast/forms/number/number-unacceptable-style-expected.txt:
* fast/forms/number/number-unacceptable-style.html:
Add some checks for HTMLInputElement::value.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@135598 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Conflicts:

LayoutTests/ChangeLog
Source/WebCore/ChangeLog

Conflicts:

Source/WebCore/ChangeLog

12 files changed:
LayoutTests/ChangeLog
LayoutTests/fast/forms/number/number-commit-valid-only-expected.txt
LayoutTests/fast/forms/number/number-commit-valid-only.html
LayoutTests/fast/forms/number/number-unacceptable-style-expected.txt
LayoutTests/fast/forms/number/number-unacceptable-style.html
Source/WebCore/ChangeLog
Source/WebCore/html/HTMLInputElement.cpp
Source/WebCore/html/HTMLInputElement.h
Source/WebCore/html/InputType.cpp
Source/WebCore/html/InputType.h
Source/WebCore/html/NumberInputType.cpp
Source/WebCore/html/NumberInputType.h

index 68f8279..5377e9f 100644 (file)
+2012-11-23  Kent Tamura  <tkent@chromium.org>
+
+        Correct input[type=number] value sanitization for user-input
+        https://bugs.webkit.org/show_bug.cgi?id=103018
+
+        Reviewed by Kentaro Hara.
+
+        * fast/forms/number/number-commit-valid-only-expected.txt:
+        * fast/forms/number/number-commit-valid-only.html:
+        Update the expected HTMLInputElement::value results.
+        * fast/forms/number/number-unacceptable-style-expected.txt:
+        * fast/forms/number/number-unacceptable-style.html:
+        Add some checks for HTMLInputElement::value.
+
+2012-11-23  Wojciech Bielawski  <w.bielawski@samsung.com>
+
+        [WK2][WKTR] WebKitTestRunner needs eventSender.contextClick()
+        https://bugs.webkit.org/show_bug.cgi?id=86881
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Added expected results for two tests for EFL platform. Test expectations changed
+        for EFL WK1/WK2 and GTK platforms
+
+        * platform/efl/TestExpectations:
+        * platform/efl-wk1/TestExpectations:
+        * platform/efl-wk2/TestExpectations:
+        * platform/gkt-wk2/TestExpectations:
+        * platform/gtk/editing/selection/5354455-2-expected.txt:
+        * platform/efl/editing/selection/5354455-2-expected.txt: Added.
+        * platform/efl/fast/events/context-no-deselect-expected.txt: Added.
+
+2012-11-23  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
+
+        [EFL] Newly added tests in r135436 and r135456 are failng
+        https://bugs.webkit.org/show_bug.cgi?id=103112
+
+        Unreviewed EFL gardening.
+
+        Skip new failing tests introduced in r135436 and r135456.
+
+        * platform/efl-wk2/TestExpectations:
+        * platform/efl/TestExpectations:
+
+2012-11-23  Csaba Osztrogonác  <ossy@webkit.org>
+
+        Unreviewed gardening, skip failing tests.
+
+        * platform/qt-5.0-wk2/TestExpectations:
+        * platform/wk2/TestExpectations:
+
+2012-11-23  Christophe Dumez  <christophe.dumez@intel.com>
+
+        WebSocket's MessageEvent.origin attribute is an empty string
+        https://bugs.webkit.org/show_bug.cgi?id=102889
+
+        Reviewed by Kentaro Hara.
+
+        Add layout tests to check that the message event's origin attribute
+        is set to the Unicode serialization of the origin of the URL that
+        was passed to the WebSocket object's constructor, as per the
+        WebSocket specification.
+
+        * http/tests/websocket/tests/hybi/send-blob-onmessage-origin-expected.txt: Added.
+        * http/tests/websocket/tests/hybi/send-blob-onmessage-origin.html: Added.
+        * http/tests/websocket/tests/hybi/send-onmessage-origin-expected.txt: Added.
+        * http/tests/websocket/tests/hybi/send-onmessage-origin.html: Added.
+
+2012-11-22  Eugene Klyuchnikov  <eustas.bug@gmail.com>
+
+        Web Inspector: No "Save Heap Snapshot" option after canceling save to file dialog.
+        https://bugs.webkit.org/show_bug.cgi?id=100916
+
+        Reviewed by Yury Semikhatsky.
+
+        Extracted "injectMockProfile" method and reused it in new test.
+
+        * inspector/profiler/heap-snapshot-loader-expected.txt: Added test case.
+        * inspector/profiler/heap-snapshot-loader.html:
+        Refactored and added new test case.
+
+2012-11-23  Allan Sandfeld Jensen  <allan.jensen@digia.com>
+
+        [Qt] REGRESSION(r135507): It made 13 tests fail
+        https://bugs.webkit.org/show_bug.cgi?id=103069
+
+        Reviewed by Simon Hausmann.
+
+        Unskip the last of test regressions now passing.
+
+        * platform/qt/TestExpectations:
+
+2012-11-23  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Updated test expectations.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-23  Jussi Kukkonen  <jussi.kukkonen@intel.com>
+
+        fast/events/mouseover-button.html never releases a mouse button
+        https://bugs.webkit.org/show_bug.cgi?id=103041
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        mouseover-button.html released the wrong mouse button so subsequent
+        tests would fail: This includes at least svg/text/select-*.svg .
+
+        * fast/events/mouseover-button.html:
+
+2012-11-23  Julian Pastarmov  <pastarmovj@chromium.org>
+
+        REGRESSION (r128633): td changes size during re-layout of table although it shouldn't
+        https://bugs.webkit.org/show_bug.cgi?id=102802
+
+        Reviewed by Ojan Vafai.
+
+        This test checks that table layout of some nested tables in quirks mode is computed correctly.
+
+        * fast/table/nested-tables-with-div-offset-expected.txt: Added.
+        * fast/table/nested-tables-with-div-offset.html: Added.
+
+2012-11-23  Allan Sandfeld Jensen  <allan.jensen@digia.com>
+
+        [Qt] REGRESSION(r135507): It made 13 tests fail
+        https://bugs.webkit.org/show_bug.cgi?id=103069
+
+        Reviewed by Simon Hausmann.
+
+        Unskip fixed test and update one benign change.
+
+        * platform/qt/TestExpectations:
+        * platform/qt/fast/preloader/script-expected.txt: Added.
+
+2012-11-23  Pierre Rossi  <pierre.rossi@gmail.com>
+
+        [Qt] REGRESSION(r135515): 3 appcache tests still failing
+        https://bugs.webkit.org/show_bug.cgi?id=103073
+
+        Rubber-stamped by Simon Hausmann.
+
+        * platform/qt/TestExpectations: Unskipped the affected tests.
+
+2012-11-22  Pavel Feldman  <pfeldman@chromium.org>
+
+        Web Inspector: ctrl+end in editor does not select the last symbol.
+        https://bugs.webkit.org/show_bug.cgi?id=103078
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/editor/editor-test.js: Added.
+        (initialize_EditorTests.InspectorTest.createTestEditor):
+        (initialize_EditorTests.InspectorTest.dumpEditorChunks):
+        (initialize_EditorTests):
+        * inspector/editor/text-editor-selection-expected.txt: Added.
+        * inspector/editor/text-editor-selection.html: Added.
+
+2012-11-23  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Updated test expectations.
+
+        * platform/chromium-linux/fast/repaint/line-flow-with-floats-in-regions-expected.png: Added.
+        * platform/chromium-linux/fast/writing-mode/text-orientation-basic-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/virtual/gpu/fast/hidpi/video-controls-in-hidpi-expected.png: Added.
+        * platform/chromium-win/fast/transforms/transformed-focused-text-input-expected.png:
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/pdf-as-image-landscape-expected.png: Added.
+        * platform/chromium-win/platform/chromium/virtual/gpu/fast/canvas/arc360-expected.png:
+        * platform/chromium/TestExpectations:
+        * platform/efl-wk1/fast/transforms/transformed-focused-text-input-expected.png: Renamed from LayoutTests/platform/efl/fast/transforms/transformed-focused-text-input-expected.png.
+        * platform/efl-wk1/fast/writing-mode/text-orientation-basic-expected.png: Renamed from LayoutTests/platform/efl/fast/writing-mode/text-orientation-basic-expected.png.
+
+2012-11-23  János Badics  <jbadics@inf.u-szeged.hu>
+
+        [Qt] Unreviewed gardening after r135532. It made 3 tests fail.
+        https://bugs.webkit.org/show_bug.cgi?id=103073
+
+        * platform/qt/TestExpectations:
+
+2012-11-23  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Update test expectations.
+
+        * platform/chromium-mac-lion/fast/css/input-search-padding-expected.png:
+        * platform/chromium-mac-lion/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/xmlSpace-expected.png:
+        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/xmlSpace-expected.png:
+        * platform/chromium-mac/fast/css/input-search-padding-expected.png:
+        * platform/chromium-mac/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png:
+        * platform/chromium-mac/svg/batik/text/xmlSpace-expected.png:
+        * platform/chromium-win/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png:
+        * platform/chromium-win/svg/batik/text/xmlSpace-expected.png:
+        * platform/efl-wk1/fast/css/input-search-padding-expected.png: Renamed from LayoutTests/platform/efl/fast/css/input-search-padding-expected.png.
+        * platform/efl-wk1/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png.
+        * platform/efl-wk1/svg/batik/text/xmlSpace-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/xmlSpace-expected.png.
+
+2012-11-23  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Update test expectations.
+
+        * platform/chromium-mac-lion/fast/css/font-weight-1-expected.png: Added.
+        * platform/chromium-mac-lion/fast/css/font-weight-1-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/font-weight-1-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/css/font-weight-1-expected.txt: Added.
+        * platform/chromium-mac/fast/css/font-weight-1-expected.png: Added.
+        * platform/chromium-mac/fast/css/font-weight-1-expected.txt: Added.
+        * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/pdf-as-image-expected.png: Added.
+        * platform/chromium-win/fast/css/font-weight-1-expected.png: Renamed from LayoutTests/platform/chromium/fast/css/font-weight-1-expected.png.
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/pdf-as-image-expected.png: Added.
+        * platform/efl-wk1/fast/css/font-weight-1-expected.png: Renamed from LayoutTests/platform/efl/fast/css/font-weight-1-expected.png.
+
+2012-11-23  Thiago Marcos P. Santos  <thiago.santos@intel.com>
+
+        Expose DOM interface for CSS Device Adaptation
+        https://bugs.webkit.org/show_bug.cgi?id=95966
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Imported a test submitted by Opera that tests the exposed interface. 
+
+        * css3/device-adapt/opera/cssom-001-expected.txt: Added.
+        * css3/device-adapt/opera/cssom-001.xhtml: Added.
+        * platform/efl/fast/js/global-constructors-expected.txt:
+
+2012-11-22  Sheriff Bot  <webkit.review.bot@gmail.com>
+
+        Unreviewed, rolling out r135549.
+        http://trac.webkit.org/changeset/135549
+        https://bugs.webkit.org/show_bug.cgi?id=103102
+
+        Multiple layout test crashes (Requested by yurys on #webkit).
+
+        * fast/table/css-table-max-height-expected.txt: Removed.
+        * fast/table/css-table-max-height.html: Removed.
+
+2012-11-22  Rick Byers <rbyers@chromium.org>
+
+        window is missing Touch and TouchList - touch event conformance test failure
+        https://bugs.webkit.org/show_bug.cgi?id=96295
+
+        Reviewed by Adam Barth.
+
+        * fast/events/touch/document-create-touch-list-expected.txt:
+        * fast/events/touch/script-tests/document-create-touch-list.js: Add instanceof checks
+        * platform/efl/fast/js/global-constructors-expected.txt: Add new expected constructors
+        * platform/qt-5.0/fast/js/global-constructors-expected.txt: Add new expected constructors
+        * platform/qt/fast/js/global-constructors-expected.txt: Add new expected constructors
+
+2012-11-22  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Test expectations update after Skia changes.
+
+        * fast/repaint/line-flow-with-floats-in-regions-expected.png: Renamed from LayoutTests/platform/efl/fast/repaint/line-flow-with-floats-in-regions-expected.png.
+        * platform/chromium-linux-x86/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-linux-x86/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-linux-x86/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux-x86/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux-x86/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-linux-x86/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-linux-x86/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-linux-x86/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux-x86/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux-x86/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-linux/fast/css/color-correction-expected.png: Added.
+        * platform/chromium-linux/fast/css/color-correction-on-background-image-expected.png: Added.
+        * platform/chromium-linux/fast/css/color-correction-on-backgrounds-expected.png: Added.
+        * platform/chromium-linux/fast/css/color-correction-on-box-shadow-expected.png: Added.
+        * platform/chromium-linux/fast/css/color-correction-on-text-expected.png: Added.
+        * platform/chromium-linux/fast/css/color-correction-on-text-shadow-expected.png: Added.
+        * platform/chromium-linux/fast/css/color-correction-untagged-images-expected.png: Added.
+        * platform/chromium-linux/fast/css/font-smoothing-expected.png: Added.
+        * platform/chromium-linux/fast/history/visited-link-background-color-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/history/visited-link-background-color-expected.png.
+        * platform/chromium-linux/fast/images/imagemap-circle-focus-ring-expected.png: Added.
+        * platform/chromium-linux/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-linux/fast/images/imagemap-focus-ring-outline-color-expected.png: Added.
+        * platform/chromium-linux/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-linux/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added.
+        * platform/chromium-linux/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added.
+        * platform/chromium-linux/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux/fast/images/imagemap-polygon-focus-ring-expected.png: Added.
+        * platform/chromium-linux/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-linux/fast/text/atsui-pointtooffset-calls-cg-expected.png: Added.
+        * platform/chromium-linux/fast/text/atsui-rtl-override-selection-expected.png: Added.
+        * platform/chromium-linux/fast/text/line-initial-and-final-swashes-expected.png: Added.
+        * platform/chromium-linux/fast/text/midword-break-before-surrogate-pair-2-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/text/midword-break-before-surrogate-pair-2-expected.png.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-linux/platform/chromium/virtual/deferred/fast/images/object-image-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/text/midword-break-before-surrogate-pair-2-expected.png.
+        * platform/chromium-mac-lion/fast/repaint/line-flow-with-floats-in-regions-expected.png:
+        * platform/chromium-mac-lion/svg/batik/filters/filterRegions-expected.png:
+        * platform/chromium-mac-lion/svg/batik/paints/gradientLimit-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/smallFonts-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/textDecoration-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/textEffect-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/textEffect2-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/textFeatures-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/textLayout-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/textLayout2-expected.png:
+        * platform/chromium-mac-lion/svg/batik/text/textProperties2-expected.png:
+        * platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-in-regions-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/filters/filterRegions-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/paints/gradientLimit-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/smallFonts-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/textDecoration-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/textEffect-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/textEffect2-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/textFeatures-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/textLayout-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/textLayout2-expected.png:
+        * platform/chromium-mac-snowleopard/svg/batik/text/textProperties2-expected.png:
+        * platform/chromium-mac/fast/repaint/line-flow-with-floats-in-regions-expected.png:
+        * platform/chromium-mac/svg/batik/filters/filterRegions-expected.png:
+        * platform/chromium-mac/svg/batik/paints/gradientLimit-expected.png:
+        * platform/chromium-mac/svg/batik/text/smallFonts-expected.png:
+        * platform/chromium-mac/svg/batik/text/textDecoration-expected.png:
+        * platform/chromium-mac/svg/batik/text/textEffect-expected.png:
+        * platform/chromium-mac/svg/batik/text/textEffect2-expected.png:
+        * platform/chromium-mac/svg/batik/text/textFeatures-expected.png:
+        * platform/chromium-mac/svg/batik/text/textLayout-expected.png:
+        * platform/chromium-mac/svg/batik/text/textLayout2-expected.png:
+        * platform/chromium-mac/svg/batik/text/textProperties2-expected.png:
+        * platform/chromium-win-xp/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-win-xp/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-win-xp/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-win-xp/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-win-xp/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-win-xp/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-win-xp/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-win-xp/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-win-xp/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-win-xp/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-win/fast/images/imagemap-circle-focus-ring-expected.png: Added.
+        * platform/chromium-win/fast/images/imagemap-focus-ring-outline-color-expected.png: Added.
+        * platform/chromium-win/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added.
+        * platform/chromium-win/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added.
+        * platform/chromium-win/fast/images/imagemap-polygon-focus-ring-expected.png: Added.
+        * platform/chromium-win/fast/repaint/line-flow-with-floats-in-regions-expected.png: Added.
+        * platform/chromium-win/fast/text/line-initial-and-final-swashes-expected.png: Added.
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.png: Added.
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.png: Added.
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added.
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added.
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.png: Added.
+        * platform/chromium-win/svg/batik/filters/filterRegions-expected.png:
+        * platform/chromium-win/svg/batik/paints/gradientLimit-expected.png:
+        * platform/chromium-win/svg/batik/text/smallFonts-expected.png:
+        * platform/chromium-win/svg/batik/text/textDecoration-expected.png:
+        * platform/chromium-win/svg/batik/text/textEffect-expected.png:
+        * platform/chromium-win/svg/batik/text/textEffect2-expected.png:
+        * platform/chromium-win/svg/batik/text/textFeatures-expected.png:
+        * platform/chromium-win/svg/batik/text/textLayout-expected.png:
+        * platform/chromium-win/svg/batik/text/textLayout2-expected.png:
+        * platform/chromium-win/svg/batik/text/textProperties2-expected.png:
+        * platform/chromium/TestExpectations:
+        * platform/chromium/fast/history/visited-link-background-color-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/history/visited-link-background-color-expected.png.
+        * platform/chromium/fast/repaint/line-flow-with-floats-in-regions-expected.png: Removed.
+        * platform/chromium/fast/text/midword-break-before-surrogate-pair-2-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/text/midword-break-before-surrogate-pair-2-expected.png.
+        * platform/efl-wk1/fast/css/font-smoothing-expected.png: Renamed from LayoutTests/platform/efl/fast/css/font-smoothing-expected.png.
+        * platform/efl-wk1/fast/history/visited-link-background-color-expected.png: Renamed from LayoutTests/platform/efl/fast/history/visited-link-background-color-expected.png.
+        * platform/efl-wk1/fast/images/imagemap-circle-focus-ring-expected.png: Renamed from LayoutTests/platform/efl/fast/images/imagemap-circle-focus-ring-expected.png.
+        * platform/efl-wk1/fast/images/imagemap-focus-ring-outline-color-expected.png: Renamed from LayoutTests/platform/efl/fast/images/imagemap-focus-ring-outline-color-expected.png.
+        * platform/efl-wk1/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Renamed from LayoutTests/platform/efl/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png.
+        * platform/efl-wk1/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Renamed from LayoutTests/platform/efl/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png.
+        * platform/efl-wk1/fast/images/imagemap-polygon-focus-ring-expected.png: Renamed from LayoutTests/platform/efl/fast/images/imagemap-polygon-focus-ring-expected.png.
+        * platform/efl-wk1/fast/text/atsui-pointtooffset-calls-cg-expected.png: Renamed from LayoutTests/platform/efl/fast/text/atsui-pointtooffset-calls-cg-expected.png.
+        * platform/efl-wk1/fast/text/atsui-rtl-override-selection-expected.png: Renamed from LayoutTests/platform/efl/fast/text/atsui-rtl-override-selection-expected.png.
+        * platform/efl-wk1/fast/text/line-initial-and-final-swashes-expected.png: Renamed from LayoutTests/platform/efl/fast/text/line-initial-and-final-swashes-expected.png.
+        * platform/efl-wk1/fast/text/line-initial-and-final-swashes-expected.txt: Renamed from LayoutTests/platform/efl/fast/text/line-initial-and-final-swashes-expected.txt.
+        * platform/efl-wk1/fast/text/midword-break-before-surrogate-pair-2-expected.png: Renamed from LayoutTests/platform/efl/fast/text/midword-break-before-surrogate-pair-2-expected.png.
+        * platform/efl-wk1/svg/batik/filters/filterRegions-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/filters/filterRegions-expected.png.
+        * platform/efl-wk1/svg/batik/text/smallFonts-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/smallFonts-expected.png.
+        * platform/efl-wk1/svg/batik/text/textDecoration-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/textDecoration-expected.png.
+        * platform/efl-wk1/svg/batik/text/textEffect-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/textEffect-expected.png.
+        * platform/efl-wk1/svg/batik/text/textEffect2-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/textEffect2-expected.png.
+        * platform/efl-wk1/svg/batik/text/textFeatures-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/textFeatures-expected.png.
+        * platform/efl-wk1/svg/batik/text/textLayout-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/textLayout-expected.png.
+        * platform/efl-wk1/svg/batik/text/textLayout2-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/textLayout2-expected.png.
+        * platform/efl-wk1/svg/batik/text/textProperties2-expected.png: Renamed from LayoutTests/platform/efl/svg/batik/text/textProperties2-expected.png.
+        * platform/gtk/fast/repaint/line-flow-with-floats-in-regions-expected.png: Removed.
+
+2012-11-22  Dirk Schulze  <krit@webkit.org>
+
+        -webkit-mask shorthand switches -webkit-mask-clip and -webkit-mask-origin values
+        https://bugs.webkit.org/show_bug.cgi?id=103083
+
+        Reviewed by Antti Koivisto.
+
+        Add parser tests for -webkit-mask property.
+
+        * fast/masking/parsing-mask-expected.txt: Added.
+        * fast/masking/parsing-mask.html: Added.
+
+2012-11-22  John Mellor  <johnme@chromium.org>
+
+        Text Autosizing: Improve handling of nested comments on reddit.com
+        https://bugs.webkit.org/show_bug.cgi?id=102409
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Added test to confirm that overflow:hidden no longer triggers a cluster.
+
+        * fast/text-autosizing/cluster-narrow-in-wide-ohidden-expected.html: Added.
+        * fast/text-autosizing/cluster-narrow-in-wide-ohidden.html: Added.
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        Test expectations update after enabling Skia changes.
+
+        Unreviewed expectations update.
+
+        Final rebaselines. These tests did not get correctly rebased the first time through.
+
+        * fast/replaced/border-radius-clip-expected.png: Added.
+        * fast/text/line-initial-and-final-swashes-expected.txt: Added.
+        * platform/chromium-linux-x86/fast/replaced/border-radius-clip-expected.txt: Added.
+        * platform/chromium-linux/fast/replaced/border-radius-clip-expected.png:
+        * platform/chromium-linux/fast/replaced/border-radius-clip-expected.txt: Added.
+        * platform/chromium-linux/transforms/3d/hit-testing/backface-hit-test-expected.png:
+        * platform/chromium-linux/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.png:
+        * platform/chromium-mac-lion/fast/block/basic/fieldset-stretch-to-legend-expected.png: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-on-background-image-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-on-backgrounds-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-on-box-shadow-expected.png: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-on-box-shadow-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-on-text-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-on-text-shadow-expected.png: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-on-text-shadow-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/css/color-correction-untagged-images-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/css/font-smoothing-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/images/object-image-expected.png: Added.
+        * platform/chromium-mac-lion/fast/repaint/body-background-image-expected.png: Added.
+        * platform/chromium-mac-lion/fast/repaint/body-background-image-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/repaint/overflow-outline-repaint-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/text/atsui-pointtooffset-calls-cg-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/text/atsui-rtl-override-selection-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/text/font-initial-expected.png: Added.
+        * platform/chromium-mac-lion/fast/text/font-initial-expected.txt: Added.
+        * platform/chromium-mac-lion/fast/text/line-initial-and-final-swashes-expected.png: Added.
+        * platform/chromium-mac-lion/platform/chromium/virtual/deferred/fast/images/object-image-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/block/basic/fieldset-stretch-to-legend-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-on-background-image-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-on-backgrounds-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-on-box-shadow-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-on-box-shadow-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-on-text-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-on-text-shadow-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-on-text-shadow-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/color-correction-untagged-images-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/css/font-smoothing-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/repaint/body-background-image-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/repaint/body-background-image-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/repaint/overflow-outline-repaint-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/text/atsui-pointtooffset-calls-cg-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/text/atsui-rtl-override-selection-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/text/font-initial-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/text/font-initial-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/fast/text/line-initial-and-final-swashes-expected.png: Added.
+        * platform/chromium-mac/fast/block/basic/fieldset-stretch-to-legend-expected.png:
+        * platform/chromium-mac/fast/css/color-correction-expected.txt: Added.
+        * platform/chromium-mac/fast/css/color-correction-on-background-image-expected.txt: Added.
+        * platform/chromium-mac/fast/css/color-correction-on-backgrounds-expected.txt: Added.
+        * platform/chromium-mac/fast/css/color-correction-on-box-shadow-expected.png: Added.
+        * platform/chromium-mac/fast/css/color-correction-on-box-shadow-expected.txt: Added.
+        * platform/chromium-mac/fast/css/color-correction-on-text-expected.txt: Added.
+        * platform/chromium-mac/fast/css/color-correction-on-text-shadow-expected.png: Added.
+        * platform/chromium-mac/fast/css/color-correction-on-text-shadow-expected.txt: Added.
+        * platform/chromium-mac/fast/css/color-correction-untagged-images-expected.txt: Added.
+        * platform/chromium-mac/fast/css/font-smoothing-expected.txt: Added.
+        * platform/chromium-mac/fast/history/visited-link-background-color-expected.png: Added.
+        * platform/chromium-mac/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-mac/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-mac/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-mac/fast/images/object-image-expected.png: Added.
+        * platform/chromium-mac/fast/repaint/body-background-image-expected.png: Added.
+        * platform/chromium-mac/fast/repaint/body-background-image-expected.txt: Added.
+        * platform/chromium-mac/fast/repaint/overflow-outline-repaint-expected.txt: Added.
+        * platform/chromium-mac/fast/text/atsui-pointtooffset-calls-cg-expected.txt: Added.
+        * platform/chromium-mac/fast/text/atsui-rtl-override-selection-expected.txt: Added.
+        * platform/chromium-mac/fast/text/font-initial-expected.png: Added.
+        * platform/chromium-mac/fast/text/font-initial-expected.txt: Added.
+        * platform/chromium-mac/fast/text/line-initial-and-final-swashes-expected.png: Added.
+        * platform/chromium-mac/fast/text/midword-break-before-surrogate-pair-2-expected.png: Added.
+        * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-circle-focus-ring-expected.txt: Added.
+        * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-expected.txt: Added.
+        * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Added.
+        * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/imagemap-polygon-focus-ring-expected.txt: Added.
+        * platform/chromium-mac/platform/chromium/virtual/deferred/fast/images/object-image-expected.png: Added.
+        * platform/chromium-win-xp/fast/replaced/border-radius-clip-expected.txt: Added.
+        * platform/chromium-win/fast/block/basic/fieldset-stretch-to-legend-expected.png:
+        * platform/chromium-win/fast/css/color-correction-expected.png: Added.
+        * platform/chromium-win/fast/css/color-correction-on-background-image-expected.png: Added.
+        * platform/chromium-win/fast/css/color-correction-on-backgrounds-expected.png: Added.
+        * platform/chromium-win/fast/css/color-correction-on-box-shadow-expected.png: Added.
+        * platform/chromium-win/fast/css/color-correction-on-text-expected.png: Added.
+        * platform/chromium-win/fast/css/color-correction-on-text-shadow-expected.png: Added.
+        * platform/chromium-win/fast/css/color-correction-untagged-images-expected.png: Added.
+        * platform/chromium-win/fast/css/font-smoothing-expected.png:
+        * platform/chromium-win/fast/history/visited-link-background-color-expected.png: Added.
+        * platform/chromium-win/fast/images/object-image-expected.png: Added.
+        * platform/chromium-win/fast/repaint/body-background-image-expected.png: Added.
+        * platform/chromium-win/fast/replaced/border-radius-clip-expected.png:
+        * platform/chromium-win/fast/replaced/border-radius-clip-expected.txt:
+        * platform/chromium-win/fast/text/atsui-pointtooffset-calls-cg-expected.png:
+        * platform/chromium-win/fast/text/atsui-rtl-override-selection-expected.png:
+        * platform/chromium-win/fast/text/font-initial-expected.png: Added.
+        * platform/chromium-win/fast/text/line-initial-and-final-swashes-expected.txt: Added.
+        * platform/chromium-win/fast/text/midword-break-before-surrogate-pair-2-expected.png: Added.
+        * platform/chromium-win/platform/chromium/virtual/deferred/fast/images/object-image-expected.png: Added.
+        * platform/chromium/fast/canvas/canvas-scale-strokePath-shadow-expected.txt: Removed.
+        * platform/chromium/fast/css/color-correction-expected.png: Removed.
+        * platform/chromium/fast/css/color-correction-on-background-image-expected.png: Removed.
+        * platform/chromium/fast/css/color-correction-on-backgrounds-expected.png: Removed.
+        * platform/chromium/fast/css/color-correction-on-box-shadow-expected.png: Removed.
+        * platform/chromium/fast/css/color-correction-on-text-expected.png: Removed.
+        * platform/chromium/fast/css/color-correction-on-text-shadow-expected.png: Removed.
+        * platform/chromium/fast/css/color-correction-untagged-images-expected.png: Removed.
+        * platform/chromium/fast/history/visited-link-background-color-expected.png: Removed.
+        * platform/chromium/fast/images/imagemap-circle-focus-ring-expected.png: Removed.
+        * platform/chromium/fast/images/imagemap-focus-ring-outline-color-expected.png: Removed.
+        * platform/chromium/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Removed.
+        * platform/chromium/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Removed.
+        * platform/chromium/fast/images/imagemap-polygon-focus-ring-expected.png: Removed.
+        * platform/chromium/fast/images/object-image-expected.png: Removed.
+        * platform/chromium/fast/repaint/body-background-image-expected.png: Removed.
+        * platform/chromium/fast/replaced/border-radius-clip-expected.png: Removed.
+        * platform/chromium/fast/text/font-initial-expected.png: Removed.
+        * platform/chromium/fast/text/line-initial-and-final-swashes-expected.png: Removed.
+        * platform/chromium/fast/text/line-initial-and-final-swashes-expected.txt: Removed.
+        * platform/chromium/fast/text/midword-break-before-surrogate-pair-2-expected.png: Removed.
+        * platform/mac/fast/replaced/border-radius-clip-expected.png: Removed.
+        * platform/mac/fast/text/line-initial-and-final-swashes-expected.txt: Removed.
+
+2012-11-22  Pravin D  <pravind.2k4@gmail.com>
+
+        max-height property not respected in case of tables
+        https://bugs.webkit.org/show_bug.cgi?id=98633
+
+        Reviewed by Julien Chaffraix.
+
+        * fast/table/css-table-max-height-expected.txt: Added.
+        * fast/table/css-table-max-height.html: Added.
+
+2012-11-22  Robert Kroeger  <rjkroege@chromium.org>
+
+        Unreviewed gardening: Updated test expectations for MountainLion crash in
+        media/video-preload.html.
+        https://bugs.webkit.org/show_bug.cgi?id=103093
+
+        * platform/chromium/TestExpectations:
+
+2012-11-22  Robert Kroeger  <rjkroege@chromium.org>
+
+        [Chromium] Unreviwed gardening. Updated test expectations for failure
+        in complex-joining-using-gpos.html
+        https://bugs.webkit.org/show_bug.cgi?id=101377
+
+        * platform/chromium/TestExpectations:
+
+2012-11-22  Stephen White  <senorblanco@chromium.org>
+
+        [Chromium] Unreviewed gardening.  Remove a now-passing test from TestExpectations.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        Test expectations update after enabling Skia changes.
+
+        Unreviewed expectations update.
+
+        All the SVG tests. We should now be done.
+
+        * To many files to list.
+
+2012-11-22  Stephen White  <senorblanco@chromium.org>
+
+        [Chromium] Unreviewed gardening.  New baselines for test effect-reference-ordering-hw.
+
+        * platform/chromium-linux/css3/filters/effect-reference-ordering-hw-expected.png: Added.
+        * platform/chromium-mac/css3/filters/effect-reference-ordering-hw-expected.png: Added.
+        * platform/chromium-mac/css3/filters/effect-reference-ordering-hw-expected.txt: Added.
+        * platform/chromium-win/css3/filters/effect-reference-ordering-hw-expected.png: Added.
+        * platform/chromium-win/css3/filters/effect-reference-ordering-hw-expected.txt: Added.
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        Test expectations update after enabling Skia changes.
+
+        Unreviewed expectations update.
+
+        Partial update, covering all but eh SVG tests.
+
+        * To many files to list.
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Test expectations update after enabling Skia changes.
+
+        Unreviewed Chromium expectations update.
+
+        Partial update, covering all fast tests. Many more to come.
+
+        * To many files to list. Most of the pixel results in fast for Chromium.
+
+2012-11-22  Pierre Rossi  <pierre.rossi@gmail.com>
+
+        [Qt] REGRESSION(r135515): It made 3-3 tests fail and crash
+        https://bugs.webkit.org/show_bug.cgi?id=103073
+
+        Rubber-stamped by Simon Hausmann.
+
+        Unskip the tests that had regressed.
+
+        * platform/qt/TestExpectations:
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Test expectations update after enabling Skia changes.
+
+        Unreviewed Chromium expectations update.
+
+        Partial update, covering all editing tests. Many more to come.
+
+        * platform/chromium-mac-lion/editing/deleting/4922367-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5099303-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5126166-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5144139-2-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5206311-1-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5272440-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5369009-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5433862-2-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/5483370-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-3608445-fix-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-3608462-fix-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-4083333-fix-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-after-span-ws-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-after-span-ws-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-after-span-ws-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-and-undo-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-004-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-005-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-006-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-007-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-008-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-009-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-010-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-at-paragraph-boundaries-011-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-contents-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-004-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-005-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-006-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-007-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-008-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-009-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-010-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-011-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-012-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-013-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-014-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-015-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-016-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-block-merge-contents-017-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-004-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-005-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-006-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-007-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-br-013-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-character-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-contiguous-ws-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-first-list-item-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-hr-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-image-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-image-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-image-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-leading-ws-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-line-015-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-line-016-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-line-017-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-line-end-ws-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-line-end-ws-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-listitem-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-listitem-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-selection-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-tab-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-tab-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-tab-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-tab-004-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-to-select-table-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-trailing-ws-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-trailing-ws-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-ws-fixup-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-ws-fixup-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-ws-fixup-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/delete-ws-fixup-004-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/list-item-1-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/merge-different-styles-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/merge-endOfParagraph-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/merge-no-br-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/merge-unrendered-space-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/merge-whitespace-pre-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/non-smart-delete-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/pruning-after-merge-2-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/smart-delete-001-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/smart-delete-002-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/smart-delete-003-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/smart-delete-004-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/table-cells-expected.png:
+        * platform/chromium-mac-lion/editing/deleting/type-delete-after-quote-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4580583-1-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4580583-2-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4641880-1-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4641880-2-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4747450-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4916402-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4916541-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/4924441-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5080333-1-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5080333-2-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5136770-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5138441-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5142012-1-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5142012-2-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5481523-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/5569741-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/create-list-with-hr-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/format-block-with-trailing-br-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/indent-empty-root-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/indent-list-item-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/indent-selection-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/insert-list-and-stitch-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/insertHorizontalRule-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/insertImage-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/nsresponder-indent-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/nsresponder-outdent-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/print-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/remove-list-from-range-selection-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/remove-list-item-1-expected.png:
+        * platform/chromium-mac-lion/editing/execCommand/selectAll-expected.png:
+        * platform/chromium-mac-lion/editing/input/caret-at-the-edge-of-contenteditable-expected.png:
+        * platform/chromium-mac-lion/editing/input/caret-at-the-edge-of-input-expected.png:
+        * platform/chromium-mac-lion/editing/input/reveal-caret-of-multiline-contenteditable-expected.png:
+        * platform/chromium-mac-lion/editing/input/reveal-caret-of-multiline-input-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/12882-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/4278698-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/4840662-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/4875189-1-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/4875189-2-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/4959067-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/4960120-1-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/4960120-2-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5002441-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5058163-1-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5058163-2-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5156401-2-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5418891-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5510537-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5549929-2-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/5549929-3-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/6703873-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/before-after-input-element-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/break-blockquote-after-delete-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/editable-inline-element-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/edited-whitespace-1-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/editing-empty-divs-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-3775316-fix-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-3778059-fix-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-3800346-fix-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-after-delete-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-at-end-01-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-at-end-02-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-002-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-003-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-004-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-005-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-006-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-007-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-008-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-009-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-at-tabspan-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-at-tabspan-002-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-at-tabspan-003-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-quoted-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-quoted-002-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-quoted-003-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-quoted-004-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-quoted-005-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-br-quoted-006-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-div-025-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-div-026-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-paragraph-01-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-paragraph-02-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-paragraph-03-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-paragraph-04-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-paragraph-05-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-space-in-empty-doc-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-tab-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-tab-002-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-tab-003-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-tab-004-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-text-at-tabspan-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-text-at-tabspan-002-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-text-at-tabspan-003-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/insert-text-with-newlines-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/line-break-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/multiple-lines-selected-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/paragraph-separator-01-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/paragraph-separator-02-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/paragraph-separator-03-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/paragraph-separator-in-table-1-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/paragraph-separator-in-table-2-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/redo-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/return-key-with-selection-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/return-key-with-selection-002-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/return-key-with-selection-003-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/typing-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/typing-002-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/typing-003-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/typing-around-br-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/typing-around-image-001-expected.png:
+        * platform/chromium-mac-lion/editing/inserting/typing-at-end-of-line-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/3976872-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4076267-2-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4076267-3-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4076267-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4242293-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4631972-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4641033-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4806874-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4944770-1-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4944770-2-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/4947130-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5006779-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5032095-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5071074-2-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5071074-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5075944-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5134759-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5156401-1-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5247341-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5387578-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5478250-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/5601583-1-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/8145-1-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/8145-2-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/8145-3-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/bad-placeholder-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/copy-standalone-image-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/cut-text-001-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/displaced-generic-placeholder-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/displaced-placeholder-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/drag-drop-modifies-page-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/drop-text-without-selection-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/innerText-inline-table-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/input-field-1-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/merge-after-delete-1-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/merge-after-delete-2-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/merge-after-delete-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/merge-end-blockquote-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/merge-end-borders-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/merge-start-blockquote-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/merge-start-list-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-4035648-fix-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-4038267-fix-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-blockquote-after-blockquote-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-001-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-002-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-003-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-004-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-005-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-006-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-007-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-008-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-009-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-line-endings-010-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-match-style-001-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-match-style-002-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-text-019-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/paste-text-at-tabspan-003-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/pasting-object-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/pasting-tabs-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/quirks-mode-br-1-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/smart-drag-drop-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/smart-paste-007-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/smart-paste-008-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/styled-element-markup-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/undoable-fragment-removes-expected.png:
+        * platform/chromium-mac-lion/editing/pasteboard/unrendered-br-expected.png:
+        * platform/chromium-mac-lion/editing/selection/13804-expected.png:
+        * platform/chromium-mac-lion/editing/selection/3690703-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/3690703-expected.png:
+        * platform/chromium-mac-lion/editing/selection/3690719-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4397952-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4402375-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4818145-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4866671-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4889598-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4895428-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4895428-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4932260-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4932260-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4932260-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/4947387-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5007143-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5007143-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5057506-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5057506-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5076323-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5076323-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5076323-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5099303-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5131716-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5131716-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5131716-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5131716-4-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5195166-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5234383-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5234383-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/5240265-expected.png:
+        * platform/chromium-mac-lion/editing/selection/6476-expected.png:
+        * platform/chromium-mac-lion/editing/selection/after-line-wrap-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-before-select-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-ltr-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-ltr-2-left-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-ltr-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-ltr-right-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-rtl-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-rtl-2-left-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-rtl-expected.png:
+        * platform/chromium-mac-lion/editing/selection/caret-rtl-right-expected.png:
+        * platform/chromium-mac-lion/editing/selection/click-start-of-line-expected.png:
+        * platform/chromium-mac-lion/editing/selection/contains-boundaries-expected.png:
+        * platform/chromium-mac-lion/editing/selection/contenteditable-click-inside-expected.png:
+        * platform/chromium-mac-lion/editing/selection/drag-select-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/drag-to-contenteditable-iframe-expected.png:
+        * platform/chromium-mac-lion/editing/selection/editable-non-editable-crash-expected.png:
+        * platform/chromium-mac-lion/editing/selection/end-of-document-expected.png:
+        * platform/chromium-mac-lion/editing/selection/expanding-selections-expected.png:
+        * platform/chromium-mac-lion/editing/selection/expanding-selections2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-character-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-character-002-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-character-003-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-character-004-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-character-005-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-character-006-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-sentence-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-word-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-by-word-002-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-inside-transforms-backward-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-inside-transforms-forward-expected.png:
+        * platform/chromium-mac-lion/editing/selection/extend-selection-bidi-expected.png:
+        * platform/chromium-mac-lion/editing/selection/fake-doubleclick-expected.png:
+        * platform/chromium-mac-lion/editing/selection/iframe-expected.png:
+        * platform/chromium-mac-lion/editing/selection/image-before-linebreak-expected.png:
+        * platform/chromium-mac-lion/editing/selection/inline-table-expected.png:
+        * platform/chromium-mac-lion/editing/selection/leave-requested-block-expected.png:
+        * platform/chromium-mac-lion/editing/selection/mixed-editability-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/mixed-editability-4-expected.png:
+        * platform/chromium-mac-lion/editing/selection/mixed-editability-5-expected.png:
+        * platform/chromium-mac-lion/editing/selection/mixed-editability-6-expected.png:
+        * platform/chromium-mac-lion/editing/selection/mixed-editability-7-expected.png:
+        * platform/chromium-mac-lion/editing/selection/mixed-editability-8-expected.png:
+        * platform/chromium-mac-lion/editing/selection/mixed-editability-9-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-backwords-by-word-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-between-blocks-no-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-character-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-character-002-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-character-003-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-character-004-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-character-005-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-character-6-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-line-002-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-sentence-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-sentence-linebreak-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-by-word-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/move-past-trailing-space-expected.png:
+        * platform/chromium-mac-lion/editing/selection/previous-line-position-expected.png:
+        * platform/chromium-mac-lion/editing/selection/replace-selection-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/replaced-boundaries-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/replaced-boundaries-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/replaced-boundaries-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-across-readonly-input-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-across-readonly-input-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-across-readonly-input-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-across-readonly-input-4-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-across-readonly-input-5-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-all-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-all-002-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-all-iframe-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-box-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-element-paragraph-boundary-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-from-textfield-outwards-expected.png:
+        * platform/chromium-mac-lion/editing/selection/select-missing-image-expected.png:
+        * platform/chromium-mac-lion/editing/selection/selectNode-expected.png:
+        * platform/chromium-mac-lion/editing/selection/selectNodeContents-expected.png:
+        * platform/chromium-mac-lion/editing/selection/selection-3748164-fix-expected.png:
+        * platform/chromium-mac-lion/editing/selection/selection-button-text-expected.png:
+        * platform/chromium-mac-lion/editing/selection/table-caret-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/table-caret-2-expected.png:
+        * platform/chromium-mac-lion/editing/selection/table-caret-3-expected.png:
+        * platform/chromium-mac-lion/editing/selection/transformed-selection-rects-expected.png:
+        * platform/chromium-mac-lion/editing/selection/triple-click-in-pre-expected.png:
+        * platform/chromium-mac-lion/editing/selection/unrendered-001-expected.png:
+        * platform/chromium-mac-lion/editing/selection/unrendered-002-expected.png:
+        * platform/chromium-mac-lion/editing/selection/unrendered-003-expected.png:
+        * platform/chromium-mac-lion/editing/selection/unrendered-004-expected.png:
+        * platform/chromium-mac-lion/editing/selection/unrendered-005-expected.png:
+        * platform/chromium-mac-lion/editing/selection/unrendered-space-expected.png:
+        * platform/chromium-mac-lion/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png:
+        * platform/chromium-mac-lion/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png:
+        * platform/chromium-mac-lion/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png:
+        * platform/chromium-mac-lion/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png:
+        * platform/chromium-mac-lion/editing/selection/wrapped-line-caret-1-expected.png:
+        * platform/chromium-mac-lion/editing/selection/wrapped-line-caret-2-expected.png:
+        * platform/chromium-mac-lion/editing/spelling/grammar-markers-expected.png:
+        * platform/chromium-mac-lion/editing/spelling/grammar-markers-hidpi-expected.png:
+        * platform/chromium-mac-lion/editing/spelling/spelling-expected.png:
+        * platform/chromium-mac-lion/editing/style/4916887-expected.png:
+        * platform/chromium-mac-lion/editing/style/5017613-1-expected.png:
+        * platform/chromium-mac-lion/editing/style/5017613-2-expected.png:
+        * platform/chromium-mac-lion/editing/style/5046875-1-expected.png:
+        * platform/chromium-mac-lion/editing/style/5046875-2-expected.png:
+        * platform/chromium-mac-lion/editing/style/5065910-expected.png:
+        * platform/chromium-mac-lion/editing/style/5084241-expected.png:
+        * platform/chromium-mac-lion/editing/style/5228141-expected.png:
+        * platform/chromium-mac-lion/editing/style/5279521-expected.png:
+        * platform/chromium-mac-lion/editing/style/block-styles-007-expected.png:
+        * platform/chromium-mac-lion/editing/style/highlight-expected.png:
+        * platform/chromium-mac-lion/editing/style/smoosh-styles-001-expected.png:
+        * platform/chromium-mac-lion/editing/style/smoosh-styles-003-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-3681552-fix-001-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-3681552-fix-002-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-3998892-fix-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-boundary-001-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-boundary-002-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-boundary-003-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-boundary-004-expected.png:
+        * platform/chromium-mac-lion/editing/style/style-boundary-005-expected.png:
+        * platform/chromium-mac-lion/editing/style/typing-style-001-expected.png:
+        * platform/chromium-mac-lion/editing/style/typing-style-002-expected.png:
+        * platform/chromium-mac-lion/editing/style/unbold-in-bold-expected.png:
+        * platform/chromium-mac-lion/editing/undo/4063751-expected.png:
+        * platform/chromium-mac-lion/editing/undo/redo-typing-001-expected.png:
+        * platform/chromium-mac-lion/editing/undo/undo-combined-delete-boundary-expected.png:
+        * platform/chromium-mac-lion/editing/undo/undo-combined-delete-expected.png:
+        * platform/chromium-mac-lion/editing/undo/undo-delete-boundary-expected.png:
+        * platform/chromium-mac-lion/editing/undo/undo-delete-expected.png:
+        * platform/chromium-mac-lion/editing/undo/undo-forward-delete-boundary-expected.png:
+        * platform/chromium-mac-lion/editing/undo/undo-forward-delete-expected.png:
+        * platform/chromium-mac-lion/editing/undo/undo-typing-001-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/list-delete-001-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/list-delete-003-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/list-type-after-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/list-type-before-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/table-delete-001-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/table-delete-002-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/table-delete-003-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/table-type-after-expected.png:
+        * platform/chromium-mac-lion/editing/unsupported-content/table-type-before-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/4922367-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5099303-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5126166-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5144139-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5206311-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5272440-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5369009-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5433862-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/5483370-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-after-span-ws-001-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-after-span-ws-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-after-span-ws-003-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-br-013-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-first-list-item-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-hr-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-line-015-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-line-016-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-line-017-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-line-end-ws-001-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-line-end-ws-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-to-select-table-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/list-item-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/merge-different-styles-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/merge-endOfParagraph-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/merge-no-br-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/merge-unrendered-space-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/merge-whitespace-pre-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/pruning-after-merge-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/smart-delete-003-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/smart-delete-004-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/table-cells-expected.png:
+        * platform/chromium-mac-snowleopard/editing/deleting/type-delete-after-quote-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4580583-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4580583-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4641880-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4641880-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4747450-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4916402-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4916541-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/4924441-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5080333-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5080333-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5136770-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5138441-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5142012-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5142012-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5481523-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/5569741-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/create-list-with-hr-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/format-block-with-trailing-br-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/indent-empty-root-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/indent-list-item-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/indent-selection-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/insert-list-and-stitch-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/insertHorizontalRule-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/insertImage-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/nsresponder-indent-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/nsresponder-outdent-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/remove-list-from-range-selection-expected.png:
+        * platform/chromium-mac-snowleopard/editing/execCommand/remove-list-item-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/input/caret-at-the-edge-of-contenteditable-expected.png:
+        * platform/chromium-mac-snowleopard/editing/input/caret-at-the-edge-of-input-expected.png:
+        * platform/chromium-mac-snowleopard/editing/input/reveal-caret-of-multiline-contenteditable-expected.png:
+        * platform/chromium-mac-snowleopard/editing/input/reveal-caret-of-multiline-input-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/12882-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/4278698-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/4840662-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/4875189-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/4875189-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/4959067-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/4960120-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/4960120-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5002441-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5058163-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5058163-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5156401-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5418891-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5510537-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5549929-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/5549929-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/6703873-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/before-after-input-element-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/break-blockquote-after-delete-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/editable-inline-element-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/edited-whitespace-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/editing-empty-divs-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-at-end-01-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-at-end-02-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-br-009-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-001-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-003-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-004-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-005-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-006-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-paragraph-01-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-paragraph-02-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-paragraph-03-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-paragraph-04-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/insert-paragraph-05-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/line-break-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/multiple-lines-selected-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-01-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-02-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-03-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-in-table-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-in-table-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/redo-expected.png:
+        * platform/chromium-mac-snowleopard/editing/inserting/typing-at-end-of-line-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/3976872-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4076267-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4076267-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4076267-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4242293-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4631972-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4806874-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4944770-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4944770-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/4947130-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5006779-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5032095-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5071074-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5071074-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5075944-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5134759-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5156401-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5247341-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5387578-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5478250-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/5601583-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/8145-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/8145-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/8145-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/bad-placeholder-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/copy-standalone-image-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/displaced-generic-placeholder-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/displaced-placeholder-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/drag-drop-modifies-page-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/drop-text-without-selection-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/innerText-inline-table-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/input-field-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/merge-after-delete-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/merge-after-delete-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/merge-after-delete-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/merge-end-blockquote-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/merge-end-borders-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/merge-start-blockquote-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/merge-start-list-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-after-blockquote-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/pasting-object-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/quirks-mode-br-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/smart-drag-drop-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/smart-paste-008-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/styled-element-markup-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/undoable-fragment-removes-expected.png:
+        * platform/chromium-mac-snowleopard/editing/pasteboard/unrendered-br-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/13804-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/4402375-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4818145-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4866671-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4889598-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4895428-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4895428-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4932260-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4932260-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4932260-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/4947387-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5007143-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5007143-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5057506-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5057506-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5076323-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5076323-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5076323-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5099303-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5131716-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5131716-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5131716-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5131716-4-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5195166-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5234383-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5234383-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/6476-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/after-line-wrap-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-before-select-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-ltr-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-ltr-2-left-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-ltr-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-ltr-right-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/click-start-of-line-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/contains-boundaries-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/contenteditable-click-inside-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/drag-select-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/drag-to-contenteditable-iframe-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/editable-non-editable-crash-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/end-of-document-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/expanding-selections-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/expanding-selections2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/extend-by-word-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/fake-doubleclick-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/iframe-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/image-before-linebreak-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/inline-table-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/leave-requested-block-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/mixed-editability-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/mixed-editability-4-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/mixed-editability-5-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/mixed-editability-6-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/mixed-editability-7-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/mixed-editability-8-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/mixed-editability-9-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/move-by-line-001-expected.png: Added.
+        * platform/chromium-mac-snowleopard/editing/selection/move-by-sentence-linebreak-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/previous-line-position-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/replace-selection-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-across-readonly-input-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-across-readonly-input-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-across-readonly-input-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-across-readonly-input-4-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-across-readonly-input-5-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-all-001-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-all-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-all-iframe-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-box-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-element-paragraph-boundary-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/selectNode-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/selectNodeContents-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/selection-button-text-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/table-caret-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/table-caret-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/table-caret-3-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/transformed-selection-rects-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/triple-click-in-pre-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/unrendered-001-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/unrendered-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/unrendered-003-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/unrendered-004-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/unrendered-005-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/unrendered-space-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/wrapped-line-caret-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/selection/wrapped-line-caret-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/spelling/grammar-markers-expected.png:
+        * platform/chromium-mac-snowleopard/editing/spelling/spelling-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/4916887-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5017613-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5017613-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5046875-2-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5065910-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5084241-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5228141-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/5279521-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/highlight-expected.png:
+        * platform/chromium-mac-snowleopard/editing/style/style-boundary-005-expected.png:
+        * platform/chromium-mac-snowleopard/editing/undo/4063751-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/list-delete-001-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/list-delete-003-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/list-type-after-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/list-type-before-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/table-delete-001-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/table-delete-002-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/table-delete-003-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/table-type-after-expected.png:
+        * platform/chromium-mac-snowleopard/editing/unsupported-content/table-type-before-expected.png:
+        * platform/chromium-mac/editing/deleting/4922367-expected.png:
+        * platform/chromium-mac/editing/deleting/5099303-expected.png:
+        * platform/chromium-mac/editing/deleting/5126166-expected.png:
+        * platform/chromium-mac/editing/deleting/5144139-2-expected.png:
+        * platform/chromium-mac/editing/deleting/5206311-1-expected.png:
+        * platform/chromium-mac/editing/deleting/5272440-expected.png:
+        * platform/chromium-mac/editing/deleting/5369009-expected.png:
+        * platform/chromium-mac/editing/deleting/5433862-2-expected.png:
+        * platform/chromium-mac/editing/deleting/5483370-expected.png:
+        * platform/chromium-mac/editing/deleting/collapse-whitespace-3587601-fix-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-3608445-fix-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-3608462-fix-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-4083333-fix-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-after-span-ws-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-after-span-ws-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-after-span-ws-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-and-undo-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-004-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-005-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-006-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-007-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-008-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-009-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-010-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-011-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-at-start-or-end-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-contents-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-contents-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-contents-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-004-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-005-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-006-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-007-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-008-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-009-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-010-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-011-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-012-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-013-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-014-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-015-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-016-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-block-merge-contents-017-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-004-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-005-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-006-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-007-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-br-013-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-character-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-contiguous-ws-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-first-list-item-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-hr-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-image-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-image-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-image-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-image-004-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-leading-ws-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-line-015-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-line-016-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-line-017-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-line-end-ws-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-line-end-ws-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-listitem-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-listitem-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-selection-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-tab-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-tab-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-tab-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-tab-004-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-to-select-table-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-trailing-ws-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-trailing-ws-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-ws-fixup-001-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-ws-fixup-002-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-ws-fixup-003-expected.png:
+        * platform/chromium-mac/editing/deleting/delete-ws-fixup-004-expected.png:
+        * platform/chromium-mac/editing/deleting/list-item-1-expected.png:
+        * platform/chromium-mac/editing/deleting/merge-different-styles-expected.png:
+        * platform/chromium-mac/editing/deleting/merge-endOfParagraph-expected.png:
+        * platform/chromium-mac/editing/deleting/merge-no-br-expected.png:
+        * platform/chromium-mac/editing/deleting/merge-unrendered-space-expected.png:
+        * platform/chromium-mac/editing/deleting/merge-whitespace-pre-expected.png:
+        * platform/chromium-mac/editing/deleting/non-smart-delete-expected.png:
+        * platform/chromium-mac/editing/deleting/pruning-after-merge-2-expected.png:
+        * platform/chromium-mac/editing/deleting/smart-delete-001-expected.png:
+        * platform/chromium-mac/editing/deleting/smart-delete-002-expected.png:
+        * platform/chromium-mac/editing/deleting/smart-delete-003-expected.png:
+        * platform/chromium-mac/editing/deleting/smart-delete-004-expected.png:
+        * platform/chromium-mac/editing/deleting/table-cells-expected.png:
+        * platform/chromium-mac/editing/deleting/type-delete-after-quote-expected.png:
+        * platform/chromium-mac/editing/execCommand/4580583-1-expected.png:
+        * platform/chromium-mac/editing/execCommand/4580583-2-expected.png:
+        * platform/chromium-mac/editing/execCommand/4641880-1-expected.png:
+        * platform/chromium-mac/editing/execCommand/4641880-2-expected.png:
+        * platform/chromium-mac/editing/execCommand/4747450-expected.png:
+        * platform/chromium-mac/editing/execCommand/4916402-expected.png:
+        * platform/chromium-mac/editing/execCommand/4916541-expected.png:
+        * platform/chromium-mac/editing/execCommand/4924441-expected.png:
+        * platform/chromium-mac/editing/execCommand/5080333-1-expected.png:
+        * platform/chromium-mac/editing/execCommand/5080333-2-expected.png:
+        * platform/chromium-mac/editing/execCommand/5136770-expected.png:
+        * platform/chromium-mac/editing/execCommand/5138441-expected.png:
+        * platform/chromium-mac/editing/execCommand/5142012-1-expected.png:
+        * platform/chromium-mac/editing/execCommand/5142012-2-expected.png:
+        * platform/chromium-mac/editing/execCommand/5481523-expected.png:
+        * platform/chromium-mac/editing/execCommand/5569741-expected.png:
+        * platform/chromium-mac/editing/execCommand/create-list-with-hr-expected.png:
+        * platform/chromium-mac/editing/execCommand/format-block-with-trailing-br-expected.png:
+        * platform/chromium-mac/editing/execCommand/indent-empty-root-expected.png:
+        * platform/chromium-mac/editing/execCommand/indent-list-item-expected.png:
+        * platform/chromium-mac/editing/execCommand/indent-selection-expected.png:
+        * platform/chromium-mac/editing/execCommand/insert-list-and-stitch-expected.png:
+        * platform/chromium-mac/editing/execCommand/insertHorizontalRule-expected.png:
+        * platform/chromium-mac/editing/execCommand/insertImage-expected.png:
+        * platform/chromium-mac/editing/execCommand/nsresponder-indent-expected.png:
+        * platform/chromium-mac/editing/execCommand/nsresponder-outdent-expected.png:
+        * platform/chromium-mac/editing/execCommand/print-expected.png:
+        * platform/chromium-mac/editing/execCommand/remove-list-from-range-selection-expected.png:
+        * platform/chromium-mac/editing/execCommand/remove-list-item-1-expected.png:
+        * platform/chromium-mac/editing/execCommand/selectAll-expected.png:
+        * platform/chromium-mac/editing/input/caret-at-the-edge-of-contenteditable-expected.png:
+        * platform/chromium-mac/editing/input/caret-at-the-edge-of-input-expected.png:
+        * platform/chromium-mac/editing/input/reveal-caret-of-multiline-contenteditable-expected.png:
+        * platform/chromium-mac/editing/input/reveal-caret-of-multiline-input-expected.png:
+        * platform/chromium-mac/editing/inserting/12882-expected.png:
+        * platform/chromium-mac/editing/inserting/4278698-expected.png:
+        * platform/chromium-mac/editing/inserting/4840662-expected.png:
+        * platform/chromium-mac/editing/inserting/4875189-1-expected.png:
+        * platform/chromium-mac/editing/inserting/4875189-2-expected.png:
+        * platform/chromium-mac/editing/inserting/4959067-expected.png:
+        * platform/chromium-mac/editing/inserting/4960120-1-expected.png:
+        * platform/chromium-mac/editing/inserting/4960120-2-expected.png:
+        * platform/chromium-mac/editing/inserting/5002441-expected.png:
+        * platform/chromium-mac/editing/inserting/5058163-1-expected.png:
+        * platform/chromium-mac/editing/inserting/5058163-2-expected.png:
+        * platform/chromium-mac/editing/inserting/5156401-2-expected.png:
+        * platform/chromium-mac/editing/inserting/5418891-expected.png:
+        * platform/chromium-mac/editing/inserting/5510537-expected.png:
+        * platform/chromium-mac/editing/inserting/5549929-2-expected.png:
+        * platform/chromium-mac/editing/inserting/5549929-3-expected.png:
+        * platform/chromium-mac/editing/inserting/6703873-expected.png:
+        * platform/chromium-mac/editing/inserting/before-after-input-element-expected.png:
+        * platform/chromium-mac/editing/inserting/break-blockquote-after-delete-expected.png:
+        * platform/chromium-mac/editing/inserting/editable-inline-element-expected.png:
+        * platform/chromium-mac/editing/inserting/edited-whitespace-1-expected.png:
+        * platform/chromium-mac/editing/inserting/editing-empty-divs-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-3775316-fix-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-3778059-fix-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-3800346-fix-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-after-delete-001-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-at-end-01-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-at-end-02-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-001-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-002-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-003-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-004-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-005-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-006-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-007-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-008-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-009-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-at-tabspan-001-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-at-tabspan-002-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-at-tabspan-003-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-quoted-001-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-quoted-002-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-quoted-003-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-quoted-004-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-quoted-005-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-br-quoted-006-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-div-025-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-div-026-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-paragraph-01-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-paragraph-02-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-paragraph-03-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-paragraph-04-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-paragraph-05-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-space-in-empty-doc-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-tab-001-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-tab-002-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-tab-003-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-tab-004-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-text-at-tabspan-001-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-text-at-tabspan-002-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-text-at-tabspan-003-expected.png:
+        * platform/chromium-mac/editing/inserting/insert-text-with-newlines-expected.png:
+        * platform/chromium-mac/editing/inserting/line-break-expected.png:
+        * platform/chromium-mac/editing/inserting/multiple-lines-selected-expected.png:
+        * platform/chromium-mac/editing/inserting/paragraph-separator-01-expected.png:
+        * platform/chromium-mac/editing/inserting/paragraph-separator-02-expected.png:
+        * platform/chromium-mac/editing/inserting/paragraph-separator-03-expected.png:
+        * platform/chromium-mac/editing/inserting/paragraph-separator-in-table-1-expected.png:
+        * platform/chromium-mac/editing/inserting/paragraph-separator-in-table-2-expected.png:
+        * platform/chromium-mac/editing/inserting/redo-expected.png:
+        * platform/chromium-mac/editing/inserting/return-key-with-selection-001-expected.png:
+        * platform/chromium-mac/editing/inserting/return-key-with-selection-002-expected.png:
+        * platform/chromium-mac/editing/inserting/return-key-with-selection-003-expected.png:
+        * platform/chromium-mac/editing/inserting/typing-001-expected.png:
+        * platform/chromium-mac/editing/inserting/typing-002-expected.png:
+        * platform/chromium-mac/editing/inserting/typing-003-expected.png:
+        * platform/chromium-mac/editing/inserting/typing-around-br-001-expected.png:
+        * platform/chromium-mac/editing/inserting/typing-around-image-001-expected.png:
+        * platform/chromium-mac/editing/inserting/typing-at-end-of-line-expected.png:
+        * platform/chromium-mac/editing/pasteboard/3976872-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4076267-2-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4076267-3-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4076267-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4242293-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4631972-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4641033-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4806874-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4944770-1-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4944770-2-expected.png:
+        * platform/chromium-mac/editing/pasteboard/4947130-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5006779-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5032095-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5071074-2-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5071074-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5075944-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5134759-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5156401-1-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5247341-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5387578-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5478250-expected.png:
+        * platform/chromium-mac/editing/pasteboard/5601583-1-expected.png:
+        * platform/chromium-mac/editing/pasteboard/8145-1-expected.png:
+        * platform/chromium-mac/editing/pasteboard/8145-2-expected.png:
+        * platform/chromium-mac/editing/pasteboard/8145-3-expected.png:
+        * platform/chromium-mac/editing/pasteboard/bad-placeholder-expected.png:
+        * platform/chromium-mac/editing/pasteboard/copy-standalone-image-expected.png:
+        * platform/chromium-mac/editing/pasteboard/cut-text-001-expected.png:
+        * platform/chromium-mac/editing/pasteboard/displaced-generic-placeholder-expected.png:
+        * platform/chromium-mac/editing/pasteboard/displaced-placeholder-expected.png:
+        * platform/chromium-mac/editing/pasteboard/drag-drop-modifies-page-expected.png:
+        * platform/chromium-mac/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png:
+        * platform/chromium-mac/editing/pasteboard/drop-text-without-selection-expected.png:
+        * platform/chromium-mac/editing/pasteboard/innerText-inline-table-expected.png:
+        * platform/chromium-mac/editing/pasteboard/input-field-1-expected.png:
+        * platform/chromium-mac/editing/pasteboard/merge-after-delete-1-expected.png:
+        * platform/chromium-mac/editing/pasteboard/merge-after-delete-2-expected.png:
+        * platform/chromium-mac/editing/pasteboard/merge-after-delete-expected.png:
+        * platform/chromium-mac/editing/pasteboard/merge-end-blockquote-expected.png:
+        * platform/chromium-mac/editing/pasteboard/merge-end-borders-expected.png:
+        * platform/chromium-mac/editing/pasteboard/merge-start-blockquote-expected.png:
+        * platform/chromium-mac/editing/pasteboard/merge-start-list-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-4035648-fix-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-4038267-fix-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-blockquote-after-blockquote-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-001-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-002-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-003-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-004-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-005-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-006-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-007-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-008-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-009-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-line-endings-010-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-match-style-001-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-match-style-002-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-text-019-expected.png:
+        * platform/chromium-mac/editing/pasteboard/paste-text-at-tabspan-003-expected.png:
+        * platform/chromium-mac/editing/pasteboard/pasting-object-expected.png:
+        * platform/chromium-mac/editing/pasteboard/pasting-tabs-expected.png:
+        * platform/chromium-mac/editing/pasteboard/quirks-mode-br-1-expected.png:
+        * platform/chromium-mac/editing/pasteboard/smart-drag-drop-expected.png:
+        * platform/chromium-mac/editing/pasteboard/smart-paste-007-expected.png:
+        * platform/chromium-mac/editing/pasteboard/smart-paste-008-expected.png:
+        * platform/chromium-mac/editing/pasteboard/styled-element-markup-expected.png:
+        * platform/chromium-mac/editing/pasteboard/undoable-fragment-removes-expected.png:
+        * platform/chromium-mac/editing/pasteboard/unrendered-br-expected.png:
+        * platform/chromium-mac/editing/selection/13804-expected.png:
+        * platform/chromium-mac/editing/selection/3690703-2-expected.png:
+        * platform/chromium-mac/editing/selection/3690703-expected.png:
+        * platform/chromium-mac/editing/selection/3690719-expected.png:
+        * platform/chromium-mac/editing/selection/4397952-expected.png:
+        * platform/chromium-mac/editing/selection/4402375-expected.png:
+        * platform/chromium-mac/editing/selection/4818145-expected.png:
+        * platform/chromium-mac/editing/selection/4866671-expected.png:
+        * platform/chromium-mac/editing/selection/4889598-expected.png:
+        * platform/chromium-mac/editing/selection/4895428-2-expected.png:
+        * platform/chromium-mac/editing/selection/4895428-3-expected.png:
+        * platform/chromium-mac/editing/selection/4932260-1-expected.png:
+        * platform/chromium-mac/editing/selection/4932260-2-expected.png:
+        * platform/chromium-mac/editing/selection/4932260-3-expected.png:
+        * platform/chromium-mac/editing/selection/4947387-expected.png:
+        * platform/chromium-mac/editing/selection/5007143-2-expected.png:
+        * platform/chromium-mac/editing/selection/5007143-expected.png:
+        * platform/chromium-mac/editing/selection/5057506-2-expected.png:
+        * platform/chromium-mac/editing/selection/5057506-expected.png:
+        * platform/chromium-mac/editing/selection/5076323-1-expected.png:
+        * platform/chromium-mac/editing/selection/5076323-2-expected.png:
+        * platform/chromium-mac/editing/selection/5076323-3-expected.png:
+        * platform/chromium-mac/editing/selection/5099303-expected.png:
+        * platform/chromium-mac/editing/selection/5131716-1-expected.png:
+        * platform/chromium-mac/editing/selection/5131716-2-expected.png:
+        * platform/chromium-mac/editing/selection/5131716-3-expected.png:
+        * platform/chromium-mac/editing/selection/5131716-4-expected.png:
+        * platform/chromium-mac/editing/selection/5195166-2-expected.png:
+        * platform/chromium-mac/editing/selection/5234383-1-expected.png:
+        * platform/chromium-mac/editing/selection/5234383-2-expected.png:
+        * platform/chromium-mac/editing/selection/5240265-expected.png:
+        * platform/chromium-mac/editing/selection/6476-expected.png:
+        * platform/chromium-mac/editing/selection/after-line-wrap-expected.png:
+        * platform/chromium-mac/editing/selection/caret-before-select-expected.png:
+        * platform/chromium-mac/editing/selection/caret-ltr-2-expected.png:
+        * platform/chromium-mac/editing/selection/caret-ltr-2-left-expected.png:
+        * platform/chromium-mac/editing/selection/caret-ltr-expected.png:
+        * platform/chromium-mac/editing/selection/caret-ltr-right-expected.png:
+        * platform/chromium-mac/editing/selection/caret-rtl-2-expected.png:
+        * platform/chromium-mac/editing/selection/caret-rtl-2-left-expected.png:
+        * platform/chromium-mac/editing/selection/caret-rtl-expected.png:
+        * platform/chromium-mac/editing/selection/caret-rtl-right-expected.png:
+        * platform/chromium-mac/editing/selection/click-start-of-line-expected.png:
+        * platform/chromium-mac/editing/selection/contains-boundaries-expected.png:
+        * platform/chromium-mac/editing/selection/contenteditable-click-inside-expected.png:
+        * platform/chromium-mac/editing/selection/drag-select-1-expected.png:
+        * platform/chromium-mac/editing/selection/drag-to-contenteditable-iframe-expected.png:
+        * platform/chromium-mac/editing/selection/editable-non-editable-crash-expected.png:
+        * platform/chromium-mac/editing/selection/end-of-document-expected.png:
+        * platform/chromium-mac/editing/selection/expanding-selections-expected.png:
+        * platform/chromium-mac/editing/selection/expanding-selections2-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-character-001-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-character-002-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-character-003-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-character-004-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-character-005-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-character-006-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-sentence-001-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-word-001-expected.png:
+        * platform/chromium-mac/editing/selection/extend-by-word-002-expected.png:
+        * platform/chromium-mac/editing/selection/extend-inside-transforms-backward-expected.png:
+        * platform/chromium-mac/editing/selection/extend-inside-transforms-forward-expected.png:
+        * platform/chromium-mac/editing/selection/extend-selection-bidi-expected.png:
+        * platform/chromium-mac/editing/selection/fake-doubleclick-expected.png:
+        * platform/chromium-mac/editing/selection/iframe-expected.png:
+        * platform/chromium-mac/editing/selection/image-before-linebreak-expected.png:
+        * platform/chromium-mac/editing/selection/inline-table-expected.png:
+        * platform/chromium-mac/editing/selection/leave-requested-block-expected.png:
+        * platform/chromium-mac/editing/selection/mixed-editability-3-expected.png:
+        * platform/chromium-mac/editing/selection/mixed-editability-4-expected.png:
+        * platform/chromium-mac/editing/selection/mixed-editability-5-expected.png:
+        * platform/chromium-mac/editing/selection/mixed-editability-6-expected.png:
+        * platform/chromium-mac/editing/selection/mixed-editability-7-expected.png:
+        * platform/chromium-mac/editing/selection/mixed-editability-8-expected.png:
+        * platform/chromium-mac/editing/selection/mixed-editability-9-expected.png:
+        * platform/chromium-mac/editing/selection/move-backwords-by-word-001-expected.png:
+        * platform/chromium-mac/editing/selection/move-between-blocks-no-001-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-character-001-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-character-002-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-character-003-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-character-004-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-character-005-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-character-6-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-line-001-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-line-002-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-sentence-001-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-sentence-linebreak-expected.png:
+        * platform/chromium-mac/editing/selection/move-by-word-001-expected.png:
+        * platform/chromium-mac/editing/selection/move-past-trailing-space-expected.png:
+        * platform/chromium-mac/editing/selection/previous-line-position-expected.png:
+        * platform/chromium-mac/editing/selection/replace-selection-1-expected.png:
+        * platform/chromium-mac/editing/selection/replaced-boundaries-1-expected.png:
+        * platform/chromium-mac/editing/selection/replaced-boundaries-2-expected.png:
+        * platform/chromium-mac/editing/selection/replaced-boundaries-3-expected.png:
+        * platform/chromium-mac/editing/selection/select-across-readonly-input-1-expected.png:
+        * platform/chromium-mac/editing/selection/select-across-readonly-input-2-expected.png:
+        * platform/chromium-mac/editing/selection/select-across-readonly-input-3-expected.png:
+        * platform/chromium-mac/editing/selection/select-across-readonly-input-4-expected.png:
+        * platform/chromium-mac/editing/selection/select-across-readonly-input-5-expected.png:
+        * platform/chromium-mac/editing/selection/select-all-001-expected.png:
+        * platform/chromium-mac/editing/selection/select-all-002-expected.png:
+        * platform/chromium-mac/editing/selection/select-all-iframe-expected.png:
+        * platform/chromium-mac/editing/selection/select-box-expected.png:
+        * platform/chromium-mac/editing/selection/select-element-paragraph-boundary-expected.png:
+        * platform/chromium-mac/editing/selection/select-from-textfield-outwards-expected.png:
+        * platform/chromium-mac/editing/selection/select-missing-image-expected.png:
+        * platform/chromium-mac/editing/selection/selectNode-expected.png:
+        * platform/chromium-mac/editing/selection/selectNodeContents-expected.png:
+        * platform/chromium-mac/editing/selection/selection-3748164-fix-expected.png:
+        * platform/chromium-mac/editing/selection/selection-button-text-expected.png:
+        * platform/chromium-mac/editing/selection/table-caret-1-expected.png:
+        * platform/chromium-mac/editing/selection/table-caret-2-expected.png:
+        * platform/chromium-mac/editing/selection/table-caret-3-expected.png:
+        * platform/chromium-mac/editing/selection/transformed-selection-rects-expected.png:
+        * platform/chromium-mac/editing/selection/triple-click-in-pre-expected.png:
+        * platform/chromium-mac/editing/selection/unrendered-001-expected.png:
+        * platform/chromium-mac/editing/selection/unrendered-002-expected.png:
+        * platform/chromium-mac/editing/selection/unrendered-003-expected.png:
+        * platform/chromium-mac/editing/selection/unrendered-004-expected.png:
+        * platform/chromium-mac/editing/selection/unrendered-005-expected.png:
+        * platform/chromium-mac/editing/selection/unrendered-space-expected.png:
+        * platform/chromium-mac/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png:
+        * platform/chromium-mac/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png:
+        * platform/chromium-mac/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png:
+        * platform/chromium-mac/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png:
+        * platform/chromium-mac/editing/selection/wrapped-line-caret-1-expected.png:
+        * platform/chromium-mac/editing/selection/wrapped-line-caret-2-expected.png:
+        * platform/chromium-mac/editing/spelling/grammar-markers-expected.png:
+        * platform/chromium-mac/editing/spelling/grammar-markers-hidpi-expected.png:
+        * platform/chromium-mac/editing/spelling/spelling-expected.png:
+        * platform/chromium-mac/editing/style/4916887-expected.png:
+        * platform/chromium-mac/editing/style/5017613-1-expected.png:
+        * platform/chromium-mac/editing/style/5017613-2-expected.png:
+        * platform/chromium-mac/editing/style/5046875-1-expected.png:
+        * platform/chromium-mac/editing/style/5046875-2-expected.png:
+        * platform/chromium-mac/editing/style/5065910-expected.png:
+        * platform/chromium-mac/editing/style/5084241-expected.png:
+        * platform/chromium-mac/editing/style/5228141-expected.png:
+        * platform/chromium-mac/editing/style/5279521-expected.png:
+        * platform/chromium-mac/editing/style/block-styles-007-expected.png:
+        * platform/chromium-mac/editing/style/highlight-expected.png:
+        * platform/chromium-mac/editing/style/smoosh-styles-001-expected.png:
+        * platform/chromium-mac/editing/style/smoosh-styles-003-expected.png:
+        * platform/chromium-mac/editing/style/style-3681552-fix-001-expected.png:
+        * platform/chromium-mac/editing/style/style-3681552-fix-002-expected.png:
+        * platform/chromium-mac/editing/style/style-3998892-fix-expected.png:
+        * platform/chromium-mac/editing/style/style-boundary-001-expected.png:
+        * platform/chromium-mac/editing/style/style-boundary-002-expected.png:
+        * platform/chromium-mac/editing/style/style-boundary-003-expected.png:
+        * platform/chromium-mac/editing/style/style-boundary-004-expected.png:
+        * platform/chromium-mac/editing/style/style-boundary-005-expected.png:
+        * platform/chromium-mac/editing/style/typing-style-001-expected.png:
+        * platform/chromium-mac/editing/style/typing-style-002-expected.png:
+        * platform/chromium-mac/editing/style/unbold-in-bold-expected.png:
+        * platform/chromium-mac/editing/undo/4063751-expected.png:
+        * platform/chromium-mac/editing/undo/5378473-expected.png:
+        * platform/chromium-mac/editing/undo/redo-typing-001-expected.png:
+        * platform/chromium-mac/editing/undo/undo-combined-delete-boundary-expected.png:
+        * platform/chromium-mac/editing/undo/undo-combined-delete-expected.png:
+        * platform/chromium-mac/editing/undo/undo-delete-boundary-expected.png:
+        * platform/chromium-mac/editing/undo/undo-delete-expected.png:
+        * platform/chromium-mac/editing/undo/undo-forward-delete-boundary-expected.png:
+        * platform/chromium-mac/editing/undo/undo-forward-delete-expected.png:
+        * platform/chromium-mac/editing/undo/undo-misspellings-expected.png:
+        * platform/chromium-mac/editing/undo/undo-typing-001-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/list-delete-001-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/list-delete-003-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/list-type-after-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/list-type-before-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/table-delete-001-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/table-delete-002-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/table-delete-003-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/table-type-after-expected.png:
+        * platform/chromium-mac/editing/unsupported-content/table-type-before-expected.png:
+        * platform/chromium-win/editing/deleting/delete-first-list-item-expected.png:
+        * platform/chromium-win/editing/deleting/delete-listitem-002-expected.png:
+        * platform/chromium-win/editing/deleting/list-item-1-expected.png:
+        * platform/chromium-win/editing/execCommand/4641880-1-expected.png:
+        * platform/chromium-win/editing/execCommand/4747450-expected.png:
+        * platform/chromium-win/editing/execCommand/4916402-expected.png:
+        * platform/chromium-win/editing/execCommand/5136770-expected.png:
+        * platform/chromium-win/editing/execCommand/5142012-2-expected.png:
+        * platform/chromium-win/editing/execCommand/5569741-expected.png:
+        * platform/chromium-win/editing/execCommand/create-list-with-hr-expected.png:
+        * platform/chromium-win/editing/execCommand/indent-list-item-expected.png:
+        * platform/chromium-win/editing/execCommand/remove-list-item-1-expected.png:
+        * platform/chromium-win/editing/inserting/4875189-1-expected.png:
+        * platform/chromium-win/editing/inserting/4959067-expected.png:
+        * platform/chromium-win/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png:
+        * platform/chromium-win/editing/pasteboard/innerText-inline-table-expected.png:
+        * platform/chromium-win/editing/pasteboard/input-field-1-expected.png:
+        * platform/chromium-win/editing/pasteboard/merge-start-list-expected.png:
+        * platform/chromium-win/editing/selection/4402375-expected.png:
+        * platform/chromium-win/editing/selection/4895428-2-expected.png:
+        * platform/chromium-win/editing/selection/drag-to-contenteditable-iframe-expected.png:
+        * platform/chromium-win/editing/selection/extend-by-word-002-expected.png:
+        * platform/chromium-win/editing/selection/extend-inside-transforms-backward-expected.png:
+        * platform/chromium-win/editing/selection/extend-inside-transforms-forward-expected.png:
+        * platform/chromium-win/editing/selection/image-before-linebreak-expected.png:
+        * platform/chromium-win/editing/selection/replaced-boundaries-1-expected.png:
+        * platform/chromium-win/editing/selection/replaced-boundaries-2-expected.png:
+        * platform/chromium-win/editing/selection/replaced-boundaries-3-expected.png:
+        * platform/chromium-win/editing/selection/select-all-iframe-expected.png:
+        * platform/chromium-win/editing/selection/selectNode-expected.png:
+        * platform/chromium-win/editing/selection/selectNodeContents-expected.png:
+        * platform/chromium-win/editing/selection/transformed-selection-rects-expected.png:
+        * platform/chromium-win/editing/spelling/grammar-markers-hidpi-expected.png:
+        * platform/chromium-win/editing/unsupported-content/list-delete-001-expected.png:
+        * platform/chromium-win/editing/unsupported-content/list-type-after-expected.png:
+        * platform/chromium-win/editing/unsupported-content/list-type-before-expected.png:
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Test expectations update after enabling Skia changes.
+
+        Unreviewed Chromium expectations update.
+
+        Partial update, covering all css tests. Many more to come.
+
+        * platform/chromium-mac-lion/css1/box_properties/border_left-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/border_right_inline-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/border_top-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/clear_float-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/float_elements_in_series-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/float_on_text_elements-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/margin_left-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/margin_right-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/padding_left-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/padding_right-expected.png:
+        * platform/chromium-mac-lion/css1/cascade/cascade_order-expected.png:
+        * platform/chromium-mac-lion/css1/classification/list_style_image-expected.png:
+        * platform/chromium-mac-lion/css1/classification/list_style_position-expected.png:
+        * platform/chromium-mac-lion/css1/classification/list_style_type-expected.png:
+        * platform/chromium-mac-lion/css1/pseudo/anchor-expected.png:
+        * platform/chromium-mac-lion/css1/text_properties/text_align-expected.png:
+        * platform/chromium-mac-lion/css2.1/20110323/margin-applies-to-010-expected.png:
+        * platform/chromium-mac-lion/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0402-c71-fwd-parsing-02-f-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0505-c16-descendant-01-e-expected.png:
+        * platform/chromium-mac-lion/css2.1/t050803-c14-classes-00-e-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0509-c15-ids-01-e-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0805-c5517-brdr-s-00-c-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0805-c5519-brdr-r-02-e-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0805-c5521-brdr-l-02-e-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
+        * platform/chromium-mac-lion/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
+        * platform/chromium-mac-lion/css2.1/t1202-counter-04-b-expected.png:
+        * platform/chromium-mac-lion/css2.1/t1202-counters-04-b-expected.png:
+        * platform/chromium-mac-lion/css2.1/t1205-c563-list-type-00-b-expected.png:
+        * platform/chromium-mac-lion/css2.1/t1205-c564-list-img-00-b-g-expected.png:
+        * platform/chromium-mac-lion/css2.1/t1602-c546-txt-align-00-b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-1-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-13-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-15-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-161-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-19b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-22-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-23-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-24-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-28-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-28b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-29-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-29b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-3a-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-64-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-68-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-69-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-73-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-73b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-74-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/html/css3-modsel-74b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-1-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-13-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-15-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-161-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-19b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-22-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-23-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-24-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-28-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-28b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-29-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-29b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-3-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-3a-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-64-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-68-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-69-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-73-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-73b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-74-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xhtml/css3-modsel-74b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-1-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-13-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-15-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-161-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-19b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-22-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-23-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-24-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-28-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-28b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-29-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-29b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-3-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-3a-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-64-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-68-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-69-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-73-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-73b-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-74-expected.png:
+        * platform/chromium-mac-lion/css3/selectors3/xml/css3-modsel-74b-expected.png:
+        * platform/chromium-mac-lion/css3/unicode-bidi-isolate-basic-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/border_left-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/border_right_inline-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/border_top-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/margin_left-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/margin_right-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/padding_left-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/padding_right-expected.png:
+        * platform/chromium-mac-snowleopard/css1/cascade/cascade_order-expected.png:
+        * platform/chromium-mac-snowleopard/css1/classification/list_style_image-expected.png:
+        * platform/chromium-mac-snowleopard/css1/classification/list_style_position-expected.png:
+        * platform/chromium-mac-snowleopard/css1/classification/list_style_type-expected.png:
+        * platform/chromium-mac-snowleopard/css1/pseudo/anchor-expected.png:
+        * platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-010-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0402-c71-fwd-parsing-02-f-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0505-c16-descendant-01-e-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t050803-c14-classes-00-e-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0509-c15-ids-01-e-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0805-c5517-brdr-s-00-c-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0805-c5519-brdr-r-02-e-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0805-c5521-brdr-l-02-e-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t1205-c563-list-type-00-b-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t1205-c564-list-img-00-b-g-expected.png:
+        * platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-1-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-13-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-15-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-161-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-19b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-22-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-28-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-28b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-29-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-29b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-3a-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-64-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-73-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-73b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-74-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/html/css3-modsel-74b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-1-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-13-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-15-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-161-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-19b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-22-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-28-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-28b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-29-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-29b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-3-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-3a-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-64-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-73-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-73b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-74-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xhtml/css3-modsel-74b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-1-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-13-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-15-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-161-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-19b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-22-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-28-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-28b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-29-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-29b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-3-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-3a-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-64-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-73-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-73b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-74-expected.png:
+        * platform/chromium-mac-snowleopard/css3/selectors3/xml/css3-modsel-74b-expected.png:
+        * platform/chromium-mac-snowleopard/css3/unicode-bidi-isolate-basic-expected.png:
+        * platform/chromium-mac/css1/box_properties/border_left-expected.png:
+        * platform/chromium-mac/css1/box_properties/border_right_inline-expected.png:
+        * platform/chromium-mac/css1/box_properties/border_top-expected.png:
+        * platform/chromium-mac/css1/box_properties/clear_float-expected.png:
+        * platform/chromium-mac/css1/box_properties/float_elements_in_series-expected.png:
+        * platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.png:
+        * platform/chromium-mac/css1/box_properties/margin_left-expected.png:
+        * platform/chromium-mac/css1/box_properties/margin_right-expected.png:
+        * platform/chromium-mac/css1/box_properties/padding_left-expected.png:
+        * platform/chromium-mac/css1/box_properties/padding_right-expected.png:
+        * platform/chromium-mac/css1/cascade/cascade_order-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/pseudo/anchor-expected.png:
+        * platform/chromium-mac/css1/text_properties/text_align-expected.png:
+        * platform/chromium-mac/css2.1/20110323/margin-applies-to-010-expected.png:
+        * platform/chromium-mac/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png:
+        * platform/chromium-mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.png:
+        * platform/chromium-mac/css2.1/t0505-c16-descendant-01-e-expected.png:
+        * platform/chromium-mac/css2.1/t050803-c14-classes-00-e-expected.png:
+        * platform/chromium-mac/css2.1/t0509-c15-ids-01-e-expected.png:
+        * platform/chromium-mac/css2.1/t0805-c5517-brdr-s-00-c-expected.png:
+        * platform/chromium-mac/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
+        * platform/chromium-mac/css2.1/t0805-c5519-brdr-r-02-e-expected.png:
+        * platform/chromium-mac/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
+        * platform/chromium-mac/css2.1/t0805-c5521-brdr-l-02-e-expected.png:
+        * platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
+        * platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
+        * platform/chromium-mac/css2.1/t1202-counter-04-b-expected.png:
+        * platform/chromium-mac/css2.1/t1202-counters-04-b-expected.png:
+        * platform/chromium-mac/css2.1/t1205-c563-list-type-00-b-expected.png:
+        * platform/chromium-mac/css2.1/t1205-c564-list-img-00-b-g-expected.png:
+        * platform/chromium-mac/css2.1/t1602-c546-txt-align-00-b-expected.png:
+        * platform/chromium-mac/css3/filters/filter-repaint-child-layers-expected.png:
+        * platform/chromium-mac/css3/filters/filter-repaint-composited-fallback-crash-expected.png:
+        * platform/chromium-mac/css3/filters/filter-repaint-composited-fallback-expected.png:
+        * platform/chromium-mac/css3/filters/filter-with-transform-expected.png:
+        * platform/chromium-mac/css3/filters/nested-filter-expected.png:
+        * platform/chromium-mac/css3/images/cross-fade-overflow-position-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-circle-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-circle-filter-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-circle-overflow-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-circle-overflow-hidden-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-ellipse-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-polygon-evenodd-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-polygon-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-polygon-nonzero-expected.png:
+        * platform/chromium-mac/css3/masking/clip-path-rectangle-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-1-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-13-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-15-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-161-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-19b-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-22-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-23-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-24-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-28-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-28b-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-29-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-29b-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-3a-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-64-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-68-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-69-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-73-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-73b-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-74-expected.png:
+        * platform/chromium-mac/css3/selectors3/html/css3-modsel-74b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-1-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-13-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-15-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-161-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-19b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-22-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-23-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-24-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-28-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-28b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-29-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-29b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-3-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-3a-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-64-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-68-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-69-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-73-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-73b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-74-expected.png:
+        * platform/chromium-mac/css3/selectors3/xhtml/css3-modsel-74b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-1-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-13-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-15-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-161-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-19b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-22-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-23-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-24-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-28-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-28b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-29-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-29b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-3-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-3a-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-64-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-68-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-69-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-73-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-73b-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-74-expected.png:
+        * platform/chromium-mac/css3/selectors3/xml/css3-modsel-74b-expected.png:
+        * platform/chromium-mac/css3/unicode-bidi-isolate-basic-expected.png:
+        * platform/chromium-win-xp/css1/cascade: Removed.
+        * platform/chromium-win-xp/css1/classification: Removed.
+        * platform/chromium-win-xp/css1/pseudo: Removed.
+        * platform/chromium-win-xp/css3/selectors3/html: Removed.
+        * platform/chromium-win-xp/css3/selectors3/html/css3-modsel-161-expected.png: Removed.
+        * platform/chromium-win-xp/css3/selectors3/xhtml: Removed.
+        * platform/chromium-win-xp/css3/selectors3/xhtml/css3-modsel-161-expected.png: Removed.
+        * platform/chromium-win-xp/css3/selectors3/xml: Removed.
+        * platform/chromium-win-xp/css3/selectors3/xml/css3-modsel-161-expected.png: Removed.
+        * platform/chromium-win/css1/box_properties/border_left-expected.png:
+        * platform/chromium-win/css1/box_properties/border_right_inline-expected.png:
+        * platform/chromium-win/css1/box_properties/border_top-expected.png:
+        * platform/chromium-win/css1/box_properties/clear_float-expected.png:
+        * platform/chromium-win/css1/box_properties/margin_left-expected.png:
+        * platform/chromium-win/css1/box_properties/margin_right-expected.png:
+        * platform/chromium-win/css1/box_properties/padding_left-expected.png:
+        * platform/chromium-win/css1/box_properties/padding_right-expected.png:
+        * platform/chromium-win/css1/cascade/cascade_order-expected.png:
+        * platform/chromium-win/css1/classification/list_style_image-expected.png:
+        * platform/chromium-win/css1/classification/list_style_position-expected.png:
+        * platform/chromium-win/css1/classification/list_style_type-expected.png:
+        * platform/chromium-win/css1/pseudo/anchor-expected.png:
+        * platform/chromium-win/css2.1/20110323/margin-applies-to-010-expected.png:
+        * platform/chromium-win/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png:
+        * platform/chromium-win/css2.1/t0402-c71-fwd-parsing-02-f-expected.png:
+        * platform/chromium-win/css2.1/t0505-c16-descendant-01-e-expected.png:
+        * platform/chromium-win/css2.1/t050803-c14-classes-00-e-expected.png:
+        * platform/chromium-win/css2.1/t0509-c15-ids-01-e-expected.png:
+        * platform/chromium-win/css2.1/t0805-c5517-brdr-s-00-c-expected.png:
+        * platform/chromium-win/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
+        * platform/chromium-win/css2.1/t0805-c5519-brdr-r-02-e-expected.png:
+        * platform/chromium-win/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
+        * platform/chromium-win/css2.1/t0805-c5521-brdr-l-02-e-expected.png:
+        * platform/chromium-win/css2.1/t1205-c563-list-type-00-b-expected.png:
+        * platform/chromium-win/css2.1/t1205-c564-list-img-00-b-g-expected.png:
+        * platform/chromium-win/css3/filters/filter-repaint-child-layers-expected.png:
+        * platform/chromium-win/css3/filters/filter-repaint-composited-fallback-crash-expected.png:
+        * platform/chromium-win/css3/filters/filter-repaint-composited-fallback-expected.png:
+        * platform/chromium-win/css3/filters/filter-with-transform-expected.png:
+        * platform/chromium-win/css3/filters/nested-filter-expected.png:
+        * platform/chromium-win/css3/images/cross-fade-overflow-position-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-circle-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-circle-filter-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-circle-overflow-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-circle-overflow-hidden-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-ellipse-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-polygon-evenodd-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-polygon-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-polygon-nonzero-expected.png:
+        * platform/chromium-win/css3/masking/clip-path-rectangle-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-1-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-13-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-15-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-22-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-28-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-28b-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-29-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-29b-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-3a-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-73-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-73b-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-74-expected.png:
+        * platform/chromium-win/css3/selectors3/html/css3-modsel-74b-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-1-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-13-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-15-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-22-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-28-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-28b-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-29-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-29b-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-3-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-3a-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-73-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-73b-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-74-expected.png:
+        * platform/chromium-win/css3/selectors3/xhtml/css3-modsel-74b-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-1-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-13-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-15-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-22-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-28-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-28b-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-29-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-29b-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-3-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-3a-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-73-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-73b-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-74-expected.png:
+        * platform/chromium-win/css3/selectors3/xml/css3-modsel-74b-expected.png:
+
+2012-11-22  Csaba Osztrogonác  <ossy@webkit.org>
+
+        [Qt] Unreviewed gardening, skip failing tests to paint the bots green.
+
+        * platform/qt-5.0-wk2/TestExpectations:
+        * platform/qt/TestExpectations:
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Test expectations update after enabling Skia changes.
+
+        Unreviewed Chromium expectations update.
+
+        Partial update, many more to come.
+
+        * platform/chromium-linux/compositing/culling/filter-occlusion-blur-expected.png:
+        * platform/chromium-linux/compositing/culling/filter-occlusion-blur-large-expected.png:
+        * platform/chromium-mac-lion/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:
+        * platform/chromium-mac-lion/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png:
+        * platform/chromium-mac-lion/compositing/reflections/nested-reflection-transformed-expected.png:
+        * platform/chromium-mac-lion/compositing/reflections/nested-reflection-transformed2-expected.png:
+        * platform/chromium-mac-lion/compositing/reflections/reflection-in-composited-expected.png:
+        * platform/chromium-mac-lion/compositing/video/video-controls-layer-creation-expected.png:
+        * platform/chromium-mac-lion/css1/basic/class_as_selector-expected.png:
+        * platform/chromium-mac-lion/css1/basic/containment-expected.png:
+        * platform/chromium-mac-lion/css1/basic/contextual_selectors-expected.png:
+        * platform/chromium-mac-lion/css1/basic/id_as_selector-expected.png:
+        * platform/chromium-mac-lion/css1/box_properties/border_bottom-expected.png:
+        * platform/chromium-mac-snowleopard/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png:
+        * platform/chromium-mac-snowleopard/compositing/plugins/composited-plugin-expected.png:
+        * platform/chromium-mac-snowleopard/compositing/reflections/nested-reflection-transformed-expected.png:
+        * platform/chromium-mac-snowleopard/compositing/reflections/nested-reflection-transformed2-expected.png:
+        * platform/chromium-mac-snowleopard/compositing/reflections/reflection-in-composited-expected.png:
+        * platform/chromium-mac-snowleopard/compositing/video/video-controls-layer-creation-expected.png:
+        * platform/chromium-mac-snowleopard/css1/basic/class_as_selector-expected.png:
+        * platform/chromium-mac-snowleopard/css1/basic/containment-expected.png:
+        * platform/chromium-mac-snowleopard/css1/basic/contextual_selectors-expected.png:
+        * platform/chromium-mac-snowleopard/css1/basic/id_as_selector-expected.png:
+        * platform/chromium-mac-snowleopard/css1/box_properties/border_bottom-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/reflections/nested-reflection-transformed-expected.png:
+        * platform/chromium-mac/compositing/reflections/nested-reflection-transformed2-expected.png:
+        * platform/chromium-mac/compositing/reflections/reflection-in-composited-expected.png:
+        * platform/chromium-mac/compositing/video/video-controls-layer-creation-expected.png:
+        * platform/chromium-mac/css1/basic/class_as_selector-expected.png:
+        * platform/chromium-mac/css1/basic/containment-expected.png:
+        * platform/chromium-mac/css1/basic/contextual_selectors-expected.png:
+        * platform/chromium-mac/css1/basic/id_as_selector-expected.png:
+        * platform/chromium-mac/css1/box_properties/border_bottom-expected.png:
+        * platform/chromium-win-xp/compositing/reflections: Removed.
+        * platform/chromium-win-xp/css1/basic: Removed.
+        * platform/chromium-win/compositing/culling/filter-occlusion-alpha-large-expected.png:
+        * platform/chromium-win/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png:
+        * platform/chromium-win/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png:
+        * platform/chromium-win/compositing/reflections/nested-reflection-transformed-expected.png:
+        * platform/chromium-win/compositing/reflections/nested-reflection-transformed2-expected.png:
+        * platform/chromium-win/compositing/reflections/reflection-in-composited-expected.png:
+        * platform/chromium-win/compositing/video/video-controls-layer-creation-expected.png:
+        * platform/chromium-win/css1/basic/class_as_selector-expected.png:
+        * platform/chromium-win/css1/basic/containment-expected.png:
+        * platform/chromium-win/css1/basic/contextual_selectors-expected.png:
+        * platform/chromium-win/css1/basic/id_as_selector-expected.png:
+        * platform/chromium-win/css1/box_properties/border_bottom-expected.png:
+
+2012-11-22  Daniel Bates  <dbates@webkit.org>
+
+        JavaScript fails to concatenate large strings
+        <https://bugs.webkit.org/show_bug.cgi?id=102963>
+
+        Remove Qt-specific results for test concat-large-strings-crash.html
+        since they are identical to the platform-independent expected results
+        as of changeset 135523, <http://trac.webkit.org/changeset/135523>.
+
+        * platform/qt/fast/js/concat-large-strings-crash-expected.txt: Removed.
+
+2012-11-22  Daniel Bates  <dbates@webkit.org>
+
+        JavaScript fails to concatenate large strings
+        <https://bugs.webkit.org/show_bug.cgi?id=102963>
+
+        Update test result.
+
+        * fast/js/concat-large-strings-crash-expected.txt:
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        Chromium expectations fix.
+
+        Unreviewed removal of bad expectations.
+
+        * platform/chromium/svg/animations/animate-text-nested-transforms-expected.txt: Removed.
+        * platform/chromium/svg/custom/getscreenctm-in-mixed-content2-expected.txt: Removed.
+        * platform/chromium/svg/custom/svg-fonts-in-text-controls-expected.txt: Removed.
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Test expectations update after enabling Skia changes.
+
+        Unreviewed Chromium expectations update.
+
+        Update of remaining platform-specific expectations for linux. Other platforms to come.
+
+        Too many files to list.
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Test expectations update after enabling Skia changes.
+
+        Unreviewed Chromium expectations update.
+
+        Update of svg results.
+
+        Too many files to list. All Chromium platform results for svg tests.
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Test expectations update.
+
+        Unreviewed changes due to Skia changes.
+
+        Too many files to list (over 1000). All Chromium platform expectations.
+
+2012-11-22  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Mark LayoutTests/fast/canvas/canvas-stroke*-gradient-shadow.html as crashing after latest Skia roll.
+        https://bugs.webkit.org/show_bug.cgi?id=103062 
+
+        * platform/chromium/TestExpectations:
+
+2012-11-22  Kent Tamura  <tkent@chromium.org>
+
+        INPUT_MULTIPLE_FIELDS_UI: Refactoring: Do not call updateInnerTextValue if only read-only sub-fields have values
+        https://bugs.webkit.org/show_bug.cgi?id=103033
+
+        Reviewed by Kentaro Hara.
+
+        * fast/forms/time-multiple-fields/time-multiple-fields-value-set-empty-expected.txt:
+        * fast/forms/time-multiple-fields/time-multiple-fields-value-set-empty.html:
+
+2012-11-22  Keishi Hattori  <keishi@webkit.org>
+
+        Add week-multiple-fields tests
+        https://bugs.webkit.org/show_bug.cgi?id=102045
+
+        Reviewed by Kent Tamura.
+
+        Adding test cases for multiple field week input.
+
+        * fast/forms/resources/multiple-fields-blur-and-focus-events.js:
+        (startTestFor.beginTestCase):
+        (startTestFor):
+        * fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-ax-value-changed-notification-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-ax-value-changed-notification.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-blur-and-focus-events-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-blur-and-focus-events.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-change-layout-by-value-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-change-layout-by-value.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-keyboard-events-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-keyboard-events.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-mouse-events-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-mouse-events.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-preserve-value-after-history-back-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-preserve-value-after-history-back.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-reset-value-after-reloads-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-reset-value-after-reloads.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-spinbutton-change-and-input-events-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-spinbutton-change-and-input-events.html: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-wheel-event-expected.txt: Added.
+        * fast/forms/week-multiple-fields/week-multiple-fields-wheel-event.html: Added.
+
+2012-11-22  Christophe Dumez  <christophe.dumez@intel.com>
+
+        WebKitTestRunner needs layoutTestController.setCacheModel
+        https://bugs.webkit.org/show_bug.cgi?id=42684
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Unskip fast/dom/HTMLScriptElement/nested-execution.html for
+        WK2 now that WebKitTestRunner implements
+        testRunner.setCacheModel.
+
+        * platform/wk2/TestExpectations:
+
+2012-11-22  Stephen Chenney  <schenney@chromium.org>
+
+        Fixing some Chromium test expectations.
+
+        Unreviewed expectations update
+
+        * platform/chromium-mac/fast/css/font-smoothing-expected.png:
+        * platform/chromium-mac/fast/css/text-rendering-expected.png:
+        * platform/chromium-mac/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png:
+        * platform/chromium-mac/svg/text/scaling-font-with-geometric-precision-expected.png:
+        * platform/chromium-win/fast/css/font-smoothing-expected.png: Added.
+        * platform/chromium/fast/css/font-smoothing-expected.png: Removed.
+        * platform/chromium/fast/css/text-rendering-expected.png: Removed.
+
+2012-11-22  Yury Semikhatsky  <yurys@chromium.org>
+
+        Chromium gardening. Rebaseline compositing tests
+        https://bugs.webkit.org/show_bug.cgi?id=103039
+
+        Reviewed by Pavel Feldman.
+
+        * platform/chromium-linux/platform/chromium/virtual/softwarecompositing/reflections/nested-reflection-anchor-point-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/virtual/softwarecompositing/reflections/nested-reflection-anchor-point-expected.png:
+        * platform/chromium-mac-snowleopard/platform/chromium/virtual/softwarecompositing/reflections/nested-reflection-anchor-point-expected.png:
+        * platform/chromium-mac/platform/chromium/virtual/softwarecompositing/reflections/nested-reflection-anchor-point-expected.png:
+
+2012-11-22  Harald Alvestrand  <hta@google.com>
+
+        Name enumerator function for GetStats RTCStatsElement
+        https://bugs.webkit.org/show_bug.cgi?id=102933
+
+        Reviewed by Adam Barth.
+
+        * fast/mediastream/RTCPeerConnection-stats-expected.txt:
+        * fast/mediastream/RTCPeerConnection-stats.html:
+
+2012-11-22  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
+
+        [Qt] Unreviewed gardening
+
+        Add platform specific exception.
+
+        * platform/qt/fast/js/concat-large-strings-crash-expected.txt: Added.
+
+2012-11-22  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Rebaselined new tests added in r135454.
+
+        * platform/chromium/fast/js/concat-large-strings-crash-expected.txt: Added.
+        * platform/chromium/fast/js/concat-large-strings-crash2-expected.txt: Added.
+
+2012-11-21  Sheriff Bot  <webkit.review.bot@gmail.com>
+
+        Unreviewed, rolling out r135464.
+        http://trac.webkit.org/changeset/135464
+        https://bugs.webkit.org/show_bug.cgi?id=103026
+
+        breaks gtk bot (Requested by morrita on #webkit).
+
+        * fast/dom/shadow/shadow-aware-create-shadow-root-expected.txt: Removed.
+        * fast/dom/shadow/shadow-aware-create-shadow-root.html: Removed.
+
+2012-11-21  Cosmin Truta  <ctruta@rim.com>
+
+        Numeric identifiers of events should not be globally sequential
+        https://bugs.webkit.org/show_bug.cgi?id=102244
+
+        Reviewed by Alexey Proskuryakov.
+
+        Ensured that the results of setTimeout(), setInterval() and
+        navigator.geolocation.watchPosition() are strictly positive
+        and unique within their script execution context.
+
+        * fast/dom/Geolocation/watchPosition-unique-expected.txt: Added.
+        * fast/dom/Geolocation/watchPosition-unique.html: Added.
+        * fast/dom/Window/setTimeout-setInterval-unique-expected.txt: Added.
+        * fast/dom/Window/setTimeout-setInterval-unique.html: Added.
+
+2012-11-21  Kent Tamura  <tkent@chromium.org>
+
+        [Chromium] Correct svn:mime-type for platform/chromium*/**/*.png
+
+        * <Omit the file list>
+
+2012-11-21  Kent Tamura  <tkent@chromium.org>
+
+        [Chromium] Correct svn:mime-type for platform/chromium-linux/**/*.png
+
+        * <Omit the file list>
+
+2012-11-21  Kent Tamura  <tkent@chromium.org>
+
+        [Chromium] Correct svn:mime-type for platform/chromium-win/**/*.png
+
+        * <Omit the file list>
+
+2012-11-21  Kent Tamura  <tkent@chromium.org>
+
+        [Chromium] Correct svn:mime-type for platform/chromium-mac/**/*.png
+
+        * <Omit the file list>
+
+2012-11-21  Kent Tamura  <tkent@chromium.org>
+
+        [Chromium] Rebaselin for recent forms changes.
+
+        * platform/chromium-linux-x86/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl-expected.png: Added.
+        * platform/chromium-linux/fast/forms/datetime/datetime-appearance-l10n-expected.png: Added.
+        * 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-ru-expected.png:
+        * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png:
+        * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-expected.png:
+        * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-step-expected.png:
+        * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-expected.png:
+        * platform/chromium-linux/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-step-expected.png:
+        * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl-expected.png: Added.
+        * platform/chromium-linux/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-with-scroll-bar-expected.png: Added.
+        * platform/chromium-mac-lion/fast/forms/datetime/datetime-appearance-l10n-expected.png: Added.
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-ru-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-step-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-step-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-expected.png: Added.
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl-expected.png: Added.
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-with-scroll-bar-expected.png: Added.
+        * platform/chromium-mac-snowleopard/fast/forms/datetime/datetime-appearance-l10n-expected.png: Added.
+        * 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-ru-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/calendar-picker/month-picker-appearance-expected.png:
+        * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-step-expected.png:
+        * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-expected.png:
+        * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-step-expected.png:
+        * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-expected.png: Added.
+        * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl-expected.png: Added.
+        * platform/chromium-mac-snowleopard/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-with-scroll-bar-expected.png: Added.
+        * 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-ru-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-step-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-step-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-with-scroll-bar-expected.png:
+        * platform/chromium-win-xp/fast/forms/datetime/datetime-appearance-l10n-expected.png: Added.
+        * platform/chromium-win-xp/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-ru-expected.png:
+        * platform/chromium-win-xp/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl-expected.png: Added.
+        * platform/chromium-win/fast/forms/datetime/datetime-appearance-l10n-expected.png: Added.
+        * 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-ru-expected.png:
+        * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png:
+        * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-expected.png:
+        * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-step-expected.png:
+        * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-expected.png:
+        * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-step-expected.png:
+        * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-expected.png: Added.
+        * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-rtl-expected.png: Added.
+        * platform/chromium-win/platform/chromium/fast/forms/suggestion-picker/week-suggestion-picker-appearance-with-scroll-bar-expected.png: Added.
+        * platform/chromium/TestExpectations:
+
+2012-11-21  Hajime Morrita  <morrita@google.com>
+
+        [Shadow DOM] Implement Element::createShadowRoot()
+        https://bugs.webkit.org/show_bug.cgi?id=102911
+
+        Reviewed by Kentaro Hara.
+
+        The coverage might not seem comprehensive at a glance. However,
+        this is just an alias of ShadowRoot constructor and there are
+        bunch of test cases which cover it.
+
+        As bug 102913 will convert such callsites to use createShadowRoot(),
+        the API will get be covered well then.
+
+        * fast/dom/shadow/shadow-aware-create-shdow-root-expected.txt: Added.
+        * fast/dom/shadow/shadow-aware-create-shdow-root.html: Added.
+          Further ShadowAware API will come here.
+
+2012-11-21  Dana Jansens  <danakj@chromium.org>
+
+        Remove crashing expectation for css3/filters/effect-reference-ordering-hw.html
+        https://bugs.webkit.org/show_bug.cgi?id=102898
+
+        Unreviewed test expectations.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-21  Hajime Morrita  <morrita@google.com>
+
+        [Shadow DOM][V8] Assertion failure when shadow host is reclaimed before ShadowRoot
+        https://bugs.webkit.org/show_bug.cgi?id=102893
+
+        Reviewed by Kentaro Hara.
+
+        * fast/dom/shadow/host-wrapper-reclaimed-expected.txt: Added.
+        * fast/dom/shadow/host-wrapper-reclaimed.html: Added.
+
+2012-11-21  Daniel Bates  <dbates@webkit.org>
+
+        JavaScript fails to concatenate large strings
+        <https://bugs.webkit.org/show_bug.cgi?id=102963>
+
+        Reviewed by Michael Saboff.
+
+        Add tests to ensure that we handle concatenating large strings.
+
+        * fast/js/concat-large-strings-crash-expected.txt: Added.
+        * fast/js/concat-large-strings-crash.html: Added.
+        * fast/js/concat-large-strings-crash2-expected.txt: Added.
+        * fast/js/concat-large-strings-crash2.html: Added.
+
+2012-11-21  Fady Samuel  <fsamuel@chromium.org>
+
+        Add fast/events/context-nodrag.html to Chromium Mac TestExpectations
+
+        No review.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-21  James Simonsen  <simonjam@chromium.org>
+
+        [Resource Timing] Create W3C-style test suite
+        https://bugs.webkit.org/show_bug.cgi?id=84883
+
+        Reviewed by Tony Gentilcore.
+
+        The tests are designed to be upstreamed. Eventually, the local ones will be replaced by the official upstream versions.
+
+        * http/tests/w3c/webperf/resources/Ahem.ttf: Added.
+        * http/tests/w3c/webperf/resources/all_resource_types.htm: Added.
+        * http/tests/w3c/webperf/resources/blank_image.png: Added.
+        * http/tests/w3c/webperf/resources/empty_script.js: Added.
+        * http/tests/w3c/webperf/resources/generate_resource.php: Added.
+        * http/tests/w3c/webperf/resources/gray_bg.css: Added.
+        (body):
+        * http/tests/w3c/webperf/resources/green_frame.htm: Added.
+        * http/tests/w3c/webperf/resources/inject_resource_test.html: Added.
+        * http/tests/w3c/webperf/resources/nested.css: Added.
+        (@font-face):
+        (ol):
+        * http/tests/w3c/webperf/resources/webperftestharness.js:
+        (test_greater_or_equals):
+        (test_fail):
+        (test_resource_entries):
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_attribute_order-expected.txt: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_attribute_order.html: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_dynamic_insertion-expected.txt: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_dynamic_insertion.html: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_frame_initiator_type-expected.txt: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_frame_initiator_type.html: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_initiator_types-expected.txt: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_initiator_types.html: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_redirects-expected.txt: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_redirects.html: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_reparenting-expected.txt: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_reparenting.html: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_script_types-expected.txt: Added.
+        * http/tests/w3c/webperf/submission/resource-timing/html/test_resource_script_types.html: Added.
+        * platform/chromium/TestExpectations: Skip these new tests until the flag is flipped.
+
+2012-11-21  Fady Samuel  <fsamuel@chromium.org>
+
+        Add fast/events/context-nodrag.html to Mac TestExpectations
+
+        No review.
+
+        * platform/mac/TestExpectations:
+
+2012-11-21  Rick Byers  <rbyers@chromium.org>
+
+        Multi-frame CUR file test hangs on mac port 
+        https://bugs.webkit.org/show_bug.cgi?id=101811
+
+        Reviewed by Alexey Proskuryakov.
+
+        Fix tests to not hang on unexpected image load failure.
+        Expect multi-frame CUR files to fail to load on Mac.
+
+        * fast/events/mouse-cursor.html:
+        * fast/events/mouse-cursor-multiframecur.html:
+        * platform/mac/TestExpectations:
+        * platform/mac/fast/events/mouse-cursor-multiframecur-expected.txt: Added.
+
+2012-11-21  Tien-Ren Chen  <trchen@chromium.org>
+
+        Invalidate non-composited content host when page scale factor changes
+        https://bugs.webkit.org/show_bug.cgi?id=100718
+
+        Reviewed by Adam Barth.
+
+        During a scale change, non-composited content layer doesn't get invalidated
+        automatically by the transformation change on RenderView. Need to force
+        update non-composited contents ourself.
+
+        * compositing/repaint/page-scale-repaint-expected.png: Added.
+        * compositing/repaint/page-scale-repaint-expected.txt: Added.
+        * compositing/repaint/page-scale-repaint.html: Added.
+        * compositing/repaint/resources/grid.png: Added.
+
+2012-11-21  Fady Samuel  <fsamuel@chromium.org>
+
+        Clear MousePressed state on context menu to avoid initiating a drag
+        https://bugs.webkit.org/show_bug.cgi?id=101786
+
+        Reviewed by Ojan Vafai.
+
+        If a user initiates a drag via left mouse down, brings up the context menu,
+        and then cancels the context menu while keeping the left mouse button down,
+        then the drag operation will continue. This does not match the platform
+        conventions on Windows, Linux or Mac .
+
+        This change cancels the drag if the context menu is about to be displayed.
+
+        * fast/events/context-nodrag.html: Added.
+        * fast/events/context-nodrag-expected.txt: Added.
+
+2012-11-21  Huang Dongsung  <luxtella@company100.net>
+
+        REGRESSION(r135212): Fix crash due to an infinite rect.
+        https://bugs.webkit.org/show_bug.cgi?id=102891
+
+        Reviewed by Noam Rosenthal.
+
+        fast/multicol/span/positioned-child-not-removed-crash.html now passes on
+        EFL.
+
+        * platform/efl-wk2/TestExpectations:
+
+2012-11-21  Jian Li  <jianli@chromium.org>
+
+        Unreviewed. Updated chromium test expectations to resolve lint failures.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-21  Joshua Bell  <jsbell@chromium.org>
+
+        Remove IDBDatabaseException
+        https://bugs.webkit.org/show_bug.cgi?id=102514
+
+        Reviewed by Adam Barth.
+
+        Remove references to IDBDatabaseException - DOMExceptions should be thrown with code 0 and
+        a name. Remove references to IDBRequest.errorCode - IDBRequest.error is the new hawtness,
+        and already tested for. Ensure those objects/properties are gone in removed.html
+
+        * storage/indexeddb/basics-expected.txt:
+        * storage/indexeddb/basics-workers-expected.txt:
+        * storage/indexeddb/constants.html: Removed.
+        * storage/indexeddb/constants-expected.txt: Removed.
+        * storage/indexeddb/create-and-remove-object-store-expected.txt:
+        * storage/indexeddb/cursor-continue-dir-expected.txt:
+        * storage/indexeddb/cursor-continue-expected.txt:
+        * storage/indexeddb/cursor-update-expected.txt:
+        * storage/indexeddb/deleteIndex-expected.txt:
+        * storage/indexeddb/exceptions-expected.txt:
+        * storage/indexeddb/factory-cmp-expected.txt:
+        * storage/indexeddb/get-keyrange-expected.txt:
+        * storage/indexeddb/index-basics-expected.txt:
+        * storage/indexeddb/index-basics-workers-expected.txt:
+        * storage/indexeddb/index-count-expected.txt:
+        * storage/indexeddb/index-unique-expected.txt:
+        * storage/indexeddb/intversion-close-in-upgradeneeded-expected.txt:
+        * storage/indexeddb/invalid-keys-expected.txt:
+        * storage/indexeddb/key-generator-expected.txt:
+        * storage/indexeddb/key-type-array-expected.txt:
+        * storage/indexeddb/keypath-edges-expected.txt:
+        * storage/indexeddb/keyrange-expected.txt:
+        * storage/indexeddb/mozilla/add-twice-failure-expected.txt:
+        * storage/indexeddb/mozilla/bad-keypath-expected.txt:
+        * storage/indexeddb/mozilla/clear-expected.txt:
+        * storage/indexeddb/mozilla/key-requirements-delete-null-key-expected.txt:
+        * storage/indexeddb/mozilla/key-requirements-inline-and-passed-expected.txt:
+        * storage/indexeddb/mozilla/key-requirements-put-no-key-expected.txt:
+        * storage/indexeddb/mozilla/key-requirements-put-null-key-expected.txt:
+        * storage/indexeddb/mozilla/readonly-transactions-expected.txt:
+        * storage/indexeddb/mozilla/resources/add-twice-failure.js:
+        * storage/indexeddb/mozilla/resources/bad-keypath.js:
+        * storage/indexeddb/mozilla/resources/clear.js:
+        * storage/indexeddb/mozilla/resources/indexes.js: Elide obsolete comment.
+        * storage/indexeddb/mozilla/resources/key-requirements-delete-null-key.js:
+        * storage/indexeddb/mozilla/resources/key-requirements-inline-and-passed.js:
+        * storage/indexeddb/mozilla/resources/key-requirements-put-no-key.js:
+        * storage/indexeddb/mozilla/resources/key-requirements-put-null-key.js:
+        * storage/indexeddb/mozilla/resources/readonly-transactions.js:
+        * storage/indexeddb/objectstore-autoincrement-expected.txt:
+        * storage/indexeddb/objectstore-basics-expected.txt:
+        * storage/indexeddb/objectstore-basics-workers-expected.txt:
+        * storage/indexeddb/objectstore-count-expected.txt:
+        * storage/indexeddb/open-cursor-expected.txt:
+        * storage/indexeddb/readonly-expected.txt:
+        * storage/indexeddb/removed-expected.txt:
+        * storage/indexeddb/resources/basics.js:
+        * storage/indexeddb/resources/constants.js: Removed.
+        * storage/indexeddb/resources/create-and-remove-object-store.js:
+        * storage/indexeddb/resources/cursor-continue-dir.js:
+        * storage/indexeddb/resources/cursor-continue.js:
+        * storage/indexeddb/resources/cursor-update.js:
+        * storage/indexeddb/resources/deleteIndex.js:
+        * storage/indexeddb/resources/exceptions.js:
+        * storage/indexeddb/resources/factory-cmp.js:
+        * storage/indexeddb/resources/get-keyrange.js:
+        * storage/indexeddb/resources/index-basics.js:
+        * storage/indexeddb/resources/index-count.js:
+        * storage/indexeddb/resources/index-unique.js:
+        * storage/indexeddb/resources/intversion-close-in-upgradeneeded.js:
+        * storage/indexeddb/resources/invalid-keys.js:
+        * storage/indexeddb/resources/key-generator.js:
+        * storage/indexeddb/resources/key-type-array.js:
+        * storage/indexeddb/resources/keypath-edges.js:
+        * storage/indexeddb/resources/keyrange.js:
+        * storage/indexeddb/resources/objectstore-autoincrement.js:
+        * storage/indexeddb/resources/objectstore-basics.js:
+        * storage/indexeddb/resources/objectstore-count.js:
+        * storage/indexeddb/resources/open-cursor.js:
+        * storage/indexeddb/resources/readonly.js:
+        * storage/indexeddb/resources/removed.js:
+        * storage/indexeddb/resources/shared.js:
+        * storage/indexeddb/resources/transaction-abort.js:
+        * storage/indexeddb/resources/transaction-active-flag.js:
+        * storage/indexeddb/resources/transaction-basics.js:
+        * storage/indexeddb/resources/transaction-complete-workers.js:
+        * storage/indexeddb/resources/transaction-error.js:
+        * storage/indexeddb/resources/transaction-read-only.js:
+        * storage/indexeddb/transaction-abort-expected.txt:
+        * storage/indexeddb/transaction-active-flag-expected.txt:
+        * storage/indexeddb/transaction-basics-expected.txt:
+        * storage/indexeddb/transaction-complete-workers-expected.txt:
+        * storage/indexeddb/transaction-error-expected.txt:
+        * storage/indexeddb/transaction-read-only-expected.txt:
+
+2012-11-21  Mike Reed  <reed@google.com>
+
+        update expectations in advance of skia deps roll
+        https://bugs.webkit.org/show_bug.cgi?id=102964
+
+        Reviewed by NOBODY. expectations change only.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-21  Jussi Kukkonen  <jussi.kukkonen@intel.com>
+
+        [EFL][WK2] gardening: fast/writing-mode/japanese-ruby-* are flaky
+        https://bugs.webkit.org/show_bug.cgi?id=102921
+
+        Unreviewed gardening: several tests fail if run after any test that
+        changes font family mappings. Mark them flaky.
+
+        * platform/efl-wk2/TestExpectations:
+
+2012-11-21  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Reverted expectation changes from r135380 and marked css3/filters/effect-reference-ordering-hw.html as crashing
+        https://bugs.webkit.org/show_bug.cgi?id=102898
+
+        * platform/chromium/TestExpectations:
+
+2012-11-21  Jussi Kukkonen  <jussi.kukkonen@intel.com>
+
+        [EFL] Gardening: svg/foreignObject/viewport-foreignobject-crash.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=102931
+
+        Unreviewed gardening.
+
+        * platform/efl/TestExpectations:
+
+2012-11-21  Jussi Kukkonen  <jussi.kukkonen@intel.com>
+
+        [EFL][WK2] Gardening: css3/device-adapt/opera/constrain-006 and -007 fail
+        https://bugs.webkit.org/show_bug.cgi?id=102923
+
+        Unreviewed gardening: these two still fail after using fixed layout in WTR.
+
+        * platform/efl-wk2/TestExpectations:
+
+2012-11-21  Csaba Osztrogonác  <ossy@webkit.org>
+
+        Unreviewed gardening, unskip a now passing test.
+
+        * platform/mac-wk2/TestExpectations:
+        * platform/qt-5.0-wk2/TestExpectations:
+
+2012-11-21  Csaba Osztrogonác  <ossy@webkit.org>
+
+        [Qt] Unreviewed gardening, unskip a now passing test.
+
+        * platform/qt-5.0-wk2/TestExpectations:
+        * platform/qt/TestExpectations:
+
+2012-11-21  Pavel Feldman  <pfeldman@chromium.org>
+
+        Web Inspector: reparenting view does not detach from the previous parent.
+        https://bugs.webkit.org/show_bug.cgi?id=102902
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/view-events.html:
+
+2012-11-21  Csaba Osztrogonác  <ossy@webkit.org>
+
+        [Qt] Unreviewed gardening, unskip now passing tests.
+
+        * platform/qt-5.0/TestExpectations:
+
+2012-11-21  Csaba Osztrogonác  <ossy@webkit.org>
+
+        [Qt] Unreviewed gardening, unskip a now passing test, update an expected file.
+
+        * platform/qt-5.0/TestExpectations:
+        * platform/qt-5.0/editing/selection/click-left-of-rtl-wrapping-text-expected.txt:
+
+2012-11-21  Csaba Osztrogonác  <ossy@webkit.org>
+
+        [Qt] Unreviewed gardening, unskip now passing tests.
+
+        * platform/qt/TestExpectations:
+
+2012-11-21  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Mark css3/filters/effect-reference-ordering-hw.html as crashing after crrev.com/168998
+
+        * platform/chromium/TestExpectations:
+
+2012-11-21  Alexander Pavlov  <apavlov@chromium.org>
+
+        Turn -webkit-text-emphasis into a shorthand property
+        https://bugs.webkit.org/show_bug.cgi?id=102879
+
+        Reviewed by Antti Koivisto.
+
+        Update expected results.
+
+        * fast/css/parsing-text-emphasis-expected.txt:
+        * fast/css/parsing-text-emphasis.html:
+
+2012-11-21  Csaba Osztrogonác  <ossy@webkit.org>
+
+        [Qt] Unreviewed gardening, unskip a now passing test.
+
+        * platform/qt-5.0-wk2/TestExpectations:
+        * platform/qt/TestExpectations:
+
+2012-11-21  Csaba Osztrogonác  <ossy@webkit.org>
+
+
+        * platform/qt-5.0-wk2/TestExpectations:
+
+2012-11-21  David Grogan  <dgrogan@chromium.org>
+
+        IndexedDB: remove setVersion from inspector tests
+        https://bugs.webkit.org/show_bug.cgi?id=102850
+
+        Reviewed by Vsevolod Vlasov.
+
+        setVersion was contained so the conversion to upgradeneeded was
+        straightforward.
+
+        * http/tests/inspector/indexeddb/database-data-expected.txt:
+        * http/tests/inspector/indexeddb/database-structure-expected.txt:
+        * http/tests/inspector/indexeddb/indexeddb-test.js:
+        (.request.onsuccess.onSuccess.request.onupgradeneeded):
+        (.request.onsuccess.onSuccess.request.onsuccess):
+        (.request.onsuccess):
+        (doWithVersionTransaction):
+        * http/tests/inspector/indexeddb/resources-panel-expected.txt:
+
+2012-11-21  Sheriff Bot  <webkit.review.bot@gmail.com>
+
+        Unreviewed, rolling out r135307.
+        http://trac.webkit.org/changeset/135307
+        https://bugs.webkit.org/show_bug.cgi?id=102905
+
+        Jussi said this doesn't definitively fix things, so revert for
+        now. (Requested by rakuco on #webkit).
+
+        * animations/resources/stop-animation-on-suspend-subframe.html:
+        * animations/stop-animation-on-suspend.html:
+        * platform/chromium-mac/animations/stop-animation-on-suspend-expected.txt: Added.
+        * platform/chromium/TestExpectations:
+        * platform/efl/TestExpectations:
+        * platform/gtk/TestExpectations:
+        * platform/mac/TestExpectations:
+        * platform/qt-arm/TestExpectations:
+        * platform/win/TestExpectations:
+        * platform/wincairo/TestExpectations:
+
+2012-11-21  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Updated test expectations.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-21  Kunihiko Sakamoto  <ksakamoto@chromium.org>
+
+        Enable datalist UI for input types datetime and datetime-local
+        https://bugs.webkit.org/show_bug.cgi?id=102882
+
+        Reviewed by Kent Tamura.
+
+        Removed expectation of failure.
+
+        * platform/chromium/fast/forms/datalist/input-list-expected.txt: Removed.
+
+2012-11-20  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Fixed webkit_lint complaints about overlapping entries in Chromium TestExpectations.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-20  Csaba Osztrogonác  <ossy@webkit.org>
+
+        [Qt] Unreviewed morning gardening, skip a new security
+        timeouting test to paint the bots green.
+
+        * platform/qt/TestExpectations:
+
+2012-11-20  Kangil Han  <kangil.han@samsung.com>
+
+        [EFL][WK2][WTR] Unskip passed cases under css3/device-adapt/opera/
+        https://bugs.webkit.org/show_bug.cgi?id=102868
+
+        Unreviewed, EFL gardening.
+
+        As BUG 102517 has been resolved, we can move those from EFL common to WK1 only.
+
+        * platform/efl-wk1/TestExpectations:
+        * platform/efl/TestExpectations:
+
+2012-11-20  Kentaro Hara  <haraken@chromium.org>
+
+        [V8] Introduce constructorCallbackCustom()
+        https://bugs.webkit.org/show_bug.cgi?id=102763
+
+        Reviewed by Adam Barth.
+
+        Updated a test result.
+
+        * platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt:
+
+2012-11-20  Adam Klein  <adamk@chromium.org>
+
+        [JSC] MutationObserver wrapper should not be collected while still observing
+        https://bugs.webkit.org/show_bug.cgi?id=102744
+
+        Reviewed by Adam Barth.
+
+        Remove suppressions for wrapper dropoff tests.
+
+        * platform/efl/TestExpectations:
+        * platform/gtk/TestExpectations:
+        * platform/mac/TestExpectations:
+        * platform/qt/TestExpectations:
+        * platform/win/TestExpectations:
+        * platform/wincairo/TestExpectations:
+
+2012-11-20  Ryosuke Niwa  <rniwa@webkit.org>
+
+        REGRESSION(r131106): magnitude-perf.js calls bind on undefined
+        https://bugs.webkit.org/show_bug.cgi?id=102848
+
+        Reviewed by Tony Gentilcore.
+
+        Check the existence of performance.now before calling bind on it.
+
+        * resources/magnitude-perf.js:
+        (Magnitude._runIteration):
+
+2012-11-20  David Grogan  <dgrogan@chromium.org>
+
+        IndexedDB: remove setVersion from pending-version-change-on-exit.html
+        https://bugs.webkit.org/show_bug.cgi?id=102457
+
+        Reviewed by Tony Chang.
+
+        This test doesn't work in single-process mode because of
+        http://wkb.ug/82776. We run it in content_shell in chromium.
+
+        * platform/chromium/TestExpectations:
+        * storage/indexeddb/pending-version-change-on-exit-expected.txt:
+        * storage/indexeddb/pending-version-change-on-exit.html:
+        * storage/indexeddb/resources/pending-version-change-on-exit.js:
+        (request.onblocked):
+
+2012-11-20  Bear Travis  <betravis@adobe.com>
+
+        [CSS Exclusions] Support outside-shape value on shape-inside
+        https://bugs.webkit.org/show_bug.cgi?id=101108
+
+        Reviewed by Dirk Schulze.
+
+        Adding tests to make sure the 'outside-shape' value properly applies only to the
+        shape-inside property.
+
+        * fast/exclusions/parsing-wrap-shape-inside-expected.txt:
+        * fast/exclusions/parsing-wrap-shape-outside-expected.txt:
+        * fast/exclusions/script-tests/parsing-wrap-shape-inside.js:
+        * fast/exclusions/script-tests/parsing-wrap-shape-outside.js:
+
+2012-11-20  Jian Li  <jianli@chromium.org>
+
+        Unreviewed. Updated chromium test expectations.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-20  David Grogan  <dgrogan@chromium.org>
+
+        IndexedDB: Remove legacy enum-based constants from IDL
+        https://bugs.webkit.org/show_bug.cgi?id=85315
+
+        Reviewed by Adam Barth.
+
+        * storage/indexeddb/constants-expected.txt:
+        * storage/indexeddb/cursor-overloads-expected.txt:
+        * storage/indexeddb/cursor-overloads.html:
+        * storage/indexeddb/legacy-constants-expected.txt:
+        * storage/indexeddb/resources/constants.js:
+        (test):
+        * storage/indexeddb/resources/legacy-constants.js:
+        (testObsoleteConstants):
+
+2012-11-20  Jussi Kukkonen  <jussi.kukkonen@intel.com>
+
+        animations/stop-animation-on-suspend.html sometimes fails on all platforms
+        https://bugs.webkit.org/show_bug.cgi?id=49182
+
+        Reviewed by Antti Koivisto.
+
+        stop-animation-on-suspend incorrectly assumed that animation in a subframe would start
+        roughly at document load. Keep both animations (one in main frame, one in iframe) paused
+        until the iframe is loaded: this way they should run synchronised enough.
+
+        Also increase the tolerance of the test slightly: measuring timing like this is inherently flaky.
+
+        Remove failure expectation from all TestExpectations and remove the clearly wrong expected
+        result for chromium-mac.
+
+        * animations/resources/stop-animation-on-suspend-subframe.html:
+        * animations/stop-animation-on-suspend.html:
+        * platform/chromium/TestExpectations:
+        * platform/chromium-mac/animations/stop-animation-on-suspend-expected.txt:
+        * platform/efl/TestExpectations:
+        * platform/gtk/TestExpectations:
+        * platform/mac/TestExpectations:
+        * platform/qt-arm/TestExpectations:
+        * platform/win/TestExpectations:
+        * platform/wincairo/TestExpectations:
+
+2012-11-20  Mike Reed  <reed@google.com>
+
+        update TestExpectations before a skia change
+        https://bugs.webkit.org/show_bug.cgi?id=102829
+
+        Reviewed by NOBODY. expectations change only.
+
+        optimization for rectangular blurs (with holes) changes some images in the low bit. mark for rebaselining.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-20  Abhishek Arya  <inferno@chromium.org>
+
+        Crash in FrameLoader::stopLoading.
+        https://bugs.webkit.org/show_bug.cgi?id=99504
+
+        Reviewed by Nate Chapin.
+
+        * fast/frames/frame-unload-crash2-expected.txt: Added.
+        * fast/frames/frame-unload-crash2.html: Added.
+
+2012-11-20  Tom Sepez  <tsepez@chromium.org>
+
+        XSSAuditor::decodedSnippetForJavaScript stopping when comma encountered.
+        https://bugs.webkit.org/show_bug.cgi?id=102587
+
+        Reviewed by Adam Barth.
+
+        * http/tests/security/xssAuditor/script-tag-with-actual-comma-expected.txt: Added.
+        * http/tests/security/xssAuditor/script-tag-with-actual-comma.html: Added.
+
+2012-11-20  Hans Muller  <hmuller@adobe.com>
+
+        [CSS Exclusions] writing-mode:vertical-rl shape-inside tests are incorrectly configured
+        https://bugs.webkit.org/show_bug.cgi?id=102729
+
+        Reviewed by Dirk Schulze.
+
+        Corrected the dimensions of the border elements in two exclusions tests.  They
+        define a rectangle that's five pixels larger than the tests' rectangular
+        shape-inside exclusions shapes.  They now enclose the shape-inside element's
+        text contents.
+
+        * fast/exclusions/shape-inside/shape-inside-polygon-rectangle-expected.html:
+        * fast/exclusions/shape-inside/shape-inside-polygon-rectangle.html:
+        * fast/exclusions/shape-inside/shape-inside-vertical-text-expected.html:
+        * fast/exclusions/shape-inside/shape-inside-vertical-text.html:
+
+2012-11-20  Xabier Rodriguez Calvar  <calvaris@igalia.com>
+
+        [GTK] fast/hidpi/video-controls-in-hidpi.html and fast/layers/video-layer.html need new baseline
+        https://bugs.webkit.org/show_bug.cgi?id=102815
+
+        Reviewed by Philippe Normand.
+
+        Added new GTK baseline for those tests.
+
+        * platform/gtk/fast/hidpi/video-controls-in-hidpi-expected.txt:
+        New GTK baseline
+        * platform/gtk/fast/layers/video-layer-expected.txt: New GTK
+        baseline
+
+2012-11-20  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
+
+        [EFL] Gardening.
+
+        Temporarily mark fast/multicol/span/positioned-child-not-removed-crash.html
+        as crashing while the regression is addressed.
+
+        * platform/efl-wk2/TestExpectations:
+
+2012-11-20  Yael Aharon  <yael.aharon@intel.com>
+
+        Unreviewed gardening.
+        Update results for compositing/geometry/vertical-scroll-composited.html after 133898.
+        Mark animations/negative-delay.html as flaky.
+        Remove a few passing tests from TextExpectations.
+
+        * platform/efl/TestExpectations:
+        * platform/efl/compositing/geometry/vertical-scroll-composited-expected.png: Added.
+        * platform/efl/compositing/geometry/vertical-scroll-composited-expected.txt:
+
+2012-11-20  Stephen Chenney  <schenney@chromium.org>
+
+        [Chromium] Expectations update
+
+        Unreviewed test expectations update.
+
+        Some results for calendar and month picker may not be up-to-date for the slow bots.
+
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png:
+        * platform/chromium-mac-lion/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-step-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/calendar-picker/month-picker-appearance-step-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-step-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/month-picker-appearance-step-expected.png:
+        * platform/chromium-win-xp/fast/block/float/overhanging-tall-block-expected.png: Removed.
+        * platform/chromium-win/fast/block/float/overhanging-tall-block-expected.png:
+        * platform/chromium-win/fast/block/float/overhanging-tall-block-expected.txt:
+
+2012-11-20  Keishi Hattori  <keishi@webkit.org>
+
+        Week picker width is too small
+        https://bugs.webkit.org/show_bug.cgi?id=102766
+
+        Reviewed by Kent Tamura.
+
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-expected.png:
+        * platform/chromium-mac/platform/chromium/fast/forms/calendar-picker/week-picker-appearance-step-expected.png:
+        * platform/chromium/TestExpectations:
+
+2012-11-20  Xabier Rodriguez Calvar  <calvaris@igalia.com>
+
+        [GTK] no volume slider in HTML5 media element controls
+        https://bugs.webkit.org/show_bug.cgi?id=97192
+
+        Reviewed by Philippe Normand.
+
+        r115829 was causing this regression so it was partially
+        reverted. The revert causes some small regressions, in the tests
+        but it is better to have the volume slider shown.
+
+        * platform/gtk-wk2/TestExpectations: Updated because it causes
+        some new regressions
+        * platform/gtk/TestExpectations: Updated because it causes some
+        new regressions
+        * platform/gtk/media/audio-controls-rendering-expected.txt: Updated
+        * platform/gtk/media/controls-after-reload-expected.txt: Updated
+        * platform/gtk/media/controls-strict-expected.txt: Updated
+        * platform/gtk/media/controls-styling-expected.txt: Updated
+        * platform/gtk/media/controls-styling-strict-expected.txt: Updated
+        * platform/gtk/media/controls-without-preload-expected.txt: Updated
+        * platform/gtk/media/media-controls-clone-expected.txt: Updated
+        * platform/gtk/media/video-controls-rendering-expected.txt: Updated
+        * platform/gtk/media/video-display-toggle-expected.txt: Updated
+        * platform/gtk/media/video-empty-source-expected.txt: Updated
+        * platform/gtk/media/video-no-audio-expected.txt: Updated
+        * platform/gtk/media/video-volume-slider-expected.txt: Updated
+        * platform/gtk/media/video-zoom-controls-expected.txt: Updated
+
+2012-11-20  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Mark inspector/profiler/cpu-profiler-profiling-without-inspector.html
+        as crashing.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-20  Kunihiko Sakamoto  <ksakamoto@chromium.org>
+
+        Use localized date-time format in datetime input
+        https://bugs.webkit.org/show_bug.cgi?id=102769
+
+        Reviewed by Kent Tamura.
+
+        * fast/forms/datetime/datetime-appearance-l10n-expected.txt: Added.
+        * fast/forms/datetime/datetime-appearance-l10n.html: Added. We can confirm vi-vn have time-date ordering.
+        * platform/chromium-mac/fast/forms/datetime/datetime-appearance-l10n-expected.png: Added.
+        * platform/chromium/TestExpectations:
+
+2012-11-19  Shinya Kawanaka  <shinyak@chromium.org>
+
+        [Refactoring] Remove shadowPseudoId() and use setPseudo() in <progress> ElementShadow.
+        https://bugs.webkit.org/show_bug.cgi?id=101703
+
+        Reviewed by Hajime Morita.
+
+        * editing/style/apply-style-atomic-expected.txt:
+        * fast/dom/HTMLProgressElement/progress-element-markup-expected.txt:
+
+2012-11-19  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Reenable webaudio/biquad-getFrequencyResponse.html test as it should pass after r129418
+        https://bugs.webkit.org/show_bug.cgi?id=97439
+
+        * platform/chromium/TestExpectations:
+
+2012-11-19  Matt Falkenhagen  <falken@chromium.org>
+
+        Implement the new stacking layer needed by the Fullscreen API and the new <dialog> element
+        https://bugs.webkit.org/show_bug.cgi?id=84796
+
+        Reviewed by Julien Chaffraix.
+
+        Add tests for top layer stacking and rendering.
+
+        * fast/dom/HTMLDialogElement/top-layer-containing-block-expected.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-containing-block.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-display-none-expected.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-display-none.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-nesting-expected.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-nesting.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-stacking-dynamic-expected.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-stacking-dynamic.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-stacking-expected.html: Added.
+        * fast/dom/HTMLDialogElement/top-layer-stacking.html: Added.
+
+2012-11-19  Yury Semikhatsky  <yurys@chromium.org>
+
+        Unreviewed. Fix lint errors on chromium TextExpectations after r135205.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-19  Shinya Kawanaka  <shinyak@chromium.org>
+
+        [Shadow] attribute pseudo should return empty string instead of null when nothing is specified.
+        https://bugs.webkit.org/show_bug.cgi?id=102753
+
+        Reviewed by Hajime Morita.
+
+        * fast/dom/shadow/pseudo-attribute-expected.txt:
+        * fast/dom/shadow/pseudo-attribute.html:
+
+2012-11-19  Adam Klein  <adamk@chromium.org>
+
+        MutationObserver wrapper should not be collected while still observing
+        https://bugs.webkit.org/show_bug.cgi?id=102328
+
+        Reviewed by Adam Barth.
+
+        Tests showing that observers are kept alive, both in the simple case
+        and in the transient registered observer case (where the original
+        registration node is GCed but the transient observation node is still
+        alive).
+
+        * fast/mutation/observer-wrapper-dropoff-expected.txt: Added.
+        * fast/mutation/observer-wrapper-dropoff-transient-expected.txt: Added.
+        * fast/mutation/observer-wrapper-dropoff-transient.html: Added.
+        * fast/mutation/observer-wrapper-dropoff.html: Added.
+
+2012-11-19  Tony Chang  <tony@chromium.org>
+
+        Move more non-settings out of InternalSettings
+        https://bugs.webkit.org/show_bug.cgi?id=102711
+
+        Reviewed by Adam Barth.
+
+        Move static values out of InternalSettings.
+
+        * fast/scrolling/scrollbar-tickmarks-hittest.html: Move setUsesOverlayScrollbars to internals.
+
+2012-11-19  David Grogan  <dgrogan@chromium.org>
+
+        IndexedDB: Complex series of opens/deleteDatabase fails an ASSERT
+        https://bugs.webkit.org/show_bug.cgi?id=101810
+
+        Reviewed by Tony Chang.
+
+        Removed use of setVersion. Surprisingly straightforward conversion
+        given how gnarly this test is.
+
+        * storage/indexeddb/deletedatabase-delayed-by-versionchange-expected.txt:
+        * storage/indexeddb/resources/deletedatabase-delayed-by-versionchange.js:
+        (h1OpenSuccess.h1.onversionchange):
+        (h1OpenSuccess.request.onsuccess.h2OpenSuccess.h2.onversionchange):
+        (h1OpenSuccess.request.onsuccess.h2OpenSuccess.request.onsuccess):
+        (h1OpenSuccess.request.onsuccess.h2OpenSuccess.request.onblocked.h3Blocked.request.onsuccess):
+        (h1OpenSuccess.request.onsuccess.h2OpenSuccess.request.onblocked):
+        (h1OpenSuccess.request.onsuccess.h2OpenSuccess.request.onupgradeneeded.h3OnUpgradeneeded.transaction.oncomplete):
+        (h1OpenSuccess.request.onsuccess.h2OpenSuccess.request.onupgradeneeded):
+        (h1OpenSuccess.request.onsuccess):
+        (h1OpenSuccess):
+
+2012-11-19  David Grogan  <dgrogan@chromium.org>
+
+        IndexedDB: last setVersion excision batch
+        https://bugs.webkit.org/show_bug.cgi?id=102713
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/resources/setversion-blocked-by-versionchange-close-in-blocked.js: Removed.
+          The crucial part of this test was a connection closing itself in its
+          blocked callback. This is no longer possible as there's now only a
+          handle to the connection after the blocked event is dealt with.
+
+        * storage/indexeddb/resources/setversion-blocked-by-versionchange-close.js:
+          This test exposes a cascade of errors. h2's should receive 0 blocked
+          errors. Instead it receives 2.
+
+        * storage/indexeddb/resources/setversion-blocked.js: Removed.
+          Tests the same thing as set_version_blocked.
+
+        * storage/indexeddb/resources/setversion-not-blocked.js:
+          Now h2 is the version change connection and h1 is the blocker.
+
+        * storage/indexeddb/setversion-blocked-by-versionchange-close-in-blocked.html: Removed.
+        * storage/indexeddb/setversion-blocked.html: Removed.
+
+2012-11-19  David Grogan  <dgrogan@chromium.org>
+
+        IndexedDB: convert delete-closed-database-object to upgradeneeded
+        https://bugs.webkit.org/show_bug.cgi?id=102458
+
+        Reviewed by Tony Chang.
+
+        This test relies on gc behavior and seems flaky in content_shell.
+
+        * storage/indexeddb/delete-closed-database-object-expected.txt:
+        * storage/indexeddb/resources/delete-closed-database-object.js:
+        (prepareDatabase):
+        (openSuccess.openRequest.onsuccess):
+        (openSuccess):
+        (setVersion):
+
+2012-11-19  Chris Rogers  <crogers@google.com>
+
+        Implement .detune attribute for BiquadFilterNode
+        https://bugs.webkit.org/show_bug.cgi?id=102737
+
+        Reviewed by Kenneth Russell.
+
+        * webaudio/biquad-lowpass.html:
+        * webaudio/resources/biquad-testing.js:
+        (createTestAndRun):
+        (generateReference):
+
+2012-11-19  Huang Dongsung  <luxtella@company100.net>
+
+        Coordinated Graphics: Remove tiles of a layer when they are off the viewport.
+        https://bugs.webkit.org/show_bug.cgi?id=102313
+
+        Reviewed by Noam Rosenthal.
+
+        This test checks that a compositing layer is rendered if the layer is
+        originally transformed off the viewport.
+
+        * animations/animation-offscreen-to-onscreen-expected.png: Added.
+        * animations/animation-offscreen-to-onscreen-expected.txt: Added.
+        * animations/animation-offscreen-to-onscreen.html: Added.
+
+2012-11-19  Jian Li  <jianli@chromium.org>
+
+        Unreviewed. Mark 2 tests as failed on chromium.
+
+        * platform/chromium/TestExpectations:
+
+2012-11-19  Eric Carlson  <eric.carlson@apple.com>
+
+        HTMLMediaElement::configureTextTracks should configure all text tracks
+        https://bugs.webkit.org/show_bug.cgi?id=102561
+
+        Reviewed by Philippe Normand.
+
+        Update test and results to check that dynamically added tracks are configured correctly.
+
+        * media/track/track-mode-not-changed-by-new-track-expected.txt:
+        * media/track/track-mode-not-changed-by-new-track.html:
+
+2012-11-19  Abhishek Arya  <inferno@chromium.org>
+
+        Crash in ApplyStyleCommand::cleanupUnstyledAppleStyleSpans.
+        https://bugs.webkit.org/show_bug.cgi?id=100150
+
+        Reviewed by Ryosuke Niwa.
+
+        * editing/style/apply-style-crash-expected.txt: Added.
+        * editing/style/apply-style-crash.html: Added.
+
+2012-11-19  Sheriff Bot  <webkit.review.bot@gmail.com>
+
+        Unreviewed, rolling out r135172.
+        http://trac.webkit.org/changeset/135172
+        https://bugs.webkit.org/show_bug.cgi?id=102710
+
+        Broke some WebKit2 api tests :( (Requested by japhet on
+        #webkit).
+
+        * http/tests/inspector/network/network-iframe-load-and-delete.html:
+        * http/tests/loading/redirect-methods-expected.txt:
+        * http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-expected.txt:
+        * http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-in-body-expected.txt:
+        * http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-deny-expected.txt:
+
+2012-11-19  Sheriff Bot  <webkit.review.bot@gmail.com>
+
+        Unreviewed, rolling out r134830.
+        http://trac.webkit.org/changeset/134830
+        https://bugs.webkit.org/show_bug.cgi?id=102701
+
+        ActiveDOMObject is not applicable to MutationObservers due to
+        being tied to a Document (Requested by aklein on #webkit).
+
+        * fast/mutation/observer-wrapper-dropoff-expected.txt: Removed.
+        * fast/mutation/observer-wrapper-dropoff.html: Removed.
+
+2012-11-19  Yael Aharon  <yael.aharon@intel.com>
+
+        Unreviewed gardening after r133898.
+        Cleanup the list of compositing tests failures.
+
+        * platform/efl/TestExpectations:
+
+2012-11-19  Shinya Kawanaka  <shinyak@chromium.org>
+
+        Changing id, className, or attribute should invalidate distribution
+        https://bugs.webkit.org/show_bug.cgi?id=100738
+
+        Reviewed by Dimitri Glazkov.
+
+        We have test cases that id/class/attribute is changed, and thier reprojection cases.
+
+        * fast/dom/shadow/distribution-attribute-modified-expected.html: Added.
+        * fast/dom/shadow/distribution-attribute-modified.html: Added.
+        * fast/dom/shadow/distribution-className-modified-expected.html: Added.
+        * fast/dom/shadow/distribution-className-modified.html: Added.
+        * fast/dom/shadow/distribution-id-modified-expected.html: Added.
+        * fast/dom/shadow/distribution-id-modified.html: Added.
+        * fast/dom/shadow/reprojection-attribute-modified-expected.html: Added.
+        * fast/dom/shadow/reprojection-attribute-modified.html: Added.
+        * fast/dom/shadow/reprojection-className-modified-expected.html: Added.
+        * fast/dom/shadow/reprojection-className-modified.html: Added.
+        * fast/dom/shadow/reprojection-id-modified-expected.html: Added.
+        * fast/dom/shadow/reprojection-id-modified.html: Added.
+
+2012-11-19  Nate Chapin  <japhet@chromium.org>
+
+        Move empty loading to DocumentLoader, simplify FrameLoader::init()
+        https://bugs.webkit.org/show_bug.cgi?id=101512
+
+        Reviewed by Adam Barth.
+
+        Don't expect resource load callbacks for empty loads.
+
+        * http/tests/inspector/network/network-iframe-load-and-delete.html:
+        * http/tests/loading/redirect-methods-expected.txt:
+        * http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-expected.txt:
+        * http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-in-body-expected.txt:
+        * http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-deny-expected.txt:
+
+2012-11-19  Balazs Kelemen  <kbalazs@webkit.org>
+
+        [Qt][WK2] REGRESSION(r132907): It made animations/negative-delay.html flaky
+        https://bugs.webkit.org/show_bug.cgi?id=100769
+
+        Unreviewed gardening (Qt).
+
+        These tests are rather flaky, mark them as so.
+
+        * platform/qt-5.0-wk2/TestExpectations:
+
+2012-11-19  Erik Arvidsson  <arv@chromium.org>
+
+        Update DOMException name: DataCloneError
+        https://bugs.webkit.org/show_bug.cgi?id=102521
+
+        Reviewed by Kentaro Hara.
+
+        Updated tests and expectations.
+
+        * fast/dom/Window/anonymous-slot-with-changes-expected.txt:
+        * fast/dom/Window/window-postmessage-clone-expected.txt:
+        * fast/dom/shadow/shadowroot-clonenode-expected.txt:
+        * fast/dom/shadow/shadowroot-clonenode.html:
+        * fast/events/message-port-multi-expected.txt:
+        * fast/filesystem/filesystem-unserializable-expected.txt:
+        * platform/chromium/fast/dom/Window/window-postmessage-clone-expected.txt:
+        * platform/chromium/fast/dom/Window/window-postmessage-clone-really-deep-array-expected.txt:
+        * platform/gtk/fast/dom/Window/window-postmessage-clone-expected.txt:
+        * webintents/web-intents-obj-constructor-expected.txt:
+        * webintents/web-intents-obj-constructor.html:
+
 2012-11-19  Thiago Marcos P. Santos  <thiago.santos@intel.com>
 
         Apply the resolved viewport rules
index 8769c25..c63650f 100644 (file)
@@ -8,7 +8,7 @@ No restriction
 enter "512" for noRange
 PASS input.value is "512"
 enter "+++" for typeMismatch
-PASS input.value is "512"
+PASS input.value is ""
 enter "" for empty
 PASS input.value is ""
 
@@ -28,7 +28,7 @@ PASS input.value is "100"
 enter "200" for rangeOverflow
 PASS input.value is "200"
 enter "abc" for typeMismatch
-PASS input.value is "200"
+PASS input.value is ""
 enter "" for empty
 PASS input.value is ""
 PASS successfullyParsed is true
index 084a43c..9cac5bb 100644 (file)
@@ -25,7 +25,7 @@ function checkIt(what, sample, expected)
 
 debug("\nNo restriction");
 checkIt('noRange', "512", "512");
-checkIt('typeMismatch', "+++", "512");
+checkIt('typeMismatch', "+++", "");
 checkIt('empty', "", "");
 
 debug("\nmin/max/step");
@@ -39,7 +39,7 @@ checkIt("inRange", "50", "50");
 checkIt("stepMismatch", "10.5", "10.5");
 checkIt("maximum", "100", "100");
 checkIt("rangeOverflow", "200", "200");
-checkIt("typeMismatch", "abc", "200");
+checkIt("typeMismatch", "abc", "");
 checkIt("empty", "", ""); // empty
 
 </script>
index e79b4a5..b7c7db2 100644 (file)
@@ -8,13 +8,17 @@ PASS colorOf(number) != invalidStyleColor is true
 Type '-'. The renderer value becomes unacceptable.
 PASS colorOf(number) is invalidStyleColor
 PASS number.validity.valid is true
+PASS number.value is ""
 Type '1' additionally. The renderer value becomes acceptable.
 PASS colorOf(number) != invalidStyleColor is true
+PASS number.value is "-1"
 Type 'a' additionally. The renderer value becomes unacceptable again.
 PASS colorOf(number) is invalidStyleColor
+PASS number.value is ""
 The element losts focus. The unacceptable value should be purged and the style should be normal.
 PASS colorOf(number) != invalidStyleColor is true
-PASS document.getSelection().toString() is "-1"
+PASS document.getSelection().toString() is ""
+PASS number.value is ""
 PASS successfullyParsed is true
 
 TEST COMPLETE
index d8d04bd..3b93721 100644 (file)
@@ -32,14 +32,17 @@ debug("Type '-'. The renderer value becomes unacceptable.");
 document.execCommand('InsertText', false, '-');
 shouldBe('colorOf(number)', 'invalidStyleColor');
 shouldBeTrue('number.validity.valid');
+shouldBeEqualToString('number.value', '');
 
 debug("Type '1' additionally. The renderer value becomes acceptable.");
 document.execCommand('InsertText', false, '1');
 shouldBeTrue('colorOf(number) != invalidStyleColor');
+shouldBeEqualToString('number.value', '-1');
 
 debug("Type 'a' additionally. The renderer value becomes unacceptable again.");
 document.execCommand('InsertText', false, 'a');
 shouldBe('colorOf(number)', 'invalidStyleColor');
+shouldBeEqualToString('number.value', '');
 
 debug("The element losts focus. The unacceptable value should be purged and the style should be normal.");
 document.getElementById('another').focus();
@@ -47,7 +50,8 @@ shouldBeTrue('colorOf(number) != invalidStyleColor');
 // Visiblue value is not '-1a'.
 number.focus();
 document.execCommand('SelectAll');
-shouldBe('document.getSelection().toString()', '"-1"');
+shouldBeEqualToString('document.getSelection().toString()', '');
+shouldBeEqualToString('number.value', '');
 
 document.getElementById('parent').innerHTML = '';
 </script>
index 1cc0e9a..84477bf 100644 (file)
@@ -1,3 +1,38 @@
+2012-11-23  Kent Tamura  <tkent@chromium.org>
+
+        Correct input[type=number] value sanitization for user-input
+        https://bugs.webkit.org/show_bug.cgi?id=103018
+
+        Reviewed by Kentaro Hara.
+
+        If a number field has non-number string, HTMLInputElement::value is not
+        updated and returns the past valid value. It doesn't match to the value
+        sanitization algorithm defined by the HTML standard [1], and Opera's
+        behavior. We should sanitize non-number strings to "".
+
+        [1] http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#number-state-(type=number)
+        > The value sanitization algorithm is as follows: If the value of the
+        > element is not a valid floating-point number, then set it to the empty
+        > string instead.
+
+        No new tests. Update existing tests;
+        fast/forms/number/number-commit-valid-only.html and
+        fast/forms/number/number-unacceptable-style.html
+
+        * html/HTMLInputElement.cpp:
+        (WebCore::HTMLInputElement::subtreeHasChanged):
+        Remove isAcceptableValue check.
+
+        * html/HTMLInputElement.h:
+        (HTMLInputElement): isAcceptableValue is no longer needed.
+        * html/InputType.cpp: Remove isAcceptableValue.
+        * html/InputType.h: Ditto.
+        * html/NumberInputType.cpp: Ditto.
+        (WebCore::NumberInputType::hasUnacceptableValue):
+        Fold the isAcceptableValue content into this.
+        * html/NumberInputType.h:
+        (NumberInputType): Remove isAcceptableValue.
+
 2012-12-13  Byungwoo Lee  <bw80.lee@samsung.com>
 
         [EFL] Remove redundant pipe write to prevent pipe buffer full.
index 13f1849..a763d1b 100755 (executable)
@@ -501,9 +501,7 @@ void HTMLInputElement::subtreeHasChanged()
     // HTMLInputElement::handleBeforeTextInsertedEvent() has already called
     // sanitizeUserInputValue().
     // sanitizeValue() is needed because IME input doesn't dispatch BeforeTextInsertedEvent.
-    String value = innerTextValue();
-    if (isAcceptableValue(value))
-        setValueFromRenderer(sanitizeValue(convertFromVisibleValue(value)));
+    setValueFromRenderer(sanitizeValue(convertFromVisibleValue(innerTextValue())));
     updatePlaceholderVisibility(false);
     // Recalc for :invalid and hasUnacceptableValue() change.
     setNeedsStyleRecalc();
@@ -1340,11 +1338,6 @@ String HTMLInputElement::convertFromVisibleValue(const String& visibleValue) con
     return m_inputType->convertFromVisibleValue(visibleValue);
 }
 
-bool HTMLInputElement::isAcceptableValue(const String& proposedValue) const
-{
-    return m_inputType->isAcceptableValue(proposedValue);
-}
-
 String HTMLInputElement::sanitizeValue(const String& proposedValue) const
 {
     if (proposedValue.isNull())
index 2007e52..042f73a 100755 (executable)
@@ -156,8 +156,6 @@ public:
     // The value which is drawn by a renderer.
     String visibleValue() const;
     String convertFromVisibleValue(const String&) const;
-    // Returns true if the specified string can be set as the value of HTMLInputElement.
-    bool isAcceptableValue(const String&) const;
 
     const String& suggestedValue() const;
     void setSuggestedValue(const String&);
index 6cf958c..e09188c 100644 (file)
@@ -676,11 +676,6 @@ String InputType::convertFromVisibleValue(const String& visibleValue) const
     return visibleValue;
 }
 
-bool InputType::isAcceptableValue(const String&)
-{
-    return true;
-}
-
 String InputType::sanitizeValue(const String& proposedValue) const
 {
     return proposedValue;
index 592d0f1..f45df29 100644 (file)
@@ -181,7 +181,6 @@ public:
     virtual String localizeValue(const String&) const;
     virtual String visibleValue() const;
     virtual String convertFromVisibleValue(const String&) const;
-    virtual bool isAcceptableValue(const String&);
     // Returing the null string means "use the default value."
     // This function must be called only by HTMLInputElement::sanitizeValue().
     virtual String sanitizeValue(const String&) const;
index 8beff28..de18cfa 100644 (file)
@@ -263,12 +263,6 @@ String NumberInputType::convertFromVisibleValue(const String& visibleValue) cons
     return convertFromLocalizedNumber(visibleValue);
 }
 
-bool NumberInputType::isAcceptableValue(const String& proposedValue)
-{
-    String standardValue = convertFromVisibleValue(proposedValue);
-    return standardValue.isEmpty() || isfinite(parseToDoubleForNumberType(standardValue));
-}
-
 String NumberInputType::sanitizeValue(const String& proposedValue) const
 {
     if (proposedValue.isEmpty())
@@ -278,7 +272,10 @@ String NumberInputType::sanitizeValue(const String& proposedValue) const
 
 bool NumberInputType::hasUnacceptableValue()
 {
-    return element()->renderer() && !isAcceptableValue(element()->innerTextValue());
+    if (!element()->renderer())
+        return false;
+    String standardValue = convertFromVisibleValue(element()->innerTextValue());
+    return !standardValue.isEmpty() && !isfinite(parseToDoubleForNumberType(standardValue));
 }
 
 bool NumberInputType::shouldRespectSpeechAttribute()
index fe16e5f..f06e808 100644 (file)
@@ -58,7 +58,6 @@ private:
     virtual String localizeValue(const String&) const OVERRIDE;
     virtual String visibleValue() const OVERRIDE;
     virtual String convertFromVisibleValue(const String&) const OVERRIDE;
-    virtual bool isAcceptableValue(const String&) OVERRIDE;
     virtual String sanitizeValue(const String&) const OVERRIDE;
     virtual bool hasUnacceptableValue() OVERRIDE;
     virtual bool shouldRespectSpeechAttribute() OVERRIDE;