diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-16 18:46:32 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-16 18:46:32 +0000 |
commit | 12e0eed769a220d8ff490f092a7235af6f68270e (patch) | |
tree | 54b108ff8fc5f29838ed48c08e659b28c71c6f71 /webkit | |
parent | c0b99038c58d79f7c1032f35dfb0eb62279a2d0d (diff) | |
download | chromium_src-12e0eed769a220d8ff490f092a7235af6f68270e.zip chromium_src-12e0eed769a220d8ff490f092a7235af6f68270e.tar.gz chromium_src-12e0eed769a220d8ff490f092a7235af6f68270e.tar.bz2 |
Linux: Use -mfpmath=sse to remove differences between opt and debug
(note: this change now requires a P4 to build. It's easy to back it
out for older processors, but they shouldn't be used to run
layout-tests.)
We are seeing issues where the opt build ends up with very slightly
different colours in layout tests than the debug build. This is
probably due to floating point rounding differences.
All floating-point computations on x87 happens in 80-bit precision.
Because the C and C++ language standards allow the compiler to keep
the floating-point values in higher precision than what's specified in
the source and doing so is more efficient than constantly rounding up
to 64-bit or 32-bit precision as specified in the source, the
compiler, especially in the optimized mode, tries very hard to keep
values in x87 floating-point stack (in 80-bit precision) as long as
possible. This has important side effects, that the real value used in
computation may change depending on how the compiler did the
optimization - that is, the value kept in 80-bit is different than the
value rounded down to 64-bit or 32-bit. There are possible compiler
options to make this behavior consistent (e.g. -ffloat-store would
keep all floating-values in the memory, thus force them to be rounded
to its original precision) but they have significant runtime
performance penalty.
-mfpmath=sse -msse2 makes the compiler use SSE instructions which keep
floating-point values in SSE registers in its native precision (32-bit
for single precision, and 64-bit for double precision values). This
means the floating-point value used during computation does not change
depending on how the compiler optimized the code, since the value is
always kept in its specified precision.
Internal performace tests of these options shows that it's not a clear
performance win or loss across the board.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11751 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
166 files changed, 109 insertions, 109 deletions
diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.checksum index ff1ef11..fc091f4 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.checksum @@ -1 +1 @@ -3195c31b86915dae23f0ae217083a312
\ No newline at end of file +4f21b90af0fce4a09abbbaf8633f389e
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.png Binary files differindex e44b109..3d06162 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.txt index 5a667ab..9e2b9c2 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css1/box_properties/acid_test-expected.txt @@ -19,18 +19,18 @@ layer at (0,0) size 800x433 RenderBlock (anonymous) at (10,20) size 139x0 RenderInline {FORM} at (0,0) size 0x0 RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (10,20) size 139x42 - RenderBlock {P} at (0,0) size 139x21 + RenderBlock (anonymous) at (10,20) size 139x44 + RenderBlock {P} at (0,0) size 139x22 RenderText {#text} at (0,6) size 32x12 text run at (0,6) width 32: "bang " RenderBlock {INPUT} at (37,3) size 13x13 [color=#000000] RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,21) size 139x21 + RenderBlock {P} at (0,22) size 139x22 RenderText {#text} at (0,6) size 50x12 text run at (0,6) width 50: "whimper " RenderBlock {INPUT} at (55,3) size 13x13 [color=#000000] RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (10,62) size 139x0 + RenderBlock (anonymous) at (10,64) size 139x0 RenderInline {FORM} at (0,0) size 0x0 RenderText {#text} at (0,0) size 0x0 RenderBlock (floating) {LI} at (259,0) size 80x120 [color=#000000] [bgcolor=#FFCC00] [border: (5px solid #000000)] diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.checksum index f77de4c..f62e928 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.checksum @@ -1 +1 @@ -910ecdf230a101065d3db63f7f70a6d0
\ No newline at end of file +46b5c65a95a86efaabc0eb24044f7a8c
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.png Binary files differindex 1f6a53f..7d62429 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.txt index 3e07cdb..176063d 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/css2.1/t09-c5526c-display-00-e-expected.txt @@ -19,18 +19,18 @@ layer at (0,0) size 800x433 RenderBlock (anonymous) at (10,20) size 139x0 RenderInline {FORM} at (0,0) size 0x0 RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (10,20) size 139x42 - RenderBlock {P} at (0,0) size 139x21 + RenderBlock (anonymous) at (10,20) size 139x44 + RenderBlock {P} at (0,0) size 139x22 RenderText {#text} at (0,6) size 32x12 text run at (0,6) width 32: "bang " RenderBlock {INPUT} at (37,3) size 13x13 [color=#000000] RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,21) size 139x21 + RenderBlock {P} at (0,22) size 139x22 RenderText {#text} at (0,6) size 50x12 text run at (0,6) width 50: "whimper " RenderBlock {INPUT} at (55,3) size 13x13 [color=#000000] RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (10,62) size 139x0 + RenderBlock (anonymous) at (10,64) size 139x0 RenderInline {FORM} at (0,0) size 0x0 RenderText {#text} at (0,0) size 0x0 RenderBlock (floating) {LI} at (259,0) size 80x120 [color=#000000] [bgcolor=#FFCC00] [border: (5px solid #000000)] diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.checksum index e557ef0..44e4530 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.checksum @@ -1 +1 @@ -0824a98df22b8835ca6066425017784a
\ No newline at end of file +3a427093ff905c4d8a91662d58dee0ab
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.png Binary files differindex a4106d4..f40cd3d 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/editing/execCommand/5138441-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum index 56aa647..8173c14 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum @@ -1 +1 @@ -1ca76c73e4e7822502ae83968b41681f
\ No newline at end of file +63629485b0ed0cfbf478cdd1a0f34755
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png Binary files differindex aa50c74..add8614 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.checksum index c8e5105..33ea16b 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.checksum @@ -1 +1 @@ -34ac012cd53dfdbf5f9e877a3235de44
\ No newline at end of file +fe664e837714ebe9261170a1f8942fc9
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.png Binary files differindex 627cc44..89d49ba 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize04-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.checksum index 460ee7a4..acbf590 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.checksum @@ -1 +1 @@ -3016478c7fbd739417b1a43d6c739404
\ No newline at end of file +a9939e73040013dcde3ae41330afa8fe
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.png Binary files differindex f458e16..78489c0 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/size/backgroundSize18-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-2-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-2-expected.checksum index ddff0a8..94195ab 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-2-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-2-expected.checksum @@ -1 +1 @@ -7405df07ce9563c24db11ec1f10c72df
\ No newline at end of file +2872601a3aa433d139a3b4cc18f8fd0a
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.checksum index 8db494b..690c36f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.checksum @@ -1 +1 @@ -b4bcc870d70af25184ef7b0044f2a4e9
\ No newline at end of file +300e495c42597c7214293b349de568f2
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.png Binary files differindex 41a8e83..6aaa7a6 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-4-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.checksum index 2f799d9..eb10f16 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.checksum @@ -1 +1 @@ -40761b3d25dcdc0a3a83705d7709a7b2
\ No newline at end of file +9020989653dcb4c4576e7f006717a570
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.png Binary files differindex 7d6582e..d654939 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/backgrounds/svg-as-background-5-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.checksum index ff1ef11..fc091f4 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.checksum @@ -1 +1 @@ -3195c31b86915dae23f0ae217083a312
\ No newline at end of file +4f21b90af0fce4a09abbbaf8633f389e
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.png Binary files differindex e44b109..3d06162 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.txt index 5a667ab..9e2b9c2 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/block/basic/011-expected.txt @@ -19,18 +19,18 @@ layer at (0,0) size 800x433 RenderBlock (anonymous) at (10,20) size 139x0 RenderInline {FORM} at (0,0) size 0x0 RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (10,20) size 139x42 - RenderBlock {P} at (0,0) size 139x21 + RenderBlock (anonymous) at (10,20) size 139x44 + RenderBlock {P} at (0,0) size 139x22 RenderText {#text} at (0,6) size 32x12 text run at (0,6) width 32: "bang " RenderBlock {INPUT} at (37,3) size 13x13 [color=#000000] RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,21) size 139x21 + RenderBlock {P} at (0,22) size 139x22 RenderText {#text} at (0,6) size 50x12 text run at (0,6) width 50: "whimper " RenderBlock {INPUT} at (55,3) size 13x13 [color=#000000] RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (10,62) size 139x0 + RenderBlock (anonymous) at (10,64) size 139x0 RenderInline {FORM} at (0,0) size 0x0 RenderText {#text} at (0,0) size 0x0 RenderBlock (floating) {LI} at (259,0) size 80x120 [color=#000000] [bgcolor=#FFCC00] [border: (5px solid #000000)] diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.checksum index b83d852..7ca0cc4 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.checksum @@ -1 +1 @@ -167fbef37112405919248ffe4e9d666a
\ No newline at end of file +8bb3e49f1baa9c652b107ae6d56e7a40
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.png Binary files differindex b899124..904dbe9 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusDouble02-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.checksum index 44fdb67..5048886 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.checksum @@ -1 +1 @@ -f73cd41cea239ae8f6a27fba985bfbf0
\ No newline at end of file +0b3f5481da5c524fcb79cce3d72a4bc6
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.png Binary files differindex f62d285..25eab18 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/borders/borderRadiusSolid03-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.checksum index a52e9a0..412f2eb 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.checksum @@ -1 +1 @@ -c37f0e84307bd2ce4b4d0c6b4e1b3d57
\ No newline at end of file +b354a14f44b58a92621036941aa76180
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.png Binary files differindex 5cd7db1..22b3697 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/canvas/fillrect_gradient-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.checksum index 35a6c35..ea54f05 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.checksum @@ -1 +1 @@ -eba46a439af98f9bb24a1278a2a51e12
\ No newline at end of file +5b05f2f3f3d8e6eacde8d6a93221a1fe
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.png Binary files differindex 8dc9abb..b7226d4 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/button-sizes-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.checksum index 5994619..0c0afee3 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.checksum @@ -1 +1 @@ -c8518eef6e39b162dbda61c6dee591ac
\ No newline at end of file +4a48a5cbd19f08afce537ea930c59106
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.png Binary files differindex f445566..8a63044 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/form-hides-table-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.checksum index db4c2f3..ff88f5f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.checksum @@ -1 +1 @@ -c0074ed286537fb69e6a96e0ad2c7803
\ No newline at end of file +feb91dd2c989af8cb17a299f7621112f
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.png Binary files differindex 3fbd684..0d8954a 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/input-table-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.checksum index e27f78c..98935d5 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.checksum @@ -1 +1 @@ -3782effe9ead04cb74a7742d7859be94
\ No newline at end of file +13ce2d11c0eba1a4c8a269e66ffca12e
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.png Binary files differindex 2fe0046..5fd941e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/negativeLineHeight-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.checksum index d10754d..1645fae 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.checksum @@ -1 +1 @@ -175eca164a2730dd9188cb8c37d46c14
\ No newline at end of file +c4cbc4e94e669a48f88dc996a4850e79
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.png Binary files differindex aac14ed..84d9871 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/forms/textAreaLineHeight-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.checksum index d819807..d14734f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.checksum @@ -1 +1 @@ -6f6f00b6a8b4a18ca0374e018366d092
\ No newline at end of file +1455aa35dc16d15c9ac7a9dae442da34
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.png Binary files differindex e5e0fbb..932c272 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/images/animated-svg-as-image-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.checksum index 03dc948..6189fef 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.checksum @@ -1 +1 @@ -874bf5c5cd7a368f832a3764dd959af7
\ No newline at end of file +d06fa6caed6d71ca692ce6708a3c06b0
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.png Binary files differindex 9b30718..a62233f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/replaced/absolute-image-sizing-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.checksum index d6840434..37228f7 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.checksum @@ -1 +1 @@ -65a771b303b2a6d239771a4b35bf0bef
\ No newline at end of file +7b3781ce5d8b2e5395495a24c7ecb353
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.png Binary files differindex fc5cd1b..75dde21 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/transforms/transformed-caret-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.checksum index 5fc0969..9ddf3be 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.checksum @@ -1 +1 @@ -00d1a32c131ce98bd5652434d1f1e52d
\ No newline at end of file +bf5a55424b2bc06bb3f0f94272c58e73
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png Binary files differindex d2c3c7a..9675873 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt index d60e65e..b01bc08 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt @@ -21,8 +21,8 @@ layer at (0,0) size 480x360 RenderSVGText {text} at (0,0) size 154x33 contains 1 chunk(s) RenderSVGInlineText {#text} at (0,-28) size 154x33 chunk 1 text run 1 at (0.00,0.00) startOffset 0 endOffset 11 width 153.68: "It's alive!" - RenderSVGText {text} at (100,270) size 231x48 contains 1 chunk(s) - RenderSVGInlineText {#text} at (0,-41) size 231x48 + RenderSVGText {text} at (100,270) size 231x49 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-42) size 231x49 chunk 1 text run 1 at (100.00,270.00) startOffset 0 endOffset 11 width 230.52: "It's alive!" RenderSVGContainer {g} at (43,39.38) size 74.68x52.36 [transform={m=((1.00,0.00)(0.00,1.00)) t=(50.00,90.00)}] RenderSVGText {text} at (0,0) size 77x16 contains 1 chunk(s) diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.checksum index b2cfea0..e9dcf3a 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.checksum @@ -1 +1 @@ -cff3d14cf142fbcdfbfe55552861aa7b
\ No newline at end of file +37194273654f34f9e75340f197c99062
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png Binary files differindex b33dd14..9ec5671 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.checksum index e93a829..4fba37b 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.checksum @@ -1 +1 @@ -016283e92a95f2c9a8a13d0a03f65843
\ No newline at end of file +5c635af7daad6f771fb0b8a5d1562a93
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png Binary files differindex 84cd28b..41794f4 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum index 247e1e8..b75f388 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum @@ -1 +1 @@ -030549d1d7a820ea7f7590d7f1c0c8b0
\ No newline at end of file +2ccfc12037222eebf49cd0f250d958ae
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png Binary files differindex 21e7114..a604279 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum index 44ca2ce..cd71429f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum @@ -1 +1 @@ -4a828e1963bb0c311f05e7e4df323f5e
\ No newline at end of file +bd3bc05737c8b71e7681b929a1e7273b
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.png Binary files differindex 4a42bca..d587122f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/linking-a-05-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.checksum index 8e88cdd..d4c897a 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.checksum @@ -1 +1 @@ -57dab0cafcf6c7c9a4aa93aa7d536f98
\ No newline at end of file +21c0ac26ba0a759ed37a8d3a0e237b29
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png Binary files differindex 9880523..92c7483 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.checksum index 2b84cd2..e1534f2 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.checksum @@ -1 +1 @@ -cef84f9b8a252ef053f532f9612aed26
\ No newline at end of file +b3682b8f7d40f43b9e528761ab153eab
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png Binary files differindex 0f2364e..2c3a161 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.checksum index 33408c8..82f1dfa 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.checksum @@ -1 +1 @@ -a15e6783081232607f39fc36b557e593
\ No newline at end of file +b1560114cea8ee19398ff472474a6311
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.png Binary files differindex 051240f..ddd1f0a 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-03-f-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.checksum index 83fa3fd..638ec42 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.checksum @@ -1 +1 @@ -ab45f03cc200d8ab05d818743b901515
\ No newline at end of file +7751e36c1d602466fa6ec2260012936d
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.png Binary files differindex 5e76d44..2f0c88f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-05-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.checksum index d6e464f..fab282d 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.checksum @@ -1 +1 @@ -ea041899b3b1bea975b3134c56bed483
\ No newline at end of file +48c94e076b4b415cc9f277d281af0ce9
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.png Binary files differindex 3d8c7a9..f21150f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-09-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.checksum index ed719e4..e868c2a 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.checksum @@ -1 +1 @@ -116032271d71c171d3001d7c94683364
\ No newline at end of file +d1c16444abc7895b54caabd538ed81ec
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.png Binary files differindex 26bb7e1..5d8ea37 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/paths-data-12-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.checksum index 3dbb4ff..59d5f08 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.checksum @@ -1 +1 @@ -8e6935dc621d6f7d356aa5db67efb1af
\ No newline at end of file +f5ce3eba4c2a48c41f91f3918ddb652a
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png Binary files differindex 3d43c2d..bb163a7 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.checksum index 9fdaaee..1c7a5921b 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.checksum @@ -1 +1 @@ -b82f920f9856272611c9feb6098b1217
\ No newline at end of file +ea2efa900ce1f5b0a52f67670d043f2e
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png Binary files differindex 827aaf5..6b3e2c3 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.checksum index f1829fd..2bb7230 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.checksum @@ -1 +1 @@ -c6a1297993acaa862c9b7e9a941e399f
\ No newline at end of file +7d34294be47ef1393d76bde8823cafa6
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.png Binary files differindex 7d52288..3010984 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt index 4efe0a8..ee6077e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt @@ -7,12 +7,12 @@ layer at (0,0) size 480x360 RenderSVGText {text} at (180,40) size 93x34 contains 1 chunk(s) RenderSVGInlineText {#text} at (0,-27) size 93x34 chunk 1 text run 1 at (180.00,40.00) startOffset 0 endOffset 9 width 93.00: "Text fill" - RenderSVGContainer {g} at (60,71) size 352x247 - RenderSVGText {text} at (60,280) size 152x247 contains 1 chunk(s) - RenderSVGInlineText {#text} at (0,-209) size 152x247 + RenderSVGContainer {g} at (60,70) size 352x248 + RenderSVGText {text} at (60,280) size 152x248 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-210) size 152x248 chunk 1 text run 1 at (60.00,280.00) startOffset 0 endOffset 1 width 151.50: "A" - RenderSVGText {text} at (260,280) size 152x247 contains 1 chunk(s) - RenderSVGInlineText {#text} at (0,-209) size 152x247 + RenderSVGText {text} at (260,280) size 152x248 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-210) size 152x248 chunk 1 text run 1 at (260.00,280.00) startOffset 0 endOffset 1 width 151.50: "A" RenderSVGText {text} at (10,340) size 261x46 contains 1 chunk(s) RenderSVGInlineText {#text} at (0,-36) size 261x46 diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.checksum index ef8b028..f83de12 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.checksum @@ -1 +1 @@ -3493f683af572a5aa87724d0b7a4fa46
\ No newline at end of file +518e2ca5cd6f6eeb88a9a4a2c3649dc5
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.png Binary files differindex f0cfa25..82c4c25 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt index f403844..f840c1e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt @@ -7,12 +7,12 @@ layer at (0,0) size 480x360 RenderSVGText {text} at (180,40) size 133x34 contains 1 chunk(s) RenderSVGInlineText {#text} at (0,-27) size 133x34 chunk 1 text run 1 at (180.00,40.00) startOffset 0 endOffset 11 width 133.00: "Text stroke" - RenderSVGContainer {g} at (20,31) size 445x327 - RenderSVGText {text} at (60,280) size 152x247 contains 1 chunk(s) - RenderSVGInlineText {#text} at (0,-209) size 152x247 + RenderSVGContainer {g} at (20,30) size 445x328 + RenderSVGText {text} at (60,280) size 152x248 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-210) size 152x248 chunk 1 text run 1 at (60.00,280.00) startOffset 0 endOffset 1 width 151.50: "A" - RenderSVGText {text} at (260,280) size 165x247 contains 1 chunk(s) - RenderSVGInlineText {#text} at (0,-209) size 165x247 + RenderSVGText {text} at (260,280) size 165x248 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-210) size 165x248 chunk 1 text run 1 at (260.00,280.00) startOffset 0 endOffset 1 width 165.00: "B" RenderSVGText {text} at (10,340) size 261x46 contains 1 chunk(s) RenderSVGInlineText {#text} at (0,-36) size 261x46 diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.checksum index 59180c2..0ddbf35 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.checksum @@ -1 +1 @@ -4d760152d47f1db5183a5b60138da192
\ No newline at end of file +8515e799bfa9d4ae8fd8fe2e565d2ddc
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.png Binary files differindex a9b3c84..dde5c6f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt index 4f80bdf..24129cb 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt @@ -7,12 +7,12 @@ layer at (0,0) size 480x360 RenderSVGText {text} at (120,40) size 223x34 contains 1 chunk(s) RenderSVGInlineText {#text} at (0,-27) size 223x34 chunk 1 text run 1 at (120.00,40.00) startOffset 0 endOffset 20 width 223.00: "Text fill and stroke" - RenderSVGContainer {g} at (20,31) size 445x327 - RenderSVGText {text} at (60,280) size 152x247 contains 1 chunk(s) - RenderSVGInlineText {#text} at (0,-209) size 152x247 + RenderSVGContainer {g} at (20,30) size 445x328 + RenderSVGText {text} at (60,280) size 152x248 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-210) size 152x248 chunk 1 text run 1 at (60.00,280.00) startOffset 0 endOffset 1 width 151.50: "A" - RenderSVGText {text} at (260,280) size 165x247 contains 1 chunk(s) - RenderSVGInlineText {#text} at (0,-209) size 165x247 + RenderSVGText {text} at (260,280) size 165x248 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-210) size 165x248 chunk 1 text run 1 at (260.00,280.00) startOffset 0 endOffset 1 width 165.00: "B" RenderSVGText {text} at (10,340) size 261x46 contains 1 chunk(s) RenderSVGInlineText {#text} at (0,-36) size 261x46 diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.checksum index 0792c64..824c66f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.checksum @@ -1 +1 @@ -52990821c570346236101d65e131d704
\ No newline at end of file +657340461bcfa69f751da42e08362ff0
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png Binary files differindex b27f543..5662133 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.checksum index 849b8e0..885d46c 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.checksum @@ -1 +1 @@ -27e22be652acb0d510568bd38e2a7f33
\ No newline at end of file +a3221b6c887c214968223b96721221e0
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png Binary files differindex dd33b5b..4bd24d1 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.checksum index c8699f9..04c3f10 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.checksum @@ -1 +1 @@ -f409ac855d61545d5b98bc4a3f92fae0
\ No newline at end of file +1f6f4fe51cb477fea8d5313e10e3c2d0
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.png Binary files differindex 5863070..b6ac3fa 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/W3C-SVG-1.1/struct-image-10-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.checksum index f6b96ac..3207e59 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.checksum @@ -1 +1 @@ -b614e863d813b01b5d392c8878e1201b
\ No newline at end of file +2897fa7a754acb3267de7597d37a413b
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.png Binary files differindex 1470da1..e724e7d 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath2-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.checksum index 44fdb27..3ff8f63 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.checksum @@ -1 +1 @@ -54b5782a6cc2aece9e40c66bf0c968e4
\ No newline at end of file +40aed253137a7e4136dc18bf8086b3e1
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.png Binary files differindex b4339b0..57fa614 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPath3-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.checksum index d1ad58f..1ef3667 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.checksum @@ -1 +1 @@ -46a4972e6f2a03f1e35d1bf4957ea447
\ No newline at end of file +7d4e347a1cfaa9fb8fbbfd97153ef4a4
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.png Binary files differindex 3e884dd..eba9fe2 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/batik/text/textOnPathSpaces-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.checksum index 664e170..ef46e93 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.checksum @@ -1 +1 @@ -eb8e6003e5c4d4309ac2d5a4c2fa1125
\ No newline at end of file +7d6eb76d77351d0de5c78d3737606399
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.png Binary files differindex 4ec0c0b..e4ce131 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/circular-marker-reference-2-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.checksum index 4ca4f43..34b4ddd 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.checksum @@ -1 +1 @@ -ab70878b50135bae4cae071a80e1f233
\ No newline at end of file +cff17858046dda14761c2c6c7494680e
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.png Binary files differindex f5ab6e3..83934f0 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/focus-ring-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.checksum index fb2469c..f9eda55 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.checksum @@ -1 +1 @@ -92b4ff5105676f125cf07c89f42560b4
\ No newline at end of file +638a1bfffda5b97d8de722e6fe1a506e
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.png Binary files differindex 5413c97..c2ccf8e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/inline-svg-in-xhtml-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.checksum index 89cab5f..1cb7c56 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.checksum @@ -1 +1 @@ -2178abfe58ef04804dfccbe5a10570c5
\ No newline at end of file +695a7db6c68890bf52668cd94915e889
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.png Binary files differindex 159b043..acb7f9e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-all-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.checksum index 1f268b4..e0cbd7d 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.checksum @@ -1 +1 @@ -d132f89ff830e1fc53547f4303ae71d6
\ No newline at end of file +0711dbfce0b21aa37a974e723731649c
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.png Binary files differindex 537ea7a..2342b3b 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum index 89cab5f..1cb7c56 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum @@ -1 +1 @@ -2178abfe58ef04804dfccbe5a10570c5
\ No newline at end of file +695a7db6c68890bf52668cd94915e889
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.png Binary files differindex 159b043..acb7f9e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/linking-a-03-b-viewBox-transform-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.checksum index 8e581b6..34006df 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.checksum @@ -1 +1 @@ -e42fbcb031e682b13d21cf2afb55642d
\ No newline at end of file +6cf747dda0cee082f859f1c7dfd2a17d
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.png Binary files differindex 2b09317..5df6cbf 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/non-circular-marker-reference-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.checksum index aa3f418..f4eff12 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.checksum @@ -1 +1 @@ -10b7393d266888c1574c9eeecaac9192
\ No newline at end of file +a65366491a979e87f9f2f8b1c875dc6a
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.png Binary files differindex ff930eb..db4fcc4 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/use-css-events-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.checksum index 35095a0..151e4aa1 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.checksum @@ -1 +1 @@ -cefcdccc6489fec9635749df815beace
\ No newline at end of file +fe520301c2eedc7ab7b0638e54bef7b3
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.png Binary files differindex e4296db..3fb2cc2 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/custom/width-full-percentage-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.checksum index c9dcc0c..bbc1277 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.checksum @@ -1 +1 @@ -4c34e2f1a8d3244ec95bededfb0179c6
\ No newline at end of file +59ceb06f40553000f2965e38db748bcc
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.png Binary files differindex 0e7c818..9c870a0 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-align-04-b-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.checksum index 42905e2..9fa0b60 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.checksum @@ -1 +1 @@ -e1caec79cd36ae37405bfa19a7067208
\ No newline at end of file +3b71e3b36d6e8f39dad324bc4b112335
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.png Binary files differindex 1346fec..6b0a520 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/svg/text/text-text-06-t-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.checksum index 4c44d98..5e3d904 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.checksum @@ -1 +1 @@ -1baf4fe06ae80925b50ffa2affd204bb
\ No newline at end of file +f0d87dca178cc2995d2f66c54222b602
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.png Binary files differindex 4153f2f..5736c3f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug149275-1-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.checksum index c6ab065..f673c60 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.checksum @@ -1 +1 @@ -f81fbe5bd87d1ca1636c4812e2f32d2a
\ No newline at end of file +3d6867cbce49eb2e2feeaf8139226bde
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.png Binary files differindex 6ae75b6..b7c9d0f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug22019-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.checksum index ca91270..3de6e38 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.checksum @@ -1 +1 @@ -fca1d045b7e7a3e4b78b9c1582172f36
\ No newline at end of file +af9eff84e2ce8270370ef2ac36437960
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.png Binary files differindex de06ed6..d788277 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2947-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.checksum index 54f8d4d..f3bf2c8 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.checksum @@ -1 +1 @@ -9c82d2f3fe1f80f7f5cb53b406daf98b
\ No newline at end of file +f17df401314790bfe5679974fb9e7692
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.png Binary files differindex b384f47..fef667b8 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug2981-2-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.checksum index 8f5aa7b..959739a 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.checksum @@ -1 +1 @@ -c87eccaa36f32844b739798150d7ba23
\ No newline at end of file +2e50947e29e74ecfffe1013cd619603a
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.png Binary files differindex 8f76651..b02b466 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/bugs/bug4284-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum index e5335cf..62bbd06 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum @@ -1 +1 @@ -ddadddc47a3f60775ed9e56210d6240b
\ No newline at end of file +d37798a8a4e155d9fb5d76f95695238a
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.png Binary files differindex 1fb690c..0c0a6ad 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/core/col_widths_auto_autoFix-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum index f2b5774..4b1b7cb 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum @@ -1 +1 @@ -a1612a22d3800979149389636993cc92
\ No newline at end of file +f0f88dbfa16b2ae5e75a0aa842976228
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.png Binary files differindex f3bf7a1..c5e95202 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_layers-opacity-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.checksum index 148d025..2e53597 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.checksum @@ -1 +1 @@ -accbde9f9413f5f4ede0459c3ac848b8
\ No newline at end of file +0e432806931e10256ca893ec06fc5754
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.png Binary files differindex d0fe926..b14e467 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_position-table-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum index 97a95c2..fd19a15 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum @@ -1 +1 @@ -b63690cee117d6e4bfe77ea6fde5722c
\ No newline at end of file +205b319869a7877c5c33b0eea59a274a
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.png Binary files differindex 6b50a58..19d2c0e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-cell-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum index b2b70e6..df3c13c 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum @@ -1 +1 @@ -7c85b8932bcf28ed07defa08a33506ce
\ No newline at end of file +eb688dc7c4a155c5adda88bf5b4e96a3
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.png Binary files differindex 7b611b7..fe628d1 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum index 25b1c10..d82cae1 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum @@ -1 +1 @@ -bdfbd800a9fb8cc95fedbf1556fed938
\ No newline at end of file +b8048bff04f92b7b85eaa97bf82fff43
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png Binary files differindex 4d755c6..a2e4fa7 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.checksum index ca4a3ac..ec7fcb00 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.checksum @@ -1 +1 @@ -69b1ee63f89df1b7124e3aa73b72d6d2
\ No newline at end of file +82ed40db019416283a2821260217f763
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.png Binary files differindex 0fd7302..c15610c 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum index 29d73f3..4f563d0 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum @@ -1 +1 @@ -a0fddb7324aaef4a2b32a82d5926a5f3
\ No newline at end of file +952d5969a165a400d772a0da480bd253
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.png Binary files differindex 988d8cf..16e7453 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum index 6f5f910..30331ba 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum @@ -1 +1 @@ -31c2e6fc11821b58cbcf4eae46c69252
\ No newline at end of file +de755d6acca423c536f1f0dabb2563c0
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png Binary files differindex 2dd3b90..9294b19 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.checksum index 6ee9bc0..4976adf 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.checksum @@ -1 +1 @@ -1f99de405c1e7fedfae118ee60b985ff
\ No newline at end of file +d9a881ecbdcc985e39ea949d2547f836
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.png Binary files differindex df1850b..9aa1bcc 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla/other/cell_widths-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum index c6a553c..3c6ef2d 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum @@ -1 +1 @@ -1226348fffb506984d1b0088e155bb8f
\ No newline at end of file +23b8ebe5b542e1d1a817288998e8492d
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png Binary files differindex 804c7da..d890815 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum index e122979..f58f1dc 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum @@ -1 +1 @@ -0eb980e99b9295dbdd2ed87d1b01e58d
\ No newline at end of file +b759947921dc246c9b6366e9653ddae3
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png Binary files differindex c67b5af..c7fa2a8 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum index 5a22bdf..6d61262 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum @@ -1 +1 @@ -6c5a9a41b86a3c28271d5dde3a508f20
\ No newline at end of file +2d88520efccc7a5d8b08a49dcc159fbc
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png Binary files differindex 5ccce74..57dcf00 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum index d6fe53e..9536594 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum @@ -1 +1 @@ -15d441c41a6b158473a49e7b070bc294
\ No newline at end of file +720a6f8e740ce066717bb958d16682e5
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png Binary files differindex 7f57402..47c3eb7 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum index 8ce3db6..b62ed20 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum @@ -1 +1 @@ -525f270c5aba7e317d16eefdf7fa829b
\ No newline at end of file +f77e34168e5830790e703e5152ec0d34
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png Binary files differindex 2e9abfb..83977b7 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum index 2f91448..4e7c34e 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum @@ -1 +1 @@ -5f08d650417a073844832637ee1cfdb5
\ No newline at end of file +fef29c0c64c4c798d01ea76af7e9cdaa
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png Binary files differindex 0e0b1c1..5efd386 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum index e7dd9b8..d49eefb 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum @@ -1 +1 @@ -897da1ac21d995fbc1823b665ef3f8dd
\ No newline at end of file +008a48b4039f00fdf63a3bd1075fea85
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png Binary files differindex 9d94c0c..3ef3353 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum index b2e3988..fae845f 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum @@ -1 +1 @@ -7bb0802fe4c9716b3930476b93872ed4
\ No newline at end of file +af9da8c3565c2cd495f9015e05c72ce9
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png Binary files differindex c2d4f89..63a4f97 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum index 801bddc..5c0f8ef 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum @@ -1 +1 @@ -920019c1c23190ae143f9b03a81dc3d9
\ No newline at end of file +567449e975936537db1caa58c6ba6ca8
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png Binary files differindex 461870e..2a05650 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum index c7d7e18..8ec89f4 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum @@ -1 +1 @@ -73fb57c512a51f4dd4ed18ab6dc4e41b
\ No newline at end of file +ec00c43b08a777c155ac0dcb79193132
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png Binary files differindex 6fb7b12..061e6ec 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.checksum index a11e059..3fd9868 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.checksum +++ b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.checksum @@ -1 +1 @@ -40794d1a96d4be392683f4dbbcf07898
\ No newline at end of file +78e28a52407239254a01f22ab205165d
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.png Binary files differindex a9be80b..a678e65 100644 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.png +++ b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.png |