[prev in list] [next in list] [prev in thread] [next in thread] 

List:       webkit-changes
Subject:    [webkit-changes] [109012] branches/chromium/963
From:       rniwa () webkit ! org
Date:       2012-02-27 19:58:09
Message-ID: 20120227195811.A8064578D6FF () lists ! macosforge ! org
[Download RAW message or body]


--Boundary_(ID_IW2WxUDKrfD0a0CN/asYDg)
Content-type: text/html; charset=UTF-8
Content-transfer-encoding: quoted-printable

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[109012] branches/chromium/963</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: \
verdana,arial,helvetica,sans-serif; font-size: 10pt;  } #msg dl a { font-weight: \
bold} #msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: \
bold; } #msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: \
6px; } #logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em \
0; } #logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg \
h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; } \
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; \
} #logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: \
-1.5em; padding-left: 1.5em; } #logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em \
1em 0 1em; background: white;} #logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid \
#fa0; border-bottom: 1px solid #fa0; background: #fff; } #logmsg table th { \
text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted \
#fa0; } #logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: \
0.2em 0.5em; } #logmsg table thead th { text-align: center; border-bottom: 1px solid \
#fa0; } #logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: \
6px; } #patch { width: 100%; }
#patch h4 {font-family: \
verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
 #patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, \
#patch .copfile {border:1px solid #ccc;margin:10px 0;} #patch ins \
{background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del \
{background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, \
                .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a \
href="http://trac.webkit.org/projects/webkit/changeset/109012">109012</a></dd> \
<dt>Author</dt> <dd>rniwa@webkit.org</dd> <dt>Date</dt> <dd>2012-02-27 11:58:09 -0800 \
(Mon, 27 Feb 2012)</dd> </dl>

<h3>Log Message</h3>
<pre>REGRESSION(<a href="http://trac.webkit.org/projects/webkit/changeset/99076">r99076</a>): \
WebKit pastes the trailing newline into a single-line text field \
https://bugs.webkit.org/show_bug.cgi?id=79305

Reviewed by Tony Chang.

  LayoutTests: 

Add a regression test. Also make Markup.dump() dump the shadow DOM of the specififed \
node.

* editing/input/paste-text-ending-with-interchange-newline-expected.txt: Added.
* editing/input/paste-text-ending-with-interchange-newline.html: Added.
* resources/dump-as-markup.js:
(Markup._get):
(Markup._getShadowHostIfPossible):

  Source/WebCore: 

The bug was caused by ReplacementFragment::m_hasInterchangeNewlineAtEnd not reset \
even when text field's beforeTextInserted event handler removed interchange new lines \
at the end. Because the event handler is responsible for trimming new lines, we need \
to recompute the values for m_hasInterchangeNewlineAt* after the event dispatch.

Test: editing/input/paste-text-ending-with-interchange-newline.html

* editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplacementFragment::ReplacementFragment):
Merge 108668 - REGRESSION(<a \
href="http://trac.webkit.org/projects/webkit/changeset/99076">r99076</a>): WebKit \
pastes the trailing newline into a single-line text field \
https://bugs.webkit.org/show_bug.cgi?id=79305

Reviewed by Tony Chang.

Source/WebCore: 

The bug was caused by ReplacementFragment::m_hasInterchangeNewlineAtEnd not reset \
even when text field's beforeTextInserted event handler removed interchange new lines \
at the end. Because the event handler is responsible for trimming new lines, we need \
to recompute the values for m_hasInterchangeNewlineAt* after the event dispatch.

Test: editing/input/paste-text-ending-with-interchange-newline.html

* editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplacementFragment::ReplacementFragment):

LayoutTests: 

Add a regression test. Also make Markup.dump() dump the shadow DOM of the specififed \
node.

* editing/input/paste-text-ending-with-interchange-newline-expected.txt: Added.
* editing/input/paste-text-ending-with-interchange-newline.html: Added.
* resources/dump-as-markup.js:
(Markup._get):
(Markup._getShadowHostIfPossible):


TBR=rniwa@webkit.org
Review URL: https://chromiumcodereview.appspot.com/9477008</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#brancheschromium963LayoutTestsChangeLog">branches/chromium/963/LayoutTests/ChangeLog</a></li>
 <li><a href="#brancheschromium963LayoutTestsresourcesdumpasmarkupjs">branches/chromium/963/LayoutTests/resources/dump-as-markup.js</a></li>
 <li><a href="#brancheschromium963SourceWebCoreChangeLog">branches/chromium/963/Source/WebCore/ChangeLog</a></li>
 <li><a href="#brancheschromium963SourceWebCoreeditingReplaceSelectionCommandcpp">branches/chromium/963/Source/WebCore/editing/ReplaceSelectionCommand.cpp</a></li>
 </ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#brancheschromium963LayoutTestseditinginputpastetextendingwithinterchange \
newlineexpectedtxt">branches/chromium/963/LayoutTests/editing/input/paste-text-ending-with-interchange-newline-expected.txt</a></li>
 <li><a href="#brancheschromium963LayoutTestseditinginputpastetextendingwithinterchang \
enewlinehtml">branches/chromium/963/LayoutTests/editing/input/paste-text-ending-with-interchange-newline.html</a></li>
 </ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="brancheschromium963LayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: branches/chromium/963/LayoutTests/ChangeLog \
(109011 => 109012)</h4> <pre class="diff"><span>
<span class="info">--- branches/chromium/963/LayoutTests/ChangeLog	2012-02-27 \
                19:48:09 UTC (rev 109011)
+++ branches/chromium/963/LayoutTests/ChangeLog	2012-02-27 19:58:09 UTC (rev 109012)
</span><span class="lines">@@ -1,3 +1,22915 @@
</span><ins>+2012-02-22  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        REGRESSION(r99076): WebKit pastes the trailing newline into a single-line \
text field +        https://bugs.webkit.org/show_bug.cgi?id=79305
+
+        Reviewed by Tony Chang.
+
+        Add a regression test. Also make Markup.dump() dump the shadow DOM of the \
specififed node. +
+        * editing/input/paste-text-ending-with-interchange-newline-expected.txt: \
Added. +        * editing/input/paste-text-ending-with-interchange-newline.html: \
Added. +        * resources/dump-as-markup.js:
+        (Markup._get):
+        (Markup._getShadowHostIfPossible):
+
+2012-02-23  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/Skipped: Skip a failing test.
+
+2012-02-23  Tom Sepez  &lt;tsepez@chromium.org&gt;
+
+        [chromium] XSS Auditor bypass via javascript url and control characters
+        https://bugs.webkit.org/show_bug.cgi?id=79154
+
+        Reviewed by Adam Barth.
+
+        * http/tests/security/xssAuditor/javascript-link-control-char2-expected.txt: \
Added. +        * http/tests/security/xssAuditor/javascript-link-control-char2.html: \
Added. +        * platform/chromium/http/tests/security/xssAuditor: Added.
+        * platform/chromium/http/tests/security/xssAuditor/javascript-link-control-char2-expected.txt: \
Added. +
+2012-02-23  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Object.isSealed / Object.isFrozen don't work for native objects
+        https://bugs.webkit.org/show_bug.cgi?id=79331
+
+        Reviewed by Sam Weinig.
+
+        Need to inspect all properties, including static ones.
+        This exposes a couple of bugs in Array &amp; Arguments:
+            - getOwnPropertyDescriptor doesn't correctly report the writable \
attribute of array length. +            - Arguments object's defineOwnProperty does \
not handle callee/caller/length correctly. +
+        * fast/js/preventExtensions-expected.txt:
+        * fast/js/script-tests/preventExtensions.js:
+            - Added tests.
+
+2012-02-23  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        pop of array hole should get from the prototype chain
+        https://bugs.webkit.org/show_bug.cgi?id=79338
+
+        Reviewed by Sam Weinig.
+
+        * sputnik/Conformance/15_Native_Objects/15.4_Array/15.4.4/15.4.4.6_Array_prototype_pop/S15.4.4.6_A4_T1-expected.txt:
 +            - Checking passing test result.
+
+2012-02-23  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/Skipped:
+        * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png:
 +        * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt:
 +
+2012-02-23  Simon Hausmann  &lt;simon.hausmann@nokia.com&gt;
+
+        [Qt] Add support for touch cancellation
+        https://bugs.webkit.org/show_bug.cgi?id=79348
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Moved touch cancel event layout tests from general skip list to the
+        Qt 4 specific one. The Qt 5 version we depend on has QEvent::TouchCancel, \
which +        is all we need in order to implement touch cancellation in DRT/WTR.
+
+        * platform/qt-4.8/Skipped:
+        * platform/qt/Skipped:
+
+2012-02-23  ChangSeok Oh  &lt;shivamidow@gmail.com&gt;
+
+        [GTK] DRT doesn't support scheduleAsynchronousKeyDown.
+        https://bugs.webkit.org/show_bug.cgi?id=78481
+
+        Reviewed by Gustavo Noronha Silva.
+
+        Removed following skipped tests.
+        fast/mutation/end-of-task-delivery.html
+        fast/mutation/inline-event-listener.html
+
+        * platform/gtk/Skipped:
+
+2012-02-23  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r108577.
+        http://trac.webkit.org/changeset/108577
+        https://bugs.webkit.org/show_bug.cgi?id=79359
+
+        It doesn't work as expected (Requested by Ossy on #webkit).
+
+        * platform/qt/Skipped:
+
+2012-02-23  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        [Chromium] Unreviewed test expectations update for \
fast/css/font-face-default-font.html +
+        * platform/chromium-linux/fast/css/font-face-default-font-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/fast/css/font-face-default-font-expected.png: \
Removed. +        * platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.txt: \
Removed. +        * platform/chromium-win/fast/css/font-face-default-font-expected.png:
 +        * platform/chromium-win/fast/css/font-face-default-font-expected.txt:
+
+2012-02-23  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/Skipped:
+        * platform/qt/fast/multicol/span/clone-flexbox-expected.png: Added.
+        * platform/qt/fast/multicol/span/clone-flexbox-expected.txt: Added.
+        * platform/qt/fast/multicol/span/clone-summary-expected.png: Added.
+        * platform/qt/fast/multicol/span/clone-summary-expected.txt: Added.
+        * platform/qt/svg/custom/circle-move-invalidation-expected.png:
+        * platform/qt/svg/custom/circle-move-invalidation-expected.txt:
+        * platform/qt/svg/repaint/inner-svg-change-viewPort-relative-expected.png: \
Added. +        * platform/qt/svg/repaint/inner-svg-change-viewPort-relative-expected.txt: \
Added. +        * platform/qt/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
 +        * platform/qt/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt:
+
+2012-02-22  Dan Bernstein  &lt;mitz@apple.com&gt;
+
+        Skipped a test that uses Chromium-only LayoutTestController functionality.
+
+        Rubber-stamped by Joseph Pecoraro.
+
+        * platform/mac/Skipped: Added \
fast/dom/title-directionality-removeChild.html. +
+2012-02-22  Dmitry Lomov  &lt;dslomov@google.com&gt;
+
+        [Chromium][V8] Support Uint8ClampedArray in postMessage
+        https://bugs.webkit.org/show_bug.cgi?id=79291.
+
+        Reviewed by Kenneth Russell.
+
+        * platform/chromium/fast/canvas/webgl/array-message-passing-expected.txt: \
Removed. +
+2012-02-22  Kent Tamura  &lt;tkent@chromium.org&gt;
+
+        Move &lt;input type=radio&gt; tests to fast/forms/radio/
+        https://bugs.webkit.org/show_bug.cgi?id=78678
+
+        Reviewed by Kentaro Hara.
+
+        * fast/forms/ValidityState-valueMissing-radio-expected.txt: Removed.
+        * fast/forms/ValidityState-valueMissing-radio.html: Removed.
+        * fast/forms/indeterminate-radio-expected.txt: Removed.
+        * fast/forms/indeterminate-radio.html: Removed.
+        * fast/forms/input-radio-checked-tab-expected.txt: Removed.
+        * fast/forms/input-radio-checked-tab.html: Removed.
+        * fast/forms/interactive-validation-required-radio-expected.txt: Removed.
+        * fast/forms/interactive-validation-required-radio.html: Removed.
+        * fast/forms/radio-attr-order-expected.txt: Removed.
+        * fast/forms/radio-attr-order.html: Removed.
+        * fast/forms/radio-button-no-change-event-expected.txt: Removed.
+        * fast/forms/radio-button-no-change-event.html: Removed.
+        * fast/forms/radio-check-click-and-drag-expected.txt: Removed.
+        * fast/forms/radio-check-click-and-drag.html: Removed.
+        * fast/forms/radio-default-value-expected.txt: Removed.
+        * fast/forms/radio-default-value.html: Removed.
+        * fast/forms/radio-group-keyboard-change-event-expected.txt: Removed.
+        * fast/forms/radio-group-keyboard-change-event.html: Removed.
+        * fast/forms/radio-nested-labels-expected.txt: Removed.
+        * fast/forms/radio-nested-labels.html: Removed.
+        * fast/forms/radio-no-theme-padding-expected.txt: Removed.
+        * fast/forms/radio-no-theme-padding.html: Removed.
+        * fast/forms/radio-remove-form-attr-expected.txt: Removed.
+        * fast/forms/radio-remove-form-attr.html: Removed.
+        * fast/forms/radio/ValidityState-valueMissing-radio-expected.txt: Copied \
from LayoutTests/fast/forms/ValidityState-valueMissing-radio-expected.txt. +        * \
fast/forms/radio/ValidityState-valueMissing-radio.html: Copied from \
LayoutTests/fast/forms/ValidityState-valueMissing-radio.html. +        * \
fast/forms/radio/indeterminate-radio-expected.txt: Copied from \
LayoutTests/fast/forms/indeterminate-radio-expected.txt. +        * \
fast/forms/radio/indeterminate-radio.html: Copied from \
LayoutTests/fast/forms/indeterminate-radio.html. +        * \
fast/forms/radio/input-radio-checked-tab-expected.txt: Copied from \
LayoutTests/fast/forms/input-radio-checked-tab-expected.txt. +        * \
fast/forms/radio/input-radio-checked-tab.html: Copied from \
LayoutTests/fast/forms/input-radio-checked-tab.html. +        * \
fast/forms/radio/interactive-validation-required-radio-expected.txt: Copied from \
LayoutTests/fast/forms/interactive-validation-required-radio-expected.txt. +        * \
fast/forms/radio/interactive-validation-required-radio.html: Copied from \
LayoutTests/fast/forms/interactive-validation-required-radio.html. +        * \
fast/forms/radio/radio-attr-order-expected.txt: Copied from \
LayoutTests/fast/forms/radio-attr-order-expected.txt. +        * \
fast/forms/radio/radio-attr-order.html: Copied from \
LayoutTests/fast/forms/radio-attr-order.html. +        * \
fast/forms/radio/radio-button-no-change-event-expected.txt: Copied from \
LayoutTests/fast/forms/radio-button-no-change-event-expected.txt. +        * \
fast/forms/radio/radio-button-no-change-event.html: Copied from \
LayoutTests/fast/forms/radio-button-no-change-event.html. +        * \
fast/forms/radio/radio-check-click-and-drag-expected.txt: Copied from \
LayoutTests/fast/forms/radio-check-click-and-drag-expected.txt. +        * \
fast/forms/radio/radio-check-click-and-drag.html: Copied from \
LayoutTests/fast/forms/radio-check-click-and-drag.html. +        * \
fast/forms/radio/radio-default-value-expected.txt: Copied from \
LayoutTests/fast/forms/radio-default-value-expected.txt. +        * \
fast/forms/radio/radio-default-value.html: Copied from \
LayoutTests/fast/forms/radio-default-value.html. +        * \
fast/forms/radio/radio-group-keyboard-change-event-expected.txt: Copied from \
LayoutTests/fast/forms/radio-group-keyboard-change-event-expected.txt. +        * \
fast/forms/radio/radio-group-keyboard-change-event.html: Copied from \
LayoutTests/fast/forms/radio-group-keyboard-change-event.html. +        * \
fast/forms/radio/radio-nested-labels-expected.txt: Copied from \
LayoutTests/fast/forms/radio-nested-labels-expected.txt. +        * \
fast/forms/radio/radio-nested-labels.html: Copied from \
LayoutTests/fast/forms/radio-nested-labels.html. +        * \
fast/forms/radio/radio-no-theme-padding-expected.txt: Copied from \
LayoutTests/fast/forms/radio-no-theme-padding-expected.txt. +        * \
fast/forms/radio/radio-no-theme-padding.html: Copied from \
LayoutTests/fast/forms/radio-no-theme-padding.html. +        * \
fast/forms/radio/radio-remove-form-attr-expected.txt: Copied from \
LayoutTests/fast/forms/radio-remove-form-attr-expected.txt. +        * \
fast/forms/radio/radio-remove-form-attr.html: Copied from \
LayoutTests/fast/forms/radio-remove-form-attr.html. +        * \
fast/forms/radio/radio_checked-expected.txt: Copied from \
LayoutTests/fast/forms/radio_checked-expected.txt. +        * \
fast/forms/radio/radio_checked.html: Copied from \
LayoutTests/fast/forms/radio_checked.html. +        * \
fast/forms/radio/radio_checked_dynamic-expected.txt: Copied from \
LayoutTests/fast/forms/radio_checked_dynamic-expected.txt. +        * \
fast/forms/radio/radio_checked_dynamic.html: Copied from \
LayoutTests/fast/forms/radio_checked_dynamic.html. +        * \
fast/forms/radio/radio_checked_name-expected.txt: Copied from \
LayoutTests/fast/forms/radio_checked_name-expected.txt. +        * \
fast/forms/radio/radio_checked_name.html: Copied from \
LayoutTests/fast/forms/radio_checked_name.html. +        * \
fast/forms/radio/remove-radio-button-assert-expected.txt: Copied from \
LayoutTests/fast/forms/remove-radio-button-assert-expected.txt. +        * \
fast/forms/radio/remove-radio-button-assert.html: Copied from \
LayoutTests/fast/forms/remove-radio-button-assert.html. +        * \
fast/forms/radio/state-restore-radio-group-expected.txt: Copied from \
LayoutTests/fast/forms/state-restore-radio-group-expected.txt. +        * \
fast/forms/radio/state-restore-radio-group.html: Copied from \
LayoutTests/fast/forms/state-restore-radio-group.html. +        * \
fast/forms/radio_checked-expected.txt: Removed. +        * \
fast/forms/radio_checked.html: Removed. +        * \
fast/forms/radio_checked_dynamic-expected.txt: Removed. +        * \
fast/forms/radio_checked_dynamic.html: Removed. +        * \
fast/forms/radio_checked_name-expected.txt: Removed. +        * \
fast/forms/radio_checked_name.html: Removed. +        * \
fast/forms/remove-radio-button-assert-expected.txt: Removed. +        * \
fast/forms/remove-radio-button-assert.html: Removed. +        * \
fast/forms/state-restore-radio-group-expected.txt: Removed. +        * \
fast/forms/state-restore-radio-group.html: Removed. +
+2012-02-22  Dan Bernstein  &lt;mitz@apple.com&gt;
+
+        Updated expected test results for the addition of -webkit-line-align \
(r108133) and the +        renaming of -webkit-line-grid-snap (r107289).
+
+        Rubber-stamped by Andy Estes.
+
+        * platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +
+2012-02-22  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        REGRESSION (r107516): fast/css/font-face-default-font.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=79260
+
+        Add @font-face with &quot;font-style: italic;&quot; so that affecting the \
rule +        for italic text.
+
+        Reviewed by Dan Bernstein.
+
+        * fast/css/font-face-default-font.html:
+
+2012-02-22  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        Unreviewed, rolling out r108602.
+        http://trac.webkit.org/changeset/108602
+        https://bugs.webkit.org/show_bug.cgi?id=78878
+
+        Caused a couple of layout test failures on Chromium bots.
+
+        * fast/dom/shadow/shadow-on-image-expected.html: Removed.
+        * fast/dom/shadow/shadow-on-image.html: Removed.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash in RenderBlock::addChildIgnoringAnonymousColumnBlocks.
+        https://bugs.webkit.org/show_bug.cgi?id=79043
+
+        Reviewed by Julien Chaffraix.
+
+        * fast/runin/runin-div-before-child-expected.png: Added.
+        * fast/runin/runin-div-before-child-expected.txt: Added.
+        * fast/runin/runin-div-before-child.html: Added.
+        * fast/runin/runin-table-before-child-expected.png: Added.
+        * fast/runin/runin-table-before-child-expected.txt: Added.
+        * fast/runin/runin-table-before-child.html: Added.
+
+2012-02-22  Wei James  &lt;james.wei@intel.com&gt;
+
+        Add multi channels support in AudioBus and AudioBufferSourceNode
+        https://bugs.webkit.org/show_bug.cgi?id=79017
+
+        Reviewed by Chris Rogers.
+
+        * webaudio/resources/audio-testing.js:
+        (writeAudioBuffer):
+        * webaudio/resources/mix-testing.js: Added.
+        (createToneBuffer):
+        * webaudio/up-mixing-mono-51-expected.wav: Added.
+        * webaudio/up-mixing-mono-51.html: Added.
+        * webaudio/up-mixing-mono-stereo-expected.wav: Added.
+        * webaudio/up-mixing-mono-stereo.html: Added.
+        * webaudio/up-mixing-stereo-51-expected.wav: Added.
+        * webaudio/up-mixing-stereo-51.html: Added.
+
+2012-02-22  MORITA Hajime  &lt;morrita@google.com&gt;
+
+        Adding a ShadowRoot to image-backed element causes a crash
+        https://bugs.webkit.org/show_bug.cgi?id=78878
+
+        Reviewed by Dimitri Glazkov.
+
+        * fast/dom/shadow/shadow-on-image-expected.html: Added.
+        * fast/dom/shadow/shadow-on-image.html: Added.
+
+2012-02-22  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        [Chromium] Unreviewed gardening. Two inspector tests are timing out on Mac \
Debug. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Pablo Flouret  &lt;pablof@motorola.com&gt;
+
+        PopStateEvent.state should use the same object as history.state
+        https://bugs.webkit.org/show_bug.cgi?id=77493
+
+        Reviewed by Kentaro Hara.
+
+        * fast/loader/stateobjects/state-attribute-history-getter-expected.txt: \
Added. +        * fast/loader/stateobjects/state-attribute-history-getter.html: \
Added. +        * fast/loader/stateobjects/state-attribute-only-one-deserialization-expected.txt:
 +        * fast/loader/stateobjects/state-attribute-only-one-deserialization.html:
+        * fast/loader/stateobjects/state-attribute-popstate-event-expected.txt: \
Added. +        * fast/loader/stateobjects/state-attribute-popstate-event.html: \
Added. +
+2012-02-22  Dmitry Lomov  &lt;dslomov@google.com&gt;
+
+        [JSC] Implement ArrayBuffer and typed array cloning in JSC
+        https://bugs.webkit.org/show_bug.cgi?id=79294
+
+        Reviewed by Oliver Hunt.
+
+        * fast/canvas/webgl/array-message-passing-expected.txt: Updated expectation \
after cloning implemented. +        * \
fast/canvas/webgl/script-tests/array-message-passing.js: Added Uint8ClampedArray +    \
* platform/chromium/fast/canvas/webgl/array-message-passing-expected.txt: Updated \
expectations. Fixing covered by https://bugs.webkit.org/show_bug.cgi?id=79291 +
+2012-02-22  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        exponentialRampToValue doesn't use starting value
+        https://bugs.webkit.org/show_bug.cgi?id=78035
+
+        Reviewed by Chris Rogers.
+
+        * webaudio/audioparam-exponentialRampToValueAtTime-expected.txt: Added.
+        * webaudio/audioparam-exponentialRampToValueAtTime.html: Added.
+        * webaudio/resources/audioparam-testing.js: Added.
+        (createConstantBuffer):
+        (createExponentialRampArray):
+        (comparePartialSignals):
+        (verifyDiscontinuities):
+        (compareSignals):
+        (doAutomation):
+
+2012-02-22  Adrienne Walker  &lt;enne@google.com&gt;
+
+        [chromium] Unreviewed gardening. Rebaseline more svg tests.
+
+        This test was also broken after r108559. It times out on all platforms
+        but windows, so only rebaselining windows.
+
+        * platform/chromium-win/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png:
 +        * platform/chromium-win/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt:
 +
+2012-02-22  Adrienne Walker  &lt;enne@google.com&gt;
+
+        [chromium] Unreviewed gardening. Rebaseline zoom-replaced-intrinsic-ratio
+
+        This was broken after r108559 and the result looks reasonable given
+        the description of the change, so rebaselining.
+
+        * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
 +        * platform/chromium-mac-leopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: \
Copied from LayoutTests/platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt.
 +        * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
 +        * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt:
 +
+2012-02-22  Dirk Pranke  &lt;dpranke@chromium.org&gt;
+
+        fast/files/create-blob-url-crash.html is no longer flaky.
+        https://bugs.webkit.org/show_bug.cgi?id=60125
+
+        Unreviewed, expectations change.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Implement [[DefineOwnProperty]] for the arguments object
+        https://bugs.webkit.org/show_bug.cgi?id=79309
+
+        Reviewed by Sam Weinig.
+
+        * fast/js/arguments-expected.txt:
+        * fast/js/script-tests/arguments.js:
+            - Added test cases
+
+2012-02-22  Adrienne Walker  &lt;enne@google.com&gt;
+
+        [chromium] Unreviewed gardening. Update expectations after skia roll.
+
+        It is most likely that the Skia roll from 3216 to 3226 slightly
+        changed image expectations for the following tests. None of these are
+        perceptually any different, so just rebaselining.
+
+        * platform/chromium-linux/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
 +        * platform/chromium-linux/fast/borders/border-image-rotate-transform-expected.png:
 +        * platform/chromium-linux/svg/custom/focus-ring-expected.png:
+        * platform/chromium-linux/svg/transforms/animated-path-inside-transformed-html-expected.png:
 +        * platform/chromium-mac-leopard/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/focus-ring-expected.png:
+        * platform/chromium-mac-leopard/svg/transforms/animated-path-inside-transformed-html-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/borders/border-image-rotate-transform-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/focus-ring-expected.png:
+        * platform/chromium-mac-snowleopard/svg/transforms/animated-path-inside-transformed-html-expected.png:
 +        * platform/chromium-win/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
 +        * platform/chromium-win/fast/borders/border-image-rotate-transform-expected.png:
 +        * platform/chromium-win/svg/custom/focus-ring-expected.png:
+        * platform/chromium-win/svg/transforms/animated-path-inside-transformed-html-expected.png:
 +
+2012-02-22  Allan Sandfeld Jensen  &lt;allan.jensen@nokia.com&gt;
+
+        [Qt] Add eventSender.gestureTap
+        https://bugs.webkit.org/show_bug.cgi?id=66173
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Unskip gestureTap test.
+        
+        * platform/qt/Skipped:
+
+2012-02-22  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        Test Range header compliance for CachedResources.
+        https://bugs.webkit.org/show_bug.cgi?id=76564
+
+        Reviewed by Adam Barth.
+
+        * http/tests/xmlhttprequest/range-test-expected.txt: Added.
+        * http/tests/xmlhttprequest/range-test.html: Added.
+
+2012-02-22  Adrienne Walker  &lt;enne@google.com&gt;
+
+        [chromium] Unreviewed gardening. Generalize svg failures from r108494.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Antti Koivisto  &lt;antti@apple.com&gt;
+
+        REGRESSION (r104060): Web font is not loaded if specified by link element \
dynamically inserted +        https://bugs.webkit.org/show_bug.cgi?id=79186
+
+        Reviewed by Andreas Kling.
+
+        * fast/css/font-face-insert-link-expected.txt: Added.
+        * fast/css/font-face-insert-link.html: Added.
+        * fast/css/resources/ahem.css: Added.
+        (@font-face):
+
+2012-02-22  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        inspector/debugger/script-formatter-console.html should
+        no longer be flaky.
+        https://bugs.webkit.org/show_bug.cgi?id=78810
+
+        Reviewed by Adam Barth.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Fix Object.freeze for non-final objects.
+        https://bugs.webkit.org/show_bug.cgi?id=79286
+
+        Reviewed by Oliver Hunt.
+
+        For vanilla objects we implement this with a single transition, for objects
+        with special properties we should just follow the spec defined algorithm.
+
+        * fast/js/preventExtensions-expected.txt:
+        * fast/js/script-tests/preventExtensions.js:
+            - added new tests.
+
+2012-02-22  Max Vujovic  &lt;mvujovic@adobe.com&gt;
+
+        Paddings and borders on root SVG element with viewbox causes child SVG \
elements to be rendered with the incorrect size +        \
https://bugs.webkit.org/show_bug.cgi?id=78613 +
+        Reviewed by Nikolas Zimmermann.
+
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/svg/custom/circle-move-invalidation-expected.png:
+        * platform/mac/svg/custom/circle-move-invalidation-expected.txt:
+
+            This test contains a circle drawn inside a root SVG element with a 1px \
border. This bug +            was causing WebKit to render the circle 1px too large, \
reflected in the expectations. +            The expectations have been updated.
+
+        * svg/custom/svg-root-padding-border-margin-expected.html: Added.
+        * svg/custom/svg-root-padding-border-margin.html: Added.
+
+2012-02-22  Tom Sepez  &lt;tsepez@chromium.org&gt;
+
+        XSSAuditor bypass with &lt;svg&gt; tags and html-entities.
+        https://bugs.webkit.org/show_bug.cgi?id=78836
+
+        Reviewed by Adam Barth.
+
+        * http/tests/security/xssAuditor/iframe-onload-in-svg-tag-expected.txt: \
Added. +        * http/tests/security/xssAuditor/iframe-onload-in-svg-tag.html: \
Added. +        * http/tests/security/xssAuditor/script-tag-inside-svg-tag-expected.txt: \
Added. +        * http/tests/security/xssAuditor/script-tag-inside-svg-tag.html: \
Added. +        * http/tests/security/xssAuditor/script-tag-inside-svg-tag2-expected.txt: \
Added. +        * http/tests/security/xssAuditor/script-tag-inside-svg-tag2.html: \
Added. +        * http/tests/security/xssAuditor/script-tag-inside-svg-tag3-expected.txt: \
Added. +        * http/tests/security/xssAuditor/script-tag-inside-svg-tag3.html: \
Added. +
+2012-02-22  Ken Buchanan  &lt;kenrb@chromium.org&gt;
+
+        Crash from empty anonymous block preceding :before content
+        https://bugs.webkit.org/show_bug.cgi?id=78250
+
+        Reviewed by David Hyatt.
+
+        Test exercises a crashing condition from extra :before content being
+        created after a RenderListMarker in an anonymous block has been moved.
+
+        Also rebasing some tests that had extraneous anonymous blocks in their
+        render tree dumps.
+
+        * fast/css-generated-content/before-content-with-list-marker-in-anon-block-crash-expected.txt: \
Added +        * fast/css-generated-content/before-content-with-list-marker-in-anon-block-crash.html: \
Added +        * platform/chromium-win/editing/execCommand/create-list-with-hr-expected.txt:
 +        * platform/gtk/editing/execCommand/create-list-with-hr-expected.txt:
+        * platform/mac/editing/execCommand/create-list-with-hr-expected.txt:
+        * platform/qt/editing/execCommand/create-list-with-hr-expected.txt:
+
+2012-02-22  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash due to accessing removed parent lineboxes when clearing view \
selection. +        https://bugs.webkit.org/show_bug.cgi?id=79264
+ 
+        Reviewed by Eric Seidel.
+
+        * fast/css-generated-content/first-letter-textbox-parent-crash-expected.txt: \
Added. +        * fast/css-generated-content/first-letter-textbox-parent-crash.html: \
Added. +
+2012-02-22  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Cloning and linebox issues in multi-column layout.
+        https://bugs.webkit.org/show_bug.cgi?id=78273
+
+        Reviewed by Eric Seidel.
+
+        * fast/multicol/span/clone-flexbox-expected.png:
+        * fast/multicol/span/clone-flexbox-expected.txt: Added.
+        * fast/multicol/span/clone-flexbox.html: Added. Test passes if we
+        see two RenderFlexibox in the rendertree.
+        * fast/multicol/span/clone-summary-expected.png: Added.
+        * fast/multicol/span/clone-summary-expected.txt: Added.
+        * fast/multicol/span/clone-summary.html: Added. Test passes if we
+        see two RenderSummary in the rendertree.
+        * fast/multicol/span/textbox-not-removed-crash-expected.txt: Added.
+        * fast/multicol/span/textbox-not-removed-crash.html: Added. Test
+        passes it we do not crash on m_hasBadParent assert in InlineBox.
+
+2012-02-22  Adrienne Walker  &lt;enne@google.com&gt;
+
+        [chromium] Unreviewed gardening. Rebaseline svg expectations after r108493.
+
+        Blindly updating expected to actual on Chromium. They only started
+        failing after the base expectations were updated and don't have any
+        perceptual differences.
+
+        * platform/chromium-mac-snowleopard/svg/foreignObject/clip-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/foreignObject/filter-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/foreignObject/mask-expected.png: \
Added. +        * platform/chromium-win/svg/custom/visited-link-color-expected.png: \
Added. +        * platform/chromium-win/svg/foreignObject/clip-expected.png: Added.
+        * platform/chromium-win/svg/foreignObject/filter-expected.png: Added.
+        * platform/chromium-win/svg/foreignObject/mask-expected.png: Added.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Bear Travis  &lt;betravis@adobe.com&gt;
+
+        Not correctly recalculating layout for elements within nested SVG elements
+        https://bugs.webkit.org/show_bug.cgi?id=77535
+
+        Reviewed by Dirk Schulze.
+
+        Adding a repaint test for a relatively sized inner svg and inner svg content \
when  +        its width/height changes.
+
+        * platform/chromium/test_expectations.txt:
+        * svg/repaint/inner-svg-change-viewPort-relative-expected.png: Added.
+        * svg/repaint/inner-svg-change-viewPort-relative-expected.txt: Added.
+        * svg/repaint/inner-svg-change-viewPort-relative.svg: Added.
+
+2012-02-22  Alexei Svitkine  &lt;asvitkine@chromium.org&gt;
+
+        [chromium] Fix remaining compositing/rubberbanding test failures
+        https://bugs.webkit.org/show_bug.cgi?id=78008
+
+        These were happening due to the fact that ScrollView wasn't updating
+        the overhang layer when the contentsSize was updated. This is necessary
+        because calculateOverhangAreasForPainting() takes the contentsSize into
+        account when determining whether the overhang areas are visible.
+
+        Reviewed by James Robinson.
+
+        Re-enabled the following tests with updated baselines:
+        * platform/chromium/compositing/rubberbanding/transform-overhang-e-expected.png:
 +        * platform/chromium/compositing/rubberbanding/transform-overhang-s-expected.png:
 +        * platform/chromium/compositing/rubberbanding/transform-overhang-se-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Dan Bernstein  &lt;mitz@apple.com&gt;
+
+        REGRESSION (r62632): page-break-inside: avoid is ignored
+        https://bugs.webkit.org/show_bug.cgi?id=79262
+
+        Reviewed by Adele Peterson.
+
+        * printing/page-break-inside-avoid-expected.txt:
+
+2012-02-22  Adrienne Walker  &lt;enne@google.com&gt;
+
+        [chromium] Unreviewed gardening. Mark some XHR tests as asserting.
+        https://bugs.webkit.org/show_bug.cgi?id=79229
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Adrienne Walker  &lt;enne@google.com&gt;
+
+        [chromium] Unreviewed gardening. Marking svg failures from r108494.
+        https://bugs.webkit.org/show_bug.cgi?id=41386
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: console doesn't show properly arrays from which tail values \
have been deleted +        https://bugs.webkit.org/show_bug.cgi?id=79242
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/console/console-format-expected.txt:
+        * inspector/console/console-format.html:
+        * platform/chromium/inspector/console/console-format-collections-expected.txt:
 +        * platform/chromium/inspector/console/console-format-expected.txt:
+
+2012-02-22  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: [REGRESSION] Console xhr logging is broken for async xhrs \
since r107672. +        https://bugs.webkit.org/show_bug.cgi?id=79229
+
+        Reviewed by Pavel Feldman.
+
+        * http/tests/inspector/console-xhr-logging-async-expected.txt: Added.
+        * http/tests/inspector/console-xhr-logging-async.html: Added.
+
+2012-02-22  Mihnea Ovidenie  &lt;mihnea@adobe.com&gt;
+
+        [Qt] REGRESSION(r108108): It made 3 fast/repaint tests fail
+        https://bugs.webkit.org/show_bug.cgi?id=78960
+
+        Reviewed by Csaba Osztrogonác.
+
+        * fast/repaint/japanese-rl-selection-repaint-in-regions.html:
+        * fast/repaint/line-flow-with-floats-in-regions.html:
+        * fast/repaint/overflow-flipped-writing-mode-block-in-regions.html:
+        * fast/repaint/region-painting-invalidation.html:
+        * fast/repaint/region-painting-via-layout.html:
+        * platform/qt/Skipped:
+
+2012-02-22  Eric Carlson  &lt;eric.carlson@apple.com&gt;
+
+        [Chromium] video-referer.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=79239
+
+        Unreviewed, skipping a test that started to fail after r108387.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, skipping one more mediastream failure on GTK.
+
+        * platform/gtk/Skipped:
+
+2012-02-22  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: retrieving content for some XHR requests crashes inspected \
page renderer +        https://bugs.webkit.org/show_bug.cgi?id=79026
+
+        Reviewed by Pavel Feldman.
+
+        * http/tests/inspector/network/network-cyrillic-xhr-expected.txt: Added.
+        * http/tests/inspector/network/network-cyrillic-xhr.html: Added.
+        * http/tests/inspector/network/network-empty-xhr-expected.txt: Added.
+        * http/tests/inspector/network/network-empty-xhr.html: Added.
+        * http/tests/inspector/network/resources/cyrillic.html: Added.
+        * http/tests/inspector/network/resources/empty.html: Added.
+
+2012-02-21  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: [InspectorIndexedDB] Show IndexedDB views on selection \
IndexedDB elements in resources panel. +        \
https://bugs.webkit.org/show_bug.cgi?id=79098 +
+        Reviewed by Pavel Feldman.
+
+        * http/tests/inspector/indexeddb/database-data.html:
+
+2012-02-22  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        REGRESSION(58212): html foreignObjects with positions other than static not \
hidden correctly when parent has display:none +        \
https://bugs.webkit.org/show_bug.cgi?id=41386 +
+        Reviewed by Zoltan Herczeg.
+
+        Add new tests covering &lt;foreignObject&gt; content inside a &lt;g \
display=&quot;none&quot;&gt;. +
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/svg/foreignObject/fO-display-none-expected.png: Added.
+        * platform/mac/svg/foreignObject/fO-display-none-expected.txt: Added.
+        * platform/mac/svg/foreignObject/fO-display-none-with-relative-pos-content-expected.png: \
Added. +        * platform/mac/svg/foreignObject/fO-display-none-with-relative-pos-content-expected.txt: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-display-changes-expected.png: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-display-changes-expected.txt: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-display-none-expected.png: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-display-none-expected.txt: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-display-none-with-relative-pos-content-expected.png: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-display-none-with-relative-pos-content-expected.txt: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-of-parent-display-none-expected.png: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-of-parent-display-none-expected.txt: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-of-parent-display-none-with-relative-pos-content-expected.png: \
Added. +        * platform/mac/svg/foreignObject/fO-parent-of-parent-display-none-with-relative-pos-content-expected.txt: \
Added. +        * svg/foreignObject/fO-display-none-with-relative-pos-content.svg: \
Added. +        * svg/foreignObject/fO-display-none.svg: Added.
+        * svg/foreignObject/fO-parent-display-changes.svg: Added.
+        * svg/foreignObject/fO-parent-display-none-with-relative-pos-content.svg: \
Added. +        * svg/foreignObject/fO-parent-display-none.svg: Added.
+        * svg/foreignObject/fO-parent-of-parent-display-none-with-relative-pos-content.svg: \
Added. +        * svg/foreignObject/fO-parent-of-parent-display-none.svg: Added.
+
+2012-02-22  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Fix SVG pixel test results, which now show up as hash \
failures, since DRT was fixed to report these. +
+        * platform/mac/svg/W3C-SVG-1.1/coords-units-03-b-expected.png:
+        * platform/mac/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png:
+        * platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
+        * platform/mac/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.png:
+        * platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png:
+        * platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png:
+        * platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png:
+        * platform/mac/svg/W3C-SVG-1.1/text-text-04-t-expected.png:
+        * platform/mac/svg/as-border-image/svg-as-border-image-expected.png:
+        * platform/mac/svg/clip-path/clip-in-mask-expected.png:
+        * platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.png:
 +        * platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.png:
 +        * platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.png:
 +        * platform/mac/svg/custom/circular-marker-reference-2-expected.png:
+        * platform/mac/svg/custom/glyph-selection-arabic-forms-expected.png:
+        * platform/mac/svg/custom/glyph-selection-bidi-mirror-expected.png:
+        * platform/mac/svg/custom/glyph-selection-non-bmp-expected.png:
+        * platform/mac/svg/custom/gradient-rotated-bbox-expected.png:
+        * platform/mac/svg/custom/gradient-userSpaceOnUse-with-percentage-expected.png:
 +        * platform/mac/svg/custom/marker-opacity-expected.png:
+        * platform/mac/svg/custom/non-circular-marker-reference-expected.png:
+        * platform/mac/svg/dom/SVGLocatable-getCTM-svg-root-expected.png:
+        * platform/mac/svg/hixie/error/017-expected.png:
+        * platform/mac/svg/text/text-align-05-b-expected.png:
+        * platform/mac/svg/text/text-path-01-b-expected.png:
+        * platform/mac/svg/text/text-text-01-b-expected.png:
+        * platform/mac/svg/text/text-text-07-t-expected.png:
+        * platform/mac/svg/text/text-tselect-02-f-expected.png:
+        * svg/as-image/svg-non-integer-scaled-image-expected.png:
+        * svg/custom/visited-link-color-expected.png:
+        * svg/custom/zero-path-square-cap-rendering2-expected.png:
+        * svg/foreignObject/clip-expected.png:
+        * svg/foreignObject/filter-expected.png:
+        * svg/foreignObject/mask-expected.png:
+
+2012-02-17  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        REGRESSION: unbalanced transparency layers for clipPath
+        https://bugs.webkit.org/show_bug.cgi?id=78074
+
+        Reviewed by Zoltan Herczeg.
+
+        * svg/clip-path/opacity-assertion-expected.svg: Added.
+        * svg/clip-path/opacity-assertion.svg: Added.
+
+2012-02-21  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: do not filter out requestAnimationFrame from timeline, \
implement stop on animation events. +        \
https://bugs.webkit.org/show_bug.cgi?id=79116 +
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/timeline/timeline-animation-frame-expected.txt:
+        * inspector/timeline/timeline-animation-frame.html:
+        * inspector/timeline/timeline-enum-stability-expected.txt:
+        * platform/chromium/inspector/timeline/timeline-animation-frame-expected.txt:
 +
+2012-02-22  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        [Chromium] Unreviewed, regular maintenance of test expectations.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-22  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, skip a new failing test.
+
+        * platform/qt/Skipped:
+
+2012-02-22  Shinya Kawanaka  &lt;shinyak@chromium.org&gt;
+
+        firstRendererOf() should also return a fallback element renderer in \
NodeRenderingContext. +        https://bugs.webkit.org/show_bug.cgi?id=79180
+
+        Reviewed by Hajime Morita.
+
+        Added new test cases, e.g. &lt;content&gt; in &lt;content&gt;, with \
display:none. +
+        * fast/dom/shadow/shadow-contents-fallback-dynamic-expected.txt:
+        * fast/dom/shadow/shadow-contents-fallback-dynamic.html:
+        * fast/dom/shadow/shadow-contents-fallback-expected.txt:
+        * fast/dom/shadow/shadow-contents-fallback.html:
+
+2012-02-22  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r108468.
+        http://trac.webkit.org/changeset/108468
+        https://bugs.webkit.org/show_bug.cgi?id=79219
+
+        Broke Chromium Win release build (Requested by bashi on
+        #webkit).
+
+        * http/tests/websocket/tests/hybi/compressed-control-frame-expected.txt: \
Removed. +        * http/tests/websocket/tests/hybi/compressed-control-frame.html: \
Removed. +        * http/tests/websocket/tests/hybi/compressed-control-frame_wsh.py: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame-comp-bit-onoff-expected.txt: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame-comp-bit-onoff.html: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter-expected.txt: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter.html: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter_wsh.py: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame-parameter-expected.txt: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame-parameter.html: \
Removed. +        * http/tests/websocket/tests/hybi/deflate-frame_wsh.py: Removed.
+        * http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header-expected.txt:
 +        * http/tests/websocket/tests/hybi/send-file-blob_wsh.py:
+        (web_socket_transfer_data):
+
+2012-02-22  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK gardening, unskip 2 tests that should pass now.
+
+        * platform/gtk/Skipped:
+
+2012-02-21  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: Audit rules to recommend unprefixing supported CSS properties
+        https://bugs.webkit.org/show_bug.cgi?id=78985
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/audits/audits-panel-functional-expected.txt:
+        * inspector/audits/audits-panel-functional.html:
+
+2012-02-22  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Adding WebSocket per-frame DEFLATE extension
+        https://bugs.webkit.org/show_bug.cgi?id=77522
+
+        Added tests for WebSocket deflate-frame extension. Also updated some
+        tests to follow the change.
+
+        Reviewed by Kent Tamura.
+
+        * http/tests/websocket/tests/hybi/compressed-control-frame-expected.txt: \
Added. +        * http/tests/websocket/tests/hybi/compressed-control-frame.html: \
Added. +        * http/tests/websocket/tests/hybi/compressed-control-frame_wsh.py: \
Added. +        (web_socket_do_extra_handshake):
+        (web_socket_transfer_data):
+        * http/tests/websocket/tests/hybi/deflate-frame-comp-bit-onoff-expected.txt: \
Added. +        * http/tests/websocket/tests/hybi/deflate-frame-comp-bit-onoff.html: \
Added. +        * http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter-expected.txt: \
Added. +        * http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter.html: \
Added. +        * http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter_wsh.py: \
Added. +        (web_socket_do_extra_handshake):
+        (web_socket_transfer_data):
+        * http/tests/websocket/tests/hybi/deflate-frame-parameter-expected.txt: \
Added. +        * http/tests/websocket/tests/hybi/deflate-frame-parameter.html: \
Added. +        * http/tests/websocket/tests/hybi/deflate-frame_wsh.py: Added.
+        (_get_deflate_frame_extension_processor):
+        (web_socket_do_extra_handshake):
+        (web_socket_transfer_data):
+        * http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header-expected.txt:
 +        * http/tests/websocket/tests/hybi/send-file-blob_wsh.py:
+        (_retrieve_frame):
+        (web_socket_transfer_data):
+
+2012-02-22  Yanbin Zhang  &lt;yanbin.zhang@intel.com&gt;
+
+        [GTK] fast/mediastream/peerconnection-argument-types.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=79096
+
+        Reviewed by Adam Barth.
+
+        * fast/mediastream/peerconnection-argument-types-expected.txt:
+        * fast/mediastream/script-tests/argument-types.js:
+
+2012-02-22  Carlos Garcia Campos  &lt;cgarcia@igalia.com&gt;
+
+        Unreviewed, rolling out r107351.
+        http://trac.webkit.org/changeset/107351
+        https://bugs.webkit.org/show_bug.cgi?id=53600
+
+        Several issues introduced in WebKitGTK+ API
+
+        * platform/gtk/Skipped:
+
+2012-02-22  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK gardening.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/forms/float-before-fieldset-expected.txt:
+
+2012-02-21  Max Vujovic  &lt;mvujovic@adobe.com&gt;
+
+        getCTM() on SVG root element with borders, paddings, and viewbox returns \
incorrect values +        https://bugs.webkit.org/show_bug.cgi?id=78631
+
+        Reviewed by Eric Seidel.
+
+        * platform/chromium/test_expectations.txt
+        * platform/mac/svg/dom/SVGLocatable-getCTM-svg-root-expected.png
+        * svg/dom/SVGLocatable-getCTM-svg-root-expected.txt: Added.
+        * svg/dom/SVGLocatable-getCTM-svg-root.html: Added.
+
+2012-02-21  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Rename &quot;reserved1&quot; flag of WebSocketFrame to compress
+        https://bugs.webkit.org/show_bug.cgi?id=79187
+
+        Reviewed by Kent Tamura.
+
+        * http/tests/websocket/tests/hybi/reserved-bits-expected.txt: Revised to \
follow the change in meaning rsv1 bit. +        * \
http/tests/websocket/tests/hybi/reserved-bits.html: Ditto. +
+2012-02-21  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Should be able to reconfigure a non-configurable property as read-only
+        https://bugs.webkit.org/show_bug.cgi?id=79170
+
+        Reviewed by Sam Weinig.
+
+        See ES5.1 8.12.9 10.a.i - the spec prohibits making a read-only property \
writable, +        but does not inhibit making a writable property read-only.
+
+        * fast/js/Object-defineProperty-expected.txt:
+        * fast/js/script-tests/Object-defineProperty.js:
+            - Update test result (this was enforcing incorrect behaviour).
+
+2012-02-21  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Setting innerText causes DOMSubtreeModified to be dispatched too early
+        https://bugs.webkit.org/show_bug.cgi?id=79140
+
+        Reviewed by Ryosuke Niwa.
+
+        * fast/dom/getElementById-consistency3-expected.txt: Added.
+        * fast/dom/getElementById-consistency3.html: Added.
+        * fast/dom/getElementById-consistency4-expected.txt: Added.
+        * fast/dom/getElementById-consistency4.html: Added.
+        * fast/dom/getElementById-consistency5-expected.txt: Added.
+        * fast/dom/getElementById-consistency5.html: Added.
+
+2012-02-15  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Assertion failure in TextIterator::handleTextBox
+        https://bugs.webkit.org/show_bug.cgi?id=78530
+
+        Reviewed by Enrica Casucci.
+
+        Add a regression test. Also rebaseline a crash test.
+
+        * editing/text-iterator/rtl-first-letter-text-iterator-crash-expected.txt: \
Added. +        * editing/text-iterator/rtl-first-letter-text-iterator-crash.html: \
Added. +        * editing/text-iterator/rtl-selection-crash-expected.txt:
+
+2012-02-21  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        ContainerNode::childrenChanged must be called immediately after removing \
children +        https://bugs.webkit.org/show_bug.cgi?id=79162
+
+        Reviewed by Ryosuke Niwa.
+
+        * fast/dom/title-directionality-removeChild-expected.txt: Added.
+        * fast/dom/title-directionality-removeChild.html: Added.
+
+2012-02-21  Tom Sepez  &lt;tsepez@chromium.org&gt;
+
+        equalIgnoringNullity() only comparing half the bytes for equality
+        https://bugs.webkit.org/show_bug.cgi?id=79135
+
+        Reviewed by Adam Barth.
+
+        * http/tests/security/xssAuditor/script-tag.html:
+
+2012-02-21  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Update chromium expectations for accessibility/aria-invalid.html
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-21  Victor Carbune  &lt;vcarbune@adobe.com&gt;
+
+        Added relevant tests and functionality for supporting pause-on-exit
+        flag for a TextTrackCue.
+
+        https://bugs.webkit.org/show_bug.cgi?id=72173
+
+        Reviewed by Eric Carlson.
+
+        * media/track/captions-webvtt/simple-captions.vtt: Added.
+        * media/track/track-cues-pause-on-exit-expected.txt: Added.
+        * media/track/track-cues-pause-on-exit.html: Added.
+
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening. Typo fix.
+
+        * platform/qt-5.0-wk2/http/tests/websocket/tests/hybi/bad-sub-protocol-non-ascii-expected.txt: \
Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/websocket/test/hybi/bad-sub-protocol-non-ascii-expected.txt.
 +
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed evening gardening after r108364.
+
+        * platform/qt/fast/forms/float-before-fieldset-expected.png: Added.
+        * platform/qt/fast/forms/float-before-fieldset-expected.txt: Updated.
+
+2012-02-21  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [chromium] Enable compositor filter layout tests (except on mac and win \
debug) +        https://bugs.webkit.org/show_bug.cgi?id=79111
+
+        Reviewed by Stephen White.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-21  Eric Carlson  &lt;eric.carlson@apple.com&gt;
+
+        Set Referrer header for media downloads
+        https://bugs.webkit.org/show_bug.cgi?id=78614
+
+        Reviewed by Alexey Proskuryakov.
+
+        * http/tests/media/resources/video-referer-check-referer.php: Get the test \
file and content-type +            from parameters on the url. Fail if referrer is \
anything but video-referer.html. Add support for +            byte-range requests so \
it will work with AVFoundation. +        * http/tests/media/video-referer.html: Pass \
video file name and content-type as url parameters +            instead of having \
another cgi set a cookie. Set the php script as the 'src' on a &lt;source&gt; element \
 +            instead of on the &lt;video&gt; element so we can also add a 'type' \
attribute.  +
+2012-02-21  Chris Fleizach  &lt;cfleizach@apple.com&gt;
+
+        AX: move aria-invalid test to top level, so other platforms can use it
+        https://bugs.webkit.org/show_bug.cgi?id=79041
+
+        Unreviewed. Forgot to update paths.
+
+        * accessibility/aria-invalid.html:
+
+2012-02-21  Chris Fleizach  &lt;cfleizach@apple.com&gt;
+
+        AX: move aria-invalid test to top level, so other platforms can use it
+        https://bugs.webkit.org/show_bug.cgi?id=79041
+
+        Reviewed by David Kilzer.
+
+        * accessibility/aria-invalid-expected.txt: Copied from \
LayoutTests/platform/mac/accessibility/aria-invalid-expected.txt. +        * \
accessibility/aria-invalid.html: Copied from \
LayoutTests/platform/mac/accessibility/aria-invalid.html. +        * \
platform/gtk/Skipped: +        * \
platform/mac/accessibility/aria-invalid-expected.txt: Removed. +        * \
platform/mac/accessibility/aria-invalid.html: Removed. +        * \
platform/win/Skipped: +
+2012-02-21  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash in RenderTableSection::nodeAtPoint.
+        https://bugs.webkit.org/show_bug.cgi?id=78922
+
+        Reviewed by Julien Chaffraix.
+
+        * fast/table/table-section-node-at-point-crash-expected.txt: Added.
+        * fast/table/table-section-node-at-point-crash.html: Added.
+
+2012-02-21  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed, update chromium leopard baselines for r108364
+
+        * platform/chromium-mac-leopard/fast/block/float/centered-float-avoidance-complexity-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/block/float/shrink-to-avoid-float-complexity-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/forms/float-before-fieldset-expected.png:
 +
+2012-02-21  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed, update chromium baselines for r108364
+
+        * platform/chromium-linux/fast/block/float/centered-float-avoidance-complexity-expected.png: \
Added. +        * platform/chromium-linux/fast/block/float/shrink-to-avoid-float-complexity-expected.png: \
Added. +        * platform/chromium-linux/fast/forms/float-before-fieldset-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/block/float/centered-float-avoidance-complexity-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/block/float/shrink-to-avoid-float-complexity-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/forms/float-before-fieldset-expected.png: \
Added. +        * platform/chromium-mac/fast/forms/float-before-fieldset-expected.png: \
Removed. +        * platform/chromium-win/fast/block/float/centered-float-avoidance-complexity-expected.png: \
Added. +        * platform/chromium-win/fast/block/float/centered-float-avoidance-complexity-expected.txt: \
Added. +        * platform/chromium-win/fast/block/float/shrink-to-avoid-float-complexity-expected.png: \
Added. +        * platform/chromium-win/fast/block/float/shrink-to-avoid-float-complexity-expected.txt: \
Added. +        * platform/chromium-win/fast/forms/float-before-fieldset-expected.png:
 +        * platform/chromium-win/fast/forms/float-before-fieldset-expected.txt:
+
+2012-02-21  Andreas Kling  &lt;awesomekling@apple.com&gt;
+
+        Kill FontFamilyValue.
+        &lt;http://webkit.org/b/79103&gt;
+
+        Reviewed by Antti Koivisto.
+
+        * fast/css/font-family-trailing-bracket-gunk-expected.txt: Added.
+        * fast/css/font-family-trailing-bracket-gunk.html: Added.
+
+2012-02-20  David Hyatt  &lt;hyatt@apple.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=79046
+        
+        width of overflow:hidden blocks is wrong when their margins overlap floats.
+
+        Added new tests from www-style thread: \
http://lists.w3.org/Archives/Public/www-style/2012Feb/0954.html +
+        Reviewed by Dan Bernstein.
+
+        * fast/block/float/centered-float-avoidance-complexity.html: Added.
+        * fast/block/float/shrink-to-avoid-float-complexity.html: Added.
+        * platform/mac/fast/block/float/centered-float-avoidance-complexity-expected.png: \
Added. +        * platform/mac/fast/block/float/centered-float-avoidance-complexity-expected.txt: \
Added. +        * platform/mac/fast/block/float/shrink-to-avoid-float-complexity-expected.png: \
Added. +        * platform/mac/fast/block/float/shrink-to-avoid-float-complexity-expected.txt: \
Added. +
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, add platform specific expected file after \
r107689. +
+        * platform/qt-5.0-wk2/http/tests/websocket/test/hybi/bad-sub-protocol-non-ascii-expected.txt: \
Added. +
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt]REGRESSION(r92254): It made 2 tests timeout
+        https://bugs.webkit.org/show_bug.cgi?id=65609
+
+        * platform/qt/Skipped: Unskip now passing tests.
+
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, skip new failing and crashing test to paint the \
bot green. +
+        * platform/qt-mac/Skipped:
+
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, unskip now passing tests.
+
+        * platform/qt-4.8/Skipped:
+        * platform/qt-5.0-wk2/Skipped:
+        * platform/wk2/Skipped:
+
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] 3 SVG tests assert after r107207
+        https://bugs.webkit.org/show_bug.cgi?id=78332
+
+        * platform/qt/Skipped: Skip 3 more asserting test.
+
+2012-02-21  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] REGRESSION(r108112): \
sputnik/Conformance/15_Native_Objects/15.1_The_Global_Object/15.1.3/15.1.3.2_decodeURIComponent/S15.1.3.2_A1.2_T2.html \
crashes intermittently +        https://bugs.webkit.org/show_bug.cgi?id=79029
+
+        * platform/qt/Skipped: Skip new crashing test.
+
+2012-02-21  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, skip new failing mediastream test on GTK.
+
+        * platform/gtk/Skipped:
+
+2012-02-17  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        [GStreamer] media/W3C failures
+        https://bugs.webkit.org/show_bug.cgi?id=75078
+
+        Reviewed by Martin Robinson.
+
+        Unskip now passing tests and add GTK baselines for them.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_codecs_order_1-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_1-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_two_implies_one_1-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_two_implies_one_2-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_two_implies_one_5-expected.txt: \
Added. +        * platform/gtk/media/W3C/video/canPlayType/canPlayType_two_implies_one_6-expected.txt: \
Added. +
+2012-02-21  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        [Chromium] Unreviewed, update test expectations to reflect recent flakiness.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-21  Martin Robinson  &lt;mrobinson@igalia.com&gt;
+
+        Rebaseline a test for GTK+.
+
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt: New baseline.
+
+2012-02-21  Martin Robinson  &lt;mrobinson@igalia.com&gt;
+
+        Skip some test that are failing after r108278.
+
+        * platform/gtk/Skipped: Skip a few tests.
+
+2012-02-20  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Invalid cast in WebCore::toElement / \
WebCore::HTMLElementStack::ElementRecord::element +        \
https://bugs.webkit.org/show_bug.cgi?id=78975 +
+        Reviewed by Eric Seidel.
+
+        * html5lib/resourcesl/webkit-02.dat:
+
+2012-02-20  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening after r108259.
+
+        * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: Updated.
+
+2012-02-20  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        [[Put]] should throw if prototype chain contains a readonly property.
+        https://bugs.webkit.org/show_bug.cgi?id=79069
+
+        Reviewed by Oliver Hunt.
+
+        Currently we only check the base of the put, not the prototype chain.
+        Fold this check in with the test for accessors.
+
+        * fast/js/Object-defineProperty-expected.txt:
+        * fast/js/script-tests/Object-defineProperty.js:
+        (get shouldBeTrue):
+            - Added test case.
+
+2012-02-20  Yanbin Zhang  &lt;yanbin.zhang@intel.com&gt;
+
+         There is no complete test cases of optional arguments for MediaStream API \
and PeerConnection +         https://bugs.webkit.org/show_bug.cgi?id=78578
+
+         Reviewed by Adam Barth.
+
+         * fast/mediastream/peerconnection-AttributesMethod-expected.txt: Added.
+         * fast/mediastream/peerconnection-AttributesMethod.html: Added.
+         * fast/mediastream/peerconnection-addstream-expected.txt:
+         * fast/mediastream/peerconnection-argument-types-expected.txt: Added.
+         * fast/mediastream/peerconnection-argument-types.html: Added.
+         * fast/mediastream/peerconnection-removestream-expected.txt: Added.
+         * fast/mediastream/peerconnection-removestream.html: Added.
+         * fast/mediastream/script-tests/AttributesMethod.js: Added.
+         * fast/mediastream/script-tests/argument-types.js: Added.
+         * fast/mediastream/script-tests/peerconnection-addstream.js:
+         * fast/mediastream/script-tests/peerconnection-removestream.js: Added.
+
+2012-02-20  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        [Chromium] Unreviewed, update test expectations.
+
+        * platform/chromium/fast/dom/Window/window-custom-prototype-expected.txt:
+        * platform/chromium/fast/js/string-capitalization-expected.txt:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-20  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        DefineOwnProperty fails with numeric properties &amp; Object.prototype
+        https://bugs.webkit.org/show_bug.cgi?id=79059
+
+        Reviewed by Oliver Hunt.
+
+        ObjectPrototype caches whether it contains any numeric properties \
(m_hasNoPropertiesWithUInt32Names), +        calls to defineOwnProperty need to \
update this cache. +
+        * fast/js/Object-defineProperty-expected.txt:
+        * fast/js/script-tests/Object-defineProperty.js:
+        (shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldThrow.Object.defineProperty):
 +
+2012-02-20  Martin Robinson  &lt;mrobinson@igalia.com&gt;
+
+        [UNIX] Plugin information fields are not interpreted as UTF-8
+        https://bugs.webkit.org/show_bug.cgi?id=78635
+
+        Reviewed by Gustavo Noronha Silva.
+
+        Update expectations to match the fact that TestNetscapePlugin is now
+        returning a Unicode character in the description field.
+
+        * platform/chromium-linux/plugins/plugin-javascript-access-expected.txt:
+        * platform/gtk/plugins/plugin-javascript-access-expected.txt:
+        * platform/qt/plugins/plugin-javascript-access-expected.txt:
+
+2012-02-20  Kihong Kwon  &lt;kihong.kwon@samsung.com&gt;
+
+        Add a new test case for the Vibration API.
+        https://bugs.webkit.org/show_bug.cgi?id=72010
+
+        Reviewed by Hajime Morita.
+
+        * fast/dom/navigator-vibration-expected.txt: Added.
+        * fast/dom/navigator-vibration.html: Added.
+        * platform/chromium/test_expectations.txt:
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * platform/wincairo/Skipped:
+
+2012-02-20  David Barton  &lt;dbarton@mathscribe.com&gt;
+
+        RenderMathMLRow::baselinePosition() only if linePositionMode == \
PositionOnContainingLine +        https://bugs.webkit.org/show_bug.cgi?id=79039
+
+        Reviewed by Eric Seidel.
+
+        * platform/mac/mathml/presentation/fenced-expected.png:
+        * platform/mac/mathml/presentation/fenced-expected.txt:
+        * platform/mac/mathml/presentation/mo-expected.png:
+        * platform/mac/mathml/presentation/mo-expected.txt:
+        * platform/mac/mathml/presentation/mo-stretch-expected.png: Added property \
svn:mime-type. +        * platform/mac/mathml/presentation/mo-stretch-expected.txt:
+        * platform/mac/mathml/presentation/row-expected.png:
+        * platform/mac/mathml/presentation/row-expected.txt:
+
+2012-02-16  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Move special __proto__ property to Object.prototype
+        https://bugs.webkit.org/show_bug.cgi?id=78409
+
+        Reviewed by Oliver Hunt.
+
+        Re-implement this as a regular accessor property.  This has three key \
benefits: +        1) It makes it possible for objects to be given properties named \
__proto__. +        2) Object.prototype.__proto__ can be deleted, preventing object \
prototypes from being changed. +        3) This largely removes the magic used the \
implement __proto__, it can just be made a regular accessor property. +
+        * fast/js/Object-getOwnPropertyNames-expected.txt:
+        * fast/js/cyclic-prototypes-expected.txt:
+        * fast/js/parser-syntax-check-expected.txt:
+        * fast/js/preventExtensions-expected.txt:
+        * fast/js/prototypes-expected.txt:
+            - Update results
+        * fast/js/script-tests/Object-getOwnPropertyNames.js:
+            - __proto__ is now a property of Object Prototype.
+        * fast/js/script-tests/cyclic-prototypes.js:
+            - setting an object's prototype to null removes __proto__ setter, future \
usage won't set prototype. +        * fast/js/script-tests/parser-syntax-check.js:
+            - Allow functions named __proto__
+        * fast/js/script-tests/preventExtensions.js:
+            - Setting __proto__ should not throw.
+        * fast/js/script-tests/prototypes.js:
+            - Objects may contained own properties named __proto__, add new test \
cases. +
+2012-02-20  Benjamin Poulain  &lt;benjamin@webkit.org&gt;
+
+        Make JSCSSStyleDeclaration work directly with CSS Property ID
+        https://bugs.webkit.org/show_bug.cgi?id=79014
+
+        Reviewed by Geoffrey Garen.
+
+        * fast/dom/CSSStyleDeclaration/access-longest-css-property-expected.txt: \
Added. +        * fast/dom/CSSStyleDeclaration/access-longest-css-property.html: \
Added. +
+2012-02-20  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Unreviewed gardening after r108226.
+        Skip tests because ENABLE(SHADOW_DOM) is disabled on these platforms.
+
+        * platform/efl/Skipped:
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * platform/wincairo/Skipped:
+        * platform/wk2/Skipped:
+
+2012-02-20  Michael Saboff  &lt;msaboff@apple.com&gt;
+
+        Update toLower and toUpper tests for Unicode 6.1 changes
+        https://bugs.webkit.org/show_bug.cgi?id=78923
+
+        Reviewed by Oliver Hunt.
+
+
+        * fast/js/script-tests/string-capitalization.js: Updated the test
+        to handle a new set of characters that have different results depending
+        on what version of Unicode the platform supports.  The tests work 
+        for Unicode 5.0 through 6.1.
+        (createExpected):
+        * fast/js/string-capitalization-expected.txt:
+
+2012-02-20  David Barton  &lt;dbarton@mathscribe.com&gt;
+
+        MathML internals - remove nonOperatorHeight(), hasBase()
+        https://bugs.webkit.org/show_bug.cgi?id=78977
+
+        Reviewed by Eric Seidel.
+        
+        More tests with multiple embellished stretchy and non-stretchy operators \
will be added +        later, when code is added to more precisely handle such cases.
+
+        * mathml/presentation/mo-stretch.html: Added.
+        * platform/mac/mathml/presentation/mo-stretch-expected.png: Added.
+        * platform/mac/mathml/presentation/mo-stretch-expected.txt: Added.
+
+2012-02-20  Victor Carbune  &lt;victor@rosedu.org&gt;
+
+        &lt;track&gt;-related events cuechange, enter, and exit should be sorted and \
filtered before dispatching +        https://bugs.webkit.org/show_bug.cgi?id=72171
+
+        Reviewed by Eric Carlson.
+
+        * media/track/captions-webvtt/missed-cues.vtt: Added.
+        * media/track/captions-webvtt/sorted-dispatch.vtt: Added.
+        * media/track/track-cues-cuechange-expected.txt: This test had to be changed \
because +        the synchronous dispatch of the events against the HTMLTrackElement \
doesn't mean that +        the text track actually has any active cues at the \
dispatch moment. +        * media/track/track-cues-cuechange.html: Changed tests \
structure to guide the entering and +        exit events according to the \
asynchronous dispatch done by TextTrack. +        * \
media/track/track-cues-missed-expected.txt: Added. +        * \
media/track/track-cues-missed.html: Added. +        * \
media/track/track-cues-sorted-before-dispatch-expected.txt: Added. +        * \
media/track/track-cues-sorted-before-dispatch.html: Added. +
+2012-02-20  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Unreviewed manual rollout of r107970 which breaks table column widths
+        updates from javascript (e.g. inspector's network panel).
+
+        * css2.1/20110323/fixed-table-layout-013-expected.html: Removed.
+        * css2.1/20110323/fixed-table-layout-013.htm: Removed.
+        * css2.1/20110323/fixed-table-layout-015-expected.html: Removed.
+        * css2.1/20110323/fixed-table-layout-015.htm: Removed.
+
+2012-02-20  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: DOMAttrModified should not be fired if the attribute value \
remains the same +        https://bugs.webkit.org/show_bug.cgi?id=79025
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/elements/set-attribute-expected.txt:
+        * inspector/elements/set-attribute.html:
+
+2012-02-20  Yosifumi Inoue  &lt;yosin@chromium.org&gt;
+
+        [Forms] Spin buttons of number input type should fire both input and change \
event +        https://bugs.webkit.org/show_bug.cgi?id=75067
+
+        Reviewed by Kent Tamura.
+
+        * fast/forms/number/spin-button-events-expected.txt: Added.
+        * fast/forms/number/spin-button-events.html: Added.
+
+2012-02-20  Shinya Kawanaka  &lt;shinyak@chromium.org&gt;
+
+        Attached/Detached state must be testable
+        https://bugs.webkit.org/show_bug.cgi?id=79010
+
+        Reviewed by Hajime Morita.
+
+        * fast/dom/shadow/shadow-root-attached-expected.txt: Added.
+        * fast/dom/shadow/shadow-root-attached.html: Added.
+
+2012-02-20  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK baselines for a new fast/css-generated-content
+        test.
+
+        * platform/gtk/fast/css-generated-content/before-content-continuation-chain-expected.txt: \
Added. +
+2012-02-20  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK fast/repaint rebaseline.
+
+        * platform/gtk/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt:
 +        * platform/gtk/fast/repaint/line-flow-with-floats-in-regions-expected.txt:
+        * platform/gtk/fast/repaint/overflow-flipped-writing-mode-block-in-regions-expected.txt:
 +        * platform/gtk/fast/repaint/region-painting-via-layout-expected.txt:
+
+2012-02-19  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        [Chromium] Unreviewed, update a few test expectations.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-19  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Unreviewed. Update remaining expectations for \
SVGImageElement-svgdom-requiredFeatures.html. +
+        * platform/chromium-linux/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
 +        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: \
Added. +        * platform/chromium-mac/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: \
Removed. +        * platform/chromium-win/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-19  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        [Chromium] Unreviewed gardening. Update Leopard expectation for
+        SVGImageElement-svgdom-requiredFeatures.html.
+
+        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
 +
+2012-02-19  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed - mark failing test as failing.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-19  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed gardening. Add leopard baselines for \
fast/css/relative-positioned-block-* tests, fix up test_expectations.txt +
+        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-19  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        Unreviewed, rolling out r108195.
+        http://trac.webkit.org/changeset/108195
+        https://bugs.webkit.org/show_bug.cgi?id=77700
+
+        Lots of failing ASSERT()s on v8 bots, requested by kling on
+        #webkit
+
+        * fast/css/css-value-wrapper-sameness-expected.txt: Removed.
+        * fast/css/css-value-wrapper-sameness.html: Removed.
+        * fast/dom/StyleSheet/gc-inline-style-cssvalues-expected.txt: Added.
+        * fast/dom/StyleSheet/gc-inline-style-cssvalues.html: Added.
+        * fast/dom/domListEnumeration-expected.txt:
+        * fast/dom/gc-9-expected.txt:
+        * fast/dom/gc-9.html:
+        * fast/dom/script-tests/domListEnumeration.js:
+
+2012-02-19  Robert Hogan  &lt;robert@webkit.org&gt;
+
+        Update expectations for test results changed by r108185
+
+        The bots only check text results.
+
+        Unreviewed.
+
+        * platform/gtk/test_expectations.txt:
+        * platform/mac/test_expectations.txt:
+        * platform/qt/test_expectations.txt:
+
+2012-02-19  Andreas Kling  &lt;awesomekling@apple.com&gt;
+
+        Make CSSValue wrapper getters return unique objects every time.
+        &lt;http://webkit.org/b/77700&gt;
+
+        Reviewed by Antti Koivisto.
+
+        * fast/css/css-value-wrapper-sameness-expected.txt: Added.
+        * fast/css/css-value-wrapper-sameness.html: Added.
+        * fast/dom/StyleSheet/gc-inline-style-cssvalues-expected.txt: Removed.
+        * fast/dom/StyleSheet/gc-inline-style-cssvalues.html: Removed.
+        * fast/dom/domListEnumeration-expected.txt:
+        * fast/dom/gc-9-expected.txt:
+        * fast/dom/gc-9.html:
+        * fast/dom/script-tests/domListEnumeration.js:
+
+2012-02-19  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash in RenderBlock::splitAnonymousBlocksAroundChild.
+        https://bugs.webkit.org/show_bug.cgi?id=78994
+
+        Reviewed by Eric Seidel.
+
+        * fast/table/table-split-inside-table-expected.txt: Added.
+        * fast/table/table-split-inside-table.html: Added.
+
+2012-02-19  Robert Hogan  &lt;robert@webkit.org&gt;
+
+        Chromium results for r108185
+
+        Unreviewed gardening. 
+
+        * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png.
 +        * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/encoding/utf-16-big-endian-expected.png: \
Renamed from LayoutTests/platform/chromium-mac-leopard/fast/encoding/utf-16-big-endian-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/encoding/utf-16-little-endian-expected.png: \
Renamed from LayoutTests/platform/chromium-mac-leopard/fast/encoding/utf-16-little-endian-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/inline/continuation-outlines-with-layers-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/inline/continuation-outlines-with-layers-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/repaint/transform-absolute-in-positioned-container-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/repaint/transform-absolute-in-positioned-container-expected.txt: \
Added. +        * platform/chromium-mac/fast/encoding/utf-16-big-endian-expected.png: \
Removed. +        * platform/chromium-mac/fast/encoding/utf-16-little-endian-expected.png: \
Removed. +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt.
 +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: \
Added. +        * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt.
 +        * platform/chromium-win/fast/encoding/utf-16-big-endian-expected.png:
+        * platform/chromium-win/fast/encoding/utf-16-little-endian-expected.png:
+        * platform/chromium-win/fast/inline/continuation-outlines-with-layers-expected.png:
 +        * platform/chromium-win/fast/repaint/transform-absolute-in-positioned-container-expected.png:
 +
+2012-02-18  Robert Hogan  &lt;robert@webkit.org&gt;
+
+        CSS 2.1 failure: inline-box-002.htm fails
+        https://bugs.webkit.org/show_bug.cgi?id=69210
+
+        Reviewed by David Hyatt.
+
+        * css2.1/20110323/dynamic-top-change-005-expected.html: Added.
+        * css2.1/20110323/dynamic-top-change-005.htm: Added.
+        * css2.1/20110323/dynamic-top-change-005a-expected.html: Added.
+        * css2.1/20110323/dynamic-top-change-005a.htm: Added.
+        * css2.1/20110323/dynamic-top-change-005b-expected.html: Added.
+        * css2.1/20110323/dynamic-top-change-005b.htm: Added.
+        * css2.1/20110323/inline-box-002-expected.html: Added.
+        * css2.1/20110323/inline-box-002.htm: Added.
+        * fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed.html: \
Added. +        * fast/css/relative-positioned-block-nested-with-inline-parent-dynamic.html: \
Added. +        * fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic.html: \
Added. +        * fast/css/relative-positioned-block-nested-with-inline-parent.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-ancestor-dynamic.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-ancestor.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-parent-dynamic-removed.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-parent-dynamic.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-parent-expected.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-parent-keeps-style.html: \
Added. +        * fast/css/relative-positioned-block-with-inline-parent.html: Added.
+        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: \
Added. +        * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: \
Added. +        * platform/chromium-linux/fast/encoding/utf-16-big-endian-expected.png:
 +        * platform/chromium-linux/fast/encoding/utf-16-little-endian-expected.png:
+        * platform/chromium-linux/fast/inline/continuation-outlines-with-layers-2-expected.txt:
 +        * platform/chromium-linux/fast/inline/continuation-outlines-with-layers-expected.png:
 +        * platform/chromium-linux/fast/repaint/transform-absolute-in-positioned-container-expected.png:
 +        * platform/chromium-win/fast/encoding/utf-16-big-endian-expected.txt:
+        * platform/chromium-win/fast/encoding/utf-16-little-endian-expected.txt:
+        * platform/chromium-win/fast/inline/continuation-outlines-with-layers-expected.txt:
 +        * platform/chromium-win/fast/repaint/transform-absolute-in-positioned-container-expected.txt:
 +        * platform/chromium/test_expectations.txt: Suppress existing tests until \
results rebaselined. +        * platform/gtk/test_expectations.txt: ditto
+        * platform/mac/test_expectations.txt: ditto
+        * platform/qt/test_expectations.txt: ditto
+        * platform/win/Skipped: ditto
+
+2012-02-18  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Unreviewed, rolling out r107965.
+        http://trac.webkit.org/changeset/107965
+        https://bugs.webkit.org/show_bug.cgi?id=78273
+
+        Crashes on ClusterFuzz.
+
+        * fast/multicol/span/clone-flexbox-expected.txt: Removed.
+        * fast/multicol/span/clone-flexbox.html: Removed.
+
+2012-02-18  Andreas Kling  &lt;awesomekling@apple.com&gt;
+
+        Unreviewed chromium rebaselines after r108157.
+
+        * platform/chromium-mac/fast/dom/setPrimitiveValue-exceptions-expected.txt:
+        * platform/chromium-win/fast/dom/setPrimitiveValue-exceptions-expected.txt:
+
+2012-02-18  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening after r107971.
+
+        * platform/qt/tables/mozilla/bugs/bug27038-1-expected.png:
+        * platform/qt/tables/mozilla/bugs/bug27038-1-expected.txt:
+        * platform/qt/tables/mozilla/bugs/bug27038-2-expected.png:
+        * platform/qt/tables/mozilla/bugs/bug27038-2-expected.txt:
+        * platform/qt/test_expectations.txt:
+
+2012-02-18  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed weekend gardening, skip new failing tests.
+
+        * platform/qt/Skipped:
+
+2012-02-18  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Unreviewed gardening r108133.
+
+        * fast/css/getComputedStyle/computed-style-expected.txt:
+        * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
+        * svg/css/getComputedStyle-basic-expected.txt:
+
+2012-02-18  Andreas Kling  &lt;awesomekling@apple.com&gt;
+
+        FontFamilyValue: Utilize inheritance from CSSPrimitiveValue better.
+        &lt;http://webkit.org/b/78806&gt;
+
+        Reviewed by Antti Koivisto.
+
+        Rebaseline as CSSPrimitiveValue.getStringValue() is no longer broken for
+        font-family values.
+
+        * fast/dom/setPrimitiveValue-exceptions-expected.txt:
+
+2012-02-17  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Avoid inconsistency in Node::inDocument due to DOMSubtreeModified dispatch
+        https://bugs.webkit.org/show_bug.cgi?id=76087
+
+        Reviewed by Ryosuke Niwa.
+
+        * fast/dom/getElementById-consistency-expected.txt: Added.
+        * fast/dom/getElementById-consistency.html: Added.
+        * fast/dom/getElementById-consistency2-expected.txt: Added.
+        * fast/dom/getElementById-consistency2.html: Added.
+
+2012-02-17  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        IndexedDB: Support overloaded methods that take IDBKey or IDBKeyRange
+        https://bugs.webkit.org/show_bug.cgi?id=78399
+
+        Tests IDBObjectStore.delete(IDBKeyRange). The spec has been updated such
+        that delete() always yields a result of undefined rather than a boolean,
+        so other test expectations are updated.
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/delete-range-expected.txt: Added.
+        * storage/indexeddb/delete-range.html: Added.
+        * storage/indexeddb/mozilla/delete-result-expected.txt:
+        * storage/indexeddb/mozilla/delete-result.html:
+        * storage/indexeddb/objectStore-required-arguments-expected.txt:
+        * storage/indexeddb/objectstore-basics-expected.txt:
+        * storage/indexeddb/objectstore-basics-workers-expected.txt:
+        * storage/indexeddb/resources/objectstore-basics.js:
+        (createIndex):
+        (removeSuccess):
+        (removeSuccessButNotThere):
+
+2012-02-17  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed gardening, update baselines for svg/dynamic-updates/.. \
and some more getComputedStyle +        results
+
+        * platform/chromium-linux/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt:
 +        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt:
 +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: \
Added. +        * platform/chromium-mac/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: \
Removed. +        * platform/chromium-win/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
 +
+2012-02-17  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed - removing expectations for tests that consistently \
pass, update some baselines for +        getComputedStyle due to new \
-webkit-line-align property. +
+        * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
 +        * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-17  Stephen Chenney  &lt;schenney@chromium.org&gt;
+
+        Crash in SVGAnimateElement due to changed target
+        https://bugs.webkit.org/show_bug.cgi?id=75096
+
+        Reviewed by Nikolas Zimmermann.
+
+        This test verifies that the target element information is correctly
+        updated when the target changes. Note that the clone is required, as
+        it causes the results of one animation to be pushed to a different
+        animation.
+
+        * svg/animations/svglength-animation-retarget-crash-expected.txt: Added.
+        * svg/animations/svglength-animation-retarget-crash.html: Added.
+
+2012-02-17  David Hyatt  &lt;hyatt@apple.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=78934
+        
+        Add the -webkit-line-align property to support the alignment of lines in the \
inline direction +        to the line grid.
+
+        Reviewed by Dan Bernstein.
+
+        * fast/line-grid/line-align-parsing-expected.txt: Added.
+        * fast/line-grid/line-align-parsing.html: Added.
+        * fast/line-grid/script-tests/line-align-parsing.js: Added.
+
+2012-02-17  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed. Land the last (hopefully) new baselines for \
fast/css/non-empty-span.html +
+        * platform/chromium-mac-leopard/fast/css/non-empty-span-expected.png: Added.
+        * platform/chromium-win/fast/css/non-empty-span-expected.png: Added.
+        * platform/chromium-win/fast/css/non-empty-span-expected.txt: Renamed from \
LayoutTests/platform/chromium-linux/fast/css/non-empty-span-expected.txt. +
+2012-02-17  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Incorrect placement of a new child when beforeChild and its
+        previous sibling are in the same table.
+        https://bugs.webkit.org/show_bug.cgi?id=78269
+
+        Reviewed by Julien Chaffraix.
+
+        Test passes if the div child splits the table parts and is not
+        part of table itself.
+
+        * fast/table/table-cell-split-expected.txt: Added.
+        * fast/table/table-cell-split.html: Added.
+        * fast/table/table-row-split-expected.txt: Added.
+        * fast/table/table-row-split.html: Added.
+        * fast/table/table-section-split-expected.txt: Added.
+        * fast/table/table-section-split-with-after-content-expected.txt: Added.
+        * fast/table/table-section-split-with-after-content.html: Added.
+        * fast/table/table-section-split.html: Added.
+
+2012-02-17  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed - add some more fast/css/non-empty-span expectations.
+
+        * platform/chromium-mac-snowleopard/fast/css/non-empty-span-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/non-empty-span-expected.txt: \
Added. +
+2012-02-17  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed baseline and expectation updates.
+
+        * platform/chromium-linux/fast/css/non-empty-span-expected.png: Renamed from \
LayoutTests/platform/chromium-linux-x86/fast/css/non-empty-span-expected.png. +       \
* platform/chromium-linux/fast/css/non-empty-span-expected.txt: Renamed from \
LayoutTests/platform/chromium-linux-x86/fast/css/non-empty-span-expected.txt. +       \
* platform/chromium/test_expectations.txt: +
+2012-02-16  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [chromium] Re-enable compositing/culling/scrolled-within-boxshadow.html
+        https://bugs.webkit.org/show_bug.cgi?id=78859
+
+        Reviewed by James Robinson.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-17  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [chromium] Rebaseline tests for composited filters
+        https://bugs.webkit.org/show_bug.cgi?id=78903
+
+        Reviewed by Stephen White.
+
+        * compositing/culling/filter-occlusion-alpha-large.html:
+        * compositing/culling/filter-occlusion-alpha.html:
+        * compositing/culling/filter-occlusion-blur-large.html:
+        * compositing/culling/filter-occlusion-blur.html:
+        * platform/chromium-linux/compositing/culling/filter-occlusion-blur-expected.png: \
Added. +        * platform/chromium-linux/compositing/culling/filter-occlusion-blur-large-expected.png: \
Added. +        * platform/chromium-win/compositing/culling/filter-occlusion-blur-expected.png: \
Added. +        * platform/chromium-win/compositing/culling/filter-occlusion-blur-large-expected.png: \
Added. +
+2012-02-17  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Update baselines for border-radius-wide-border-01 due to skia \
change. Unreviewed. +
+        * platform/chromium-linux/fast/borders/border-radius-wide-border-01-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/borders/border-radius-wide-border-01-expected.png:
 +        * platform/chromium-win/fast/borders/border-radius-wide-border-01-expected.png:
 +
+2012-02-16  Oliver Hunt  &lt;oliver@apple.com&gt;
+
+        Implement Error.stack
+        https://bugs.webkit.org/show_bug.cgi?id=66994
+
+        Reviewed by Gavin Barraclough.
+
+        Add testcases for producing a stack trace on exception objects.
+
+        * fast/js/exception-properties-expected.txt:
+        * fast/js/script-tests/exception-properties.js:
+        * fast/js/script-tests/stack-trace.js: Added.
+        (printStack):
+        (hostThrower):
+        (callbacker):
+        (outer):
+        (inner):
+        (evaler):
+        (normalOuter):
+        (normalInner):
+        (scripterInner):
+        (scripterOuter):
+        (selfRecursive1):
+        (selfRecursive2):
+        (selfRecursive3):
+        (throwError):
+        (object.get getter1.o.valueOf):
+        (object.get getter1):
+        (object.get getter2):
+        (object.get getter3.o2.valueOf):
+        (object.get getter3):
+        (object.nonInlineable.callCount):
+        (object.nonInlineable):
+        (object.inlineable):
+        (yetAnotherInlinedCall):
+        (makeInlinableCall):
+        (.try.g):
+        (h):
+        (mapTest):
+        (mapTestDriver):
+        (dfgFunction):
+        (try.f):
+        * fast/js/stack-trace-expected.txt: Added.
+        * fast/js/stack-trace.html: Added.
+
+2012-01-23  Robert Hogan  &lt;robert@webkit.org&gt;
+
+        REGRESSION: empty span creates renders with non-zero height
+        https://bugs.webkit.org/show_bug.cgi?id=76465
+
+        Reviewed by David Hyatt.
+
+        * fast/css/empty-span-expected.html: Added.
+        * fast/css/empty-span.html: Added.
+        * fast/css/non-empty-span.html: Added.
+        * platform/chromium/test_expectations.txt: Suppress result until rebaseline \
on MAC and WIN. +        * \
platform/chromium-linux-x86/fast/css/non-empty-span-expected.png: Added. +        * \
platform/chromium-linux-x86/fast/css/non-empty-span-expected.txt: Added. +
+2012-02-17  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        :before content incorrectly placed in continuation
+        when we don't have a first child.
+        https://bugs.webkit.org/show_bug.cgi?id=78380
+
+        Reviewed by David Hyatt.
+
+        * fast/css-generated-content/before-content-continuation-chain-expected.png: \
Added. +        * fast/css-generated-content/before-content-continuation-chain-expected.txt: \
Added. +        * fast/css-generated-content/before-content-continuation-chain.html: \
Added. +
+2012-02-17  Mihnea Ovidenie  &lt;mihnea@adobe.com&gt;
+
+        CSS regions enabled by default
+        https://bugs.webkit.org/show_bug.cgi?id=78525
+
+        Reviewed by David Hyatt.
+
+        Add a runtime preference to enable/disable regions functionality at \
runtime(WebKitCSSRegionsEnabled). +        CSSRegions are still enabled by default.
+        In DRT, use \
layoutTestController.overridePreference(&quot;WebKitCSSRegionsEnabled&quot;, \
&quot;0&quot;) to disable the css regions functionality. +
+        * fast/regions/css-regions-disabled-expected.txt: Added.
+        * fast/regions/css-regions-disabled.html: Added.
+        * fast/regions/script-tests/css-regions-disabled.js: Added.
+        (testWebKitFlowInto):
+        (testWebKitFlowFrom):
+        (testWebKitRegionOverflow):
+        (testComputedStyleWebKitFlowInto):
+        (testComputedStyleWebKitFlowFrom):
+        (testComputedStyleWebKitRegionOverflow):
+
+2012-02-17  Seo Sanghyeon  &lt;sh4.seo@samsung.com&gt;
+
+        Case typo in fast/js/script-tests/date-constructor.js
+        https://bugs.webkit.org/show_bug.cgi?id=78898
+
+        Reviewed by Adam Barth.
+
+        * fast/js/script-tests/date-constructor.js: toSTring to toString
+
+2012-02-17  Mihnea Ovidenie  &lt;mihnea@adobe.com&gt;
+
+        [CSSRegions]Implement NamedFlow::overflow
+        https://bugs.webkit.org/show_bug.cgi?id=78880
+
+        Reviewed by David Hyatt.
+
+        * fast/regions/resources/helper.js:
+        (testContentToRegionsMapping):
+        * fast/regions/resources/region-style.css:
+        * fast/regions/webkit-named-flow-overflow-expected.txt: Added.
+        * fast/regions/webkit-named-flow-overflow.html: Added.
+
+2012-02-17  Joe Thomas  &lt;joethomas@motorola.com&gt;
+
+        flex-wrap:nowrap should be flex-wrap:none
+        https://bugs.webkit.org/show_bug.cgi?id=78772
+
+        As per the spec http://dev.w3.org/csswg/css3-flexbox/#flex-wrap0, \
flex-wrap:nowrap should be changed to flex-wrap:none. +
+        Reviewed by Ojan Vafai.
+
+        * css3/flexbox/css-properties-expected.txt:
+        * css3/flexbox/script-tests/css-properties.js:
+        * fast/css/getComputedStyle/computed-style-expected.txt:
+        * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
+        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt:
 +        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt:
 +        * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
 +        * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
+        * platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * svg/css/getComputedStyle-basic-expected.txt:
+
+2012-02-17  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Table cell's anonymous wrappers are left in the tree, impacting our layout
+        https://bugs.webkit.org/show_bug.cgi?id=7180
+
+        Reviewed by David Hyatt.
+
+        * fast/table/table-switch-cell-position-bad-layout-expected.html: Added.
+        * fast/table/table-switch-cell-position-bad-layout.html: Added.
+
+2012-02-17  Rob Buis  &lt;rbuis@rim.com&gt;
+
+        ASSERT (and crash) with dynamically moved &lt;font-face&gt;
+        https://bugs.webkit.org/show_bug.cgi?id=64839
+
+        Reviewed by Antti Koivisto.
+
+        * svg/custom/font-face-move-expected.txt: Added.
+        * svg/custom/font-face-move.svg: Added.
+
+2012-02-17  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed Chromium rebaseline after r107971.
+
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug27038-1-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug27038-2-expected.png:
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.txt: \
Added. +        * platform/chromium-win-vista/tables/mozilla/bugs: Removed.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-17  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed, update chromium pixel baselines for r108079
+
+        * fast/borders/border-mixed-alpha-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/borders/border-mixed-alpha-expected.txt. +        * \
fast/borders/only-one-border-with-width-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/borders/only-one-border-with-width-expected.txt. +      \
* platform/chromium-mac-snowleopard/fast/borders/border-mixed-alpha-expected.png: +   \
* platform/chromium-mac-snowleopard/fast/borders/mixed-border-styles-expected.png: +  \
* platform/chromium-mac-snowleopard/fast/borders/only-one-border-with-width-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/color-leakage-expected.png: \
Added. +        * platform/chromium-win/fast/borders/border-mixed-alpha-expected.png:
+        * platform/chromium-win/fast/borders/mixed-border-styles-expected.png:
+        * platform/chromium-win/fast/borders/only-one-border-with-width-expected.png: \
Copied from LayoutTests/platform/chromium-win/fast/css/color-leakage-expected.png. +  \
* platform/chromium-win/fast/css/color-leakage-expected.png: +        * \
platform/mac/fast/borders/border-mixed-alpha-expected.txt: Removed. +        * \
platform/mac/fast/borders/only-one-border-with-width-expected.txt: Removed. +        \
* platform/qt/fast/borders/border-mixed-alpha-expected.txt: Removed. +        * \
platform/qt/fast/borders/only-one-border-with-width-expected.txt: Removed. +
+2012-02-17  Stephen Chenney  &lt;schenney@chromium.org&gt;
+
+        Crash at WebCore::SVGUseElement::expandSymbolElementsInShadowTree
+        https://bugs.webkit.org/show_bug.cgi?id=77639
+
+        Reviewed by Nikolas Zimmermann.
+
+        Fix a SVG crash in Release builds, although it still crashes in Debug \
builds. +        This test is to verify no crash in Release builds, while \
expectations/Skipped +        are added for Debug builds. Bug 77764 tracks the Debug \
fix. +
+        * platform/chromium/test_expectations.txt:
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * svg/custom/use-referencing-style-crash-expected.txt: Added.
+        * svg/custom/use-referencing-style-crash.svg: Added.
+
+2012-02-17  Florin Malita  &lt;fmalita@google.com&gt;
+
+        chrome.dll!WebCore::SVGTRefElement::updateReferencedText ReadAV@NULL \
(e85cb8e140071fa7790cad215b0109dc) +        \
https://bugs.webkit.org/show_bug.cgi?id=74858 +
+        Reviewed by Nikolas Zimmermann.
+
+        * svg/custom/tref-remove-target-crash-expected.svg: Added.
+        * svg/custom/tref-remove-target-crash.svg: Added.
+
+2012-02-17  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: check undo-redo boundaries based on current action index, not \
history size. +        https://bugs.webkit.org/show_bug.cgi?id=78895
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/elements/perform-undo-undo-expected.txt: Added.
+        * inspector/elements/perform-undo-undo.html: Added.
+        * inspector/styles/perform-undo-perform-of-mergable-action-expected.txt: \
Added. +        * inspector/styles/perform-undo-perform-of-mergable-action.html: \
Added. +
+2012-02-17  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, skipping 2 new test failures on GTK.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/test_expectations.txt:
+
+2012-02-17  Ilya Tikhonovsky  &lt;loislo@chromium.org&gt;
+
+        Web Inspecter: Unreviewed. Adjust expectation for \
script-formatter-console.html +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-17  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #34 of N.  Restore/move following tests back in \
BUGCR9950 +        group with a WIN exception for an IMAGE failure.
+
+        WIN : svg/W3C-SVG-1.1/animate-elem-36-t.svg = IMAGE
+        WIN : svg/W3C-SVG-1.1/animate-elem-39-t.svg = IMAGE
+        WIN : svg/W3C-SVG-1.1/animate-elem-40-t.svg = IMAGE
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-17  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: split innerUpdate into rebuildUpdate and refreshUpdate, make \
computed styles load lazily. +        https://bugs.webkit.org/show_bug.cgi?id=78827
+
+        Reviewed by Vsevolod Vlasov.
+
+        * http/tests/inspector/elements-test.js:
+        (initialize_ElementTest.InspectorTest.waitForStyles):
+        * inspector/styles/undo-add-property.html:
+        * inspector/styles/undo-change-property.html:
+        * inspector/styles/updates-during-dom-traversal.html:
+        * inspector/styles/updates-throttled.html:
+
+2012-02-17  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #32 of N. Chrome MAC SnowLeopard differences under \
discussion +        in bug 54322, retain IMAGE expectation on SnowLeopard, update \
pixel results. +
+        * platform/chromium-linux/tables/mozilla/core/row_span-expected.png:
+        * platform/chromium-linux/tables/mozilla/other/cell_widths-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/core/row_span-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/other/cell_widths-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla/core/row_span-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/other/cell_widths-expected.png: \
Added. +        * platform/chromium-win/tables/mozilla/core/row_span-expected.png:
+        * platform/chromium-win/tables/mozilla/other/cell_widths-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-17  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #33 of N. See also bug 78219.
+
+        * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
 +        * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
 +        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
 +        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: \
Added. +        * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: \
Removed. +        * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: \
Removed. +        * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
 +        * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-17  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #31 of N. Any reasons for the MAC exception have been \
lost +        in time, like tears in rain. Remove the MAC exception, update all pixel \
results. +
+        * platform/chromium-linux/tables/mozilla/bugs/bug82946-2-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug82946-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug82946-2-expected.png: \
Added. +        * platform/chromium-win/tables/mozilla/bugs/bug82946-2-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-17  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r108034.
+
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+
+2012-02-17  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #30 of N.  Chrome MAC SnowLeopard differences under \
discussion +        in bug 54322, retain IMAGE expectation on SnowLeopard, update \
pixel results. +
+        * platform/chromium-linux/tables/mozilla/core/bloomberg-expected.png:
+        * platform/chromium-linux/tables/mozilla/core/misc-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/core/bloomberg-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/core/misc-expected.png:
+        * platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.png: \
Added. +        * platform/chromium-win/tables/mozilla/core/bloomberg-expected.png:
+        * platform/chromium-win/tables/mozilla/core/misc-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        Unreviewed. Rollout r107952 removed \
fast/events/related-target-focusevent.html so +        lint complains about it in \
test_expectations.txt, remove it's expectation line. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        Unreviewed. r107980 rolled-out, fast/js/stack-trace.html was removed so lint
+        complains about it in test_expectations.txt, remove it's expectation line.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Unreviewed. Rolling out r107980, because it broke 32 bit platforms.
+
+        * fast/js/exception-properties-expected.txt:
+        * fast/js/script-tests/exception-properties.js:
+        * fast/js/script-tests/stack-trace.js: Removed.
+        * fast/js/stack-trace-expected.txt: Removed.
+        * fast/js/stack-trace.html: Removed.
+
+2012-02-16  Shinya Kawanaka  &lt;shinyak@chromium.org&gt;
+
+        [v8] v8 doesn't assume to do 'new WebKitShadowRoot(host)'
+        https://bugs.webkit.org/show_bug.cgi?id=78875
+
+        Reviewed by Kentaro Hara.
+
+        Skip non-chromium ports since SHADOW_DOM flag is not enabled in their ports.
+
+        * fast/dom/shadow/shadow-root-new.html: Added.
+        * fast/dom/shadow/shadow-root-new-expected.txt: Added.
+        * platform/efl/Skipped:
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * platform/wincairo/Skipped:
+        * platform/wk2/Skipped:
+
+2012-02-16  Ilya Tikhonovsky  &lt;loislo@chromium.org&gt;
+
+        Unreviewed rollout r107952 because it broke shadow-boundary-events.html and \
related-target-focusevent.html on mac.  +        see http://webkit.org/b/78832
+
+        * fast/dom/shadow/shadow-boundary-events-expected.txt:
+        * fast/dom/shadow/shadow-boundary-events.html:
+        * fast/events/event-creation-expected.txt:
+        * fast/events/event-creation.html:
+        * fast/events/related-target-focusevent-expected.txt: Removed.
+        * fast/events/related-target-focusevent.html: Removed.
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+[chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #29 of N.  Chrome MAC differences under discussion in \
bug +        BUGCR23473, retain IMAGE expectation on MAC therefore, update the pixel \
results. +
+        * platform/chromium-linux/fast/repaint/backgroundSizeRepaint-expected.png:
+        * platform/chromium-mac-leopard/fast/repaint/backgroundSizeRepaint-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/repaint/backgroundSizeRepaint-expected.png: \
Added. +        * platform/chromium-win/fast/repaint/backgroundSizeRepaint-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #26 of N. Color profiles are not supported in chrome \
win/linux. +        Retain the FAIL MISSING expectation, update the failing win/linux \
pixel result. +
+        * platform/chromium-win/fast/images/color-jpeg-with-color-profile-expected.png: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #28 of N.  Chrome MAC differences under discussion in \
bug +        BUGCR23473, retain IMAGE expectation on MAC therefore, update the pixel \
results. +
+        * platform/chromium-linux/fast/repaint/clipped-relative-expected.png:
+        * platform/chromium-linux/fast/repaint/selected-replaced-expected.png:
+        * platform/chromium-mac-leopard/fast/repaint/clipped-relative-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/repaint/selected-replaced-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/repaint/clipped-relative-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/repaint/selected-replaced-expected.png: \
Added. +        * platform/chromium-win/fast/repaint/clipped-relative-expected.png:
+        * platform/chromium-win/fast/repaint/selected-replaced-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #25 of N.  Chrome MAC rendering was previously \
incorrect, and +        still is incorrect/weird: update test_expectations.txt with \
IMAGE failure. +
+        * platform/chromium-linux/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: \
Removed. +        * platform/chromium-linux/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png:
 +        * platform/chromium-mac-snowleopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: \
Removed. +        * platform/chromium-win-vista/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: \
Removed. +        * platform/chromium-win-vista/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: \
Removed. +        * platform/chromium-win-xp/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: \
Removed. +        * platform/chromium-win-xp/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: \
Removed. +        * platform/chromium-win/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: \
Removed. +        * platform/chromium/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux-x86/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt.
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #27 of N. 
+
+        * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
+        * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
 +        * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #24 of N.  Differences in rendered image extents on \
chrome +        LINUX, WIN compared to chrome MAC.  Retain that fact in \
test_expectations.txt. +
+        * platform/chromium-linux/tables/mozilla/bugs/bug101674-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug101674-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug101674-expected.txt:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #23 of N.
+
+        * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
+        * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
 +        * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [Chromium] Occlusion tracking with CSS filters
+        https://bugs.webkit.org/show_bug.cgi?id=77498
+
+        Reviewed by James Robinson.
+
+        * compositing/culling/filter-occlusion-alpha-expected.png: Added.
+        * compositing/culling/filter-occlusion-alpha-expected.txt: Added.
+        * compositing/culling/filter-occlusion-alpha-large-expected.png: Added.
+        * compositing/culling/filter-occlusion-alpha-large-expected.txt: Added.
+        * compositing/culling/filter-occlusion-alpha-large.html: Added.
+        * compositing/culling/filter-occlusion-alpha.html: Added.
+        * compositing/culling/filter-occlusion-blur-expected.txt: Added.
+        * compositing/culling/filter-occlusion-blur-large-expected.txt: Added.
+        * compositing/culling/filter-occlusion-blur-large.html: Added.
+        * compositing/culling/filter-occlusion-blur.html: Added.
+        * platform/chromium/compositing/culling/filter-occlusion-blur-expected.png: \
Added. +        * platform/chromium/compositing/culling/filter-occlusion-blur-large-expected.png: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #22 of N.
+
+        * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
+        * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
 +        * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Crash in visiblePositionForIndex
+        https://bugs.webkit.org/show_bug.cgi?id=77683
+
+        Reviewed by Eric Seidel.
+
+        Add a regression test. It crashes Webkit with very high frequency.
+
+        * editing/execCommand/applyblockelement-visiblepositionforindex-crash-expected.txt: \
Added. +        * editing/execCommand/applyblockelement-visiblepositionforindex-crash.html: \
Added. +
+2012-02-16  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [chromium] Empty divs not transforming overflow correctly
+        https://bugs.webkit.org/show_bug.cgi?id=78850
+
+        Reviewed by James Robinson.
+
+        * compositing/overflow/transform-in-empty-container-expected.png: Added.
+        * compositing/overflow/transform-in-empty-container-expected.txt: Added.
+        * compositing/overflow/transform-in-empty-container.html: Added.
+
+2012-02-16  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed baseline update for \
compositing/scrollbar-painting.html +
+        * platform/chromium-mac-snowleopard/compositing/scrollbar-painting-expected.png:
 +
+2012-02-15  Shinya Kawanaka  &lt;shinyak@chromium.org&gt;
+
+        Needs an internal flag to accept multiple shadow roots for the purpose of \
tests +        https://bugs.webkit.org/show_bug.cgi?id=78453
+
+        Reviewed by Hajime Morita.
+
+        * fast/dom/shadow/shadow-root-js-api.html:
+
+2012-02-16  Mark Hahnenberg  &lt;mhahnenberg@apple.com&gt;
+
+        Fix the broken viewport tests
+        https://bugs.webkit.org/show_bug.cgi?id=78774
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * platform/gtk/Skipped: Undoing tests skipped due to earlier breakage.
+        * platform/qt/Skipped: Ditto.
+
+2012-02-16  Alexei Svitkine  &lt;asvitkine@chromium.org&gt;
+
+        [chromium] Disable mock scrollbars for rubber-banding tests
+        https://bugs.webkit.org/show_bug.cgi?id=78370
+
+        Turning on mock scrollbars caused rubber-banding tests to fail
+        because the overhang is painted by the ScrollbarTheme, which
+        was replaced by the mock theme. Disable mock scrollbars for
+        these tests.
+
+        Reviewed by James Robinson.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Michael Saboff  &lt;msaboff@apple.com&gt;
+
+        ENH: Add ability to run subset of JavaScript layout tests with JSC
+        https://bugs.webkit.org/show_bug.cgi?id=78764
+
+        Reviewed by Gavin Barraclough.
+
+        * fast/js/jsc-test-list: Added. List of tests that can be run
+        using jsc.  Used by new Tools/Scripts/run-fast-jsc script.
+        * fast/js/resources/standalone-post.js: ~pdated to match changes
+        in js-test-post.js
+        * fast/js/resources/standalone-pre.js: Updated to match changes
+        in js-test-pre.js
+
+2012-02-16  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed. Mark fast/js/stack.html as an expected failure, we \
aren't interesting in converging on +        this in v8.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Kentaro Hara  &lt;haraken@chromium.org&gt;
+
+        Remove [ConvertScriptString] from FileReaderSync.idl
+        https://bugs.webkit.org/show_bug.cgi?id=78335
+
+        Reviewed by Eric Seidel.
+
+        The spec says that FileReadSync should throw NOT_FOUND_ERR
+        if a given blob is invalid: http://www.w3.org/TR/FileAPI/#FileReaderSync
+        This patch adds test cases for FileReaderSync with an invalid blob
+        to check that NOT_FOUND_ERR is thrown.
+
+        * fast/files/resources/read-common.js:
+        (_readBlobAsArrayBufferSync):
+        (_readBlobAsBinaryStringSync):
+        (_readBlobAsTextSync):
+        (_readBlobAsDataURLSync):
+        * fast/files/workers/worker-read-blob-sync-expected.txt:
+        * fast/files/workers/worker-read-file-sync-expected.txt:
+
+2012-02-16  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [chromium] Clipping/Transforms applied in wrong order in opaque paint \
tracking +        https://bugs.webkit.org/show_bug.cgi?id=78775
+
+        Reviewed by Stephen White.
+
+        * compositing/culling/unscrolled-within-boxshadow-expected.png: Added.
+        * compositing/culling/unscrolled-within-boxshadow-expected.txt: Added.
+        * compositing/culling/unscrolled-within-boxshadow.html: Added.
+        * compositing/overflow/clip-content-under-overflow-controls-expected.png:
+        * compositing/scrollbar-painting-expected.png:
+
+2012-02-16  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash with tables in multi-column layout.
+        https://bugs.webkit.org/show_bug.cgi?id=78415
+
+        Reviewed by Julien Chaffraix.
+
+        * fast/multicol/span/table-multi-column-crash-expected.txt: Added.
+        * fast/multicol/span/table-multi-column-crash.html: Added.
+
+2012-02-16  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Update table pixel expectations. Unreviewed.
+
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/tables/mozilla/bugs/bug27038-1-expected.png.
 +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/tables/mozilla/bugs/bug27038-2-expected.png.
 +        * platform/chromium-win/tables/mozilla/bugs/bug27038-1-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug27038-2-expected.png:
+
+2012-02-16  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Add a missing image for my commit r107965.
+
+        * fast/multicol/span/clone-flexbox-expected.png: Added.
+
+2012-02-16  Oliver Hunt  &lt;oliver@apple.com&gt;
+
+        Implement Error.stack
+        https://bugs.webkit.org/show_bug.cgi?id=66994
+
+        Reviewed by Gavin Barraclough.
+
+        Add testcases for producing a stack trace on exception objects.
+
+        * fast/js/exception-properties-expected.txt:
+        * fast/js/script-tests/exception-properties.js:
+        * fast/js/script-tests/stack-trace.js: Added.
+        (printStack):
+        (hostThrower):
+        (callbacker):
+        (outer):
+        (inner):
+        (evaler):
+        (normalOuter):
+        (normalInner):
+        (scripterInner):
+        (scripterOuter):
+        (selfRecursive1):
+        (selfRecursive2):
+        (selfRecursive3):
+        (throwError):
+        (object.get getter1.o.valueOf):
+        (object.get getter1):
+        (object.get getter2):
+        (object.get getter3.o2.valueOf):
+        (object.get getter3):
+        (object.nonInlineable.callCount):
+        (object.nonInlineable):
+        (object.inlineable):
+        (yetAnotherInlinedCall):
+        (makeInlinableCall):
+        (.try.g):
+        (h):
+        (mapTest):
+        (mapTestDriver):
+        (dfgFunction):
+        (try.f):
+        * fast/js/stack-trace-expected.txt: Added.
+        * fast/js/stack-trace.html: Added.
+
+2012-02-16  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed, update baselines for region repaint tests due to skia \
off-by-one. +
+        * platform/chromium-mac-snowleopard/fast/repaint/region-painting-invalidation-expected.png: \
Added. +        * platform/chromium-win/fast/repaint/region-painting-invalidation-expected.png: \
Added. +        * platform/chromium-win/fast/repaint/region-painting-invalidation-expected.txt: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, these regions tests pass after r107961.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed rebaselines and expectation updates.
+
+        * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.png:
 +        * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-1-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-10-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-2-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-3-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-4-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-5-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-6-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-7-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-8-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-add-summary-9-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-remove-summary-1-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-remove-summary-2-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-remove-summary-3-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-remove-summary-4-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-remove-summary-5-and-click-expected.png:
 +        * platform/chromium-mac-leopard/fast/html/details-remove-summary-6-and-click-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-and-click-expected.png: \
Copied from LayoutTests/platform/chromium-mac-leopard/fast/html/details-add-summary-1-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-and-click-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-and-click-expected.png: \
Copied from LayoutTests/platform/chromium-mac-leopard/fast/html/details-add-summary-8-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-and-click-expected.png: \
Copied from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-and-click-expected.png: \
Copied from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-and-click-expected.png: \
Copied from LayoutTests/platform/chromium-mac-leopard/fast/html/details-add-summary-9-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.png.
 +        * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-and-click-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png.
 +        * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.png: \
Removed. +        * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.png: \
Removed. +        * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.png: \
Removed. +        * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.png: \
Removed. +        * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.png: \
Removed. +        * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.png: \
Removed. +        * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.png:
 +        * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r107952.
+
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+
+2012-02-16  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        thead in table without tbody causes table height doubling
+        https://bugs.webkit.org/show_bug.cgi?id=37244
+
+        Reviewed by Ojan Vafai.
+
+        * fast/table/double-height-table-no-tbody-expected.html: Added.
+        * fast/table/double-height-table-no-tbody.html: Added.
+        Test that we properly lay out tables with only a &lt;thead&gt; or \
&lt;tfoot&gt; +        exactly like a table with only a &lt;tbody&gt;.
+
+        * platform/chromium-linux/tables/mozilla/bugs/bug27038-1-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug27038-2-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug27038-1-expected.txt:
+        * platform/chromium-win/tables/mozilla/bugs/bug27038-2-expected.txt:
+        This is neither a progression nor a regression. We are not doing the right
+        thing as we don't distribute the extra logical height evenly over our \
sections. +        Now we give the extra height to the &lt;thead&gt; (first section) \
instead of the &lt;tbody&gt;. +
+        * platform/chromium/test_expectations.txt:
+        * platform/efl/test_expectations.txt:
+        * platform/gtk/test_expectations.txt:
+        * platform/mac/test_expectations.txt:
+        * platform/qt/test_expectations.txt:
+        * platform/win/test_expectations.txt:
+        Marked the previous tests as needing a new baseline.
+
+2012-02-07  Robert Hogan  &lt;robert@webkit.org&gt;
+
+        CSS 2.1 failure: fixed-table-layout-013 and fixed-table-layout-015 fail
+        https://bugs.webkit.org/show_bug.cgi?id=78027
+
+        Reviewed by Julien Chaffraix.
+
+        * css2.1/20110323/fixed-table-layout-013-expected.html: Added.
+        * css2.1/20110323/fixed-table-layout-013.htm: Added.
+        * css2.1/20110323/fixed-table-layout-015-expected.html: Added.
+        * css2.1/20110323/fixed-table-layout-015.htm: Added.
+
+2012-02-16  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, tests passing after the fix in r107874.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Tom Sepez  &lt;tsepez@chromium.org&gt;
+
+        XSS Auditor bypass with U+2028/2029
+        https://bugs.webkit.org/show_bug.cgi?id=78732
+
+        Reviewed by Adam Barth.
+
+        * http/tests/security/xssAuditor/script-tag-with-trailing-comment-U2028-expected.txt: \
Added. +        * http/tests/security/xssAuditor/script-tag-with-trailing-comment-U2028.html: \
Added. +
+2012-02-16  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Fix clone() function to handle descendant classes of RenderBlock.
+        https://bugs.webkit.org/show_bug.cgi?id=78273
+
+        Reviewed by Eric Seidel.
+
+        You should see two RenderFlexibleBox in the rendertree, indicating that
+        cloning was correct. 
+
+        * fast/multicol/span/clone-flexbox-expected.txt: Added.
+        * fast/multicol/span/clone-flexbox.html: Added.
+
+2012-02-16  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed gardening
+
+        * platform/chromium/fast/js/property-getters-and-setters-expected.txt:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Raul Hudea  &lt;rhudea@adobe.com&gt;
+
+        [CSSRegions]overflowRegion tests are flaky
+        https://bugs.webkit.org/show_bug.cgi?id=78761
+
+        Reviewed by Tony Chang.
+
+        * fast/regions/element-region-overflow-state-expected.txt:
+        * fast/regions/element-region-overflow-state-vertical-rl-expected.txt:
+        * fast/regions/element-region-overflow-state-vertical-rl.html:
+        * fast/regions/element-region-overflow-state.html:
+
+2012-02-16  Raul Hudea  &lt;rhudea@adobe.com&gt;
+
+        [CSS Regions] Repaint issues when changing innerHTML of content
+        https://bugs.webkit.org/show_bug.cgi?id=78787
+
+        Reviewed by David Hyatt.
+
+        * fast/repaint/region-painting-invalidation.html: Added.
+        * platform/chromium/test_expectations.txt: Needs baseline
+        * platform/mac/fast/repaint/region-painting-invalidation-expected.png: \
Added. +        * platform/mac/fast/repaint/region-painting-invalidation-expected.txt: \
Added. +
+2012-02-16  James Robinson &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed chromium gardening
+        
+        * platform/chromium-linux/svg/text/tspan-dynamic-positioning-expected.png: \
Added. +        * platform/chromium-mac-leopard/compositing/plugins/composited-plugin-expected.png: \
Added. +        * platform/chromium-mac-leopard/compositing/plugins/composited-plugin-expected.txt: \
Added. +        * platform/chromium-mac-leopard/svg/text/tspan-dynamic-positioning-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/text/tspan-dynamic-positioning-expected.png: \
Added. +        * platform/chromium-win/svg/text/tspan-dynamic-positioning-expected.png: \
Added. +        * platform/chromium-win/svg/text/tspan-dynamic-positioning-expected.txt: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-15  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Numerous trivial bugs in Object.defineProperty
+        https://bugs.webkit.org/show_bug.cgi?id=78777
+
+        Reviewed by Sam Weinig.
+
+        There are a handful of really trivial bugs, related to \
Object.defineProperty: +            * Redefining an accessor with different \
attributes changes the attributes, but not the get/set functions! +            * \
Calling an undefined setter should only throw in strict mode. +            * When \
redefining an accessor to a data decriptor, if writable is not specified we should \
default to false. +            * Any attempt to redefine a non-configurable property \
of an array as configurable should be rejected. +            * \
Object.defineProperties should call toObject on 'Properties' argument, rather than \
throwing if it is not an object. +            * If preventExtensions has been called \
on an array, subsequent assignment beyond array bounds should fail. +            * \
'isFrozen' shouldn't be checking the ReadOnly bit for accessor descriptors (we \
presently always keep this bit as 'false'). +            * Should be able to redefine \
an non-writable, non-configurable property, with the same value and attributes. +     \
* Should be able to define an non-configurable accessor. +        These are mostly \
all one-line changes, e.g. inverted boolean checks, masking against wrong attribute. \
+ +        * fast/js/Object-defineProperties-expected.txt:
+        * fast/js/Object-defineProperty-expected.txt:
+        * fast/js/preventExtensions-expected.txt:
+        * fast/js/property-getters-and-setters-expected.txt:
+        * fast/js/script-tests/Object-defineProperty.js:
+        * fast/js/script-tests/preventExtensions.js:
+        * fast/js/script-tests/property-getters-and-setters.js:
+            - Update result &amp; add new test cases for all bugs fixed.
+
+2012-02-16  Terry Anderson  &lt;tdanderson@chromium.org&gt;
+
+        WebKit does not support DOM 3 Events FocusEvent
+        https://bugs.webkit.org/show_bug.cgi?id=76216
+
+        Reviewed by Eric Seidel.
+
+        * fast/dom/shadow/shadow-boundary-events-expected.txt:
+        * fast/dom/shadow/shadow-boundary-events.html:
+            - Changed the focusin/focusout parts of this layout test to include the
+              relatedTarget attribute, which is now set on FocusEvent objects
+        * fast/events/event-creation-expected.txt:
+        * fast/events/event-creation.html:
+            - Added the creation of FocusEvents to this layout test
+        * fast/events/related-target-focusevent-expected.txt: Added.
+        * fast/events/related-target-focusevent.html: Added.
+            - This is a new layout test I created specifically for this patch
+
+2012-02-16  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK baselines for new SVG and fast/ tests.
+
+        * platform/gtk/fast/css/font-face-synthetic-bold-italic-expected.txt: Added.
+        * platform/gtk/fast/css/font-face-weight-matching-expected.txt: Added.
+        * platform/gtk/fast/js/constructor-length-expected.txt: Added.
+        * platform/gtk/svg/custom/glyph-selection-arabic-forms-expected.txt: Added.
+        * platform/gtk/svg/custom/glyph-selection-bidi-mirror-expected.txt: Added.
+        * platform/gtk/svg/custom/glyph-selection-non-bmp-expected.txt: Added.
+        * platform/gtk/svg/text/ems-display-none-expected.txt: Added.
+        * platform/gtk/svg/text/exs-display-none-expected.txt: Added.
+        * platform/gtk/svg/text/text-fill-opacity-expected.txt: Added.
+        * platform/gtk/svg/text/tspan-dynamic-positioning-expected.txt: Added.
+
+2012-02-16  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline.
+
+        * platform/gtk/fast/table/027-expected.txt:
+        * platform/gtk/fast/table/027-vertical-expected.txt:
+        * platform/gtk/tables/mozilla/bugs/bug14929-expected.txt:
+
+2012-02-16  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        [GTK] fast/events/drag-dataTransfer-live-attributes.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=78818
+
+        Unreviewed, rebaseline the test and unskip, as advised by Daniel Cheng.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/events/drag-dataTransfer-live-attributes-expected.txt: \
Added. +
+2012-02-16  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, skipping 2 new test failures and unskipping some
+        needing rebaselining.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/test_expectations.txt:
+
+2012-02-16  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r107869 and skip a failing test.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+
+2012-02-16  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Unreviewed chromium expectations update.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Ilya Tikhonovsky  &lt;loislo@chromium.org&gt;
+
+        Web Inspector: [heap snapshot] It could be useful to have access to the \
selected heap object from the console. +        \
https://bugs.webkit.org/show_bug.cgi?id=78496 +
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/protocol/console-agent-expected.txt:
+        * inspector/protocol/console-agent.html:
+
+2012-02-16  Ilya Tikhonovsky  &lt;loislo@chromium.org&gt;
+
+        [chromium] Rebaseline after r107881
+
+        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt: \
Added. +
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #21 of N.
+
+        * platform/chromium-linux-x86/fast/images/color-jpeg-with-color-profile-expected.txt: \
Removed. +        * platform/chromium-linux/fast/images/color-jpeg-with-color-profile-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/fast/images/color-jpeg-with-color-profile-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/images/color-jpeg-with-color-profile-expected.png:
 +        * platform/chromium-mac/fast/images/color-jpeg-with-color-profile-expected.txt: \
Removed. +        * platform/chromium-win-vista/fast/images/color-jpeg-with-color-profile-expected.txt: \
Removed. +        * platform/chromium-win-xp/fast/images/color-jpeg-with-color-profile-expected.txt: \
Removed. +        * platform/chromium-win/fast/images/color-jpeg-with-color-profile-expected.txt: \
Removed. +        * platform/chromium/test_expectations.txt:
+        * platform/gtk/fast/images/color-jpeg-with-color-profile-expected.txt: \
Removed. +        * platform/mac/fast/images/color-jpeg-with-color-profile-expected.png: \
Renamed from LayoutTests/fast/images/color-jpeg-with-color-profile-expected.png. +    \
* platform/qt/fast/images/color-jpeg-with-color-profile-expected.txt: Removed. +
+2012-02-16  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: [InspectorIndexedDB] Add IndexedDB TreeElement to resources \
panel. +        https://bugs.webkit.org/show_bug.cgi?id=78609
+
+        Reviewed by Yury Semikhatsky.
+
+        * http/tests/inspector/indexeddb/database-data-expected.txt:
+        * http/tests/inspector/indexeddb/database-data.html:
+        * http/tests/inspector/indexeddb/database-names-expected.txt:
+        * http/tests/inspector/indexeddb/database-structure-expected.txt:
+        * http/tests/inspector/indexeddb/database-structure.html:
+        * http/tests/inspector/indexeddb/indexeddb-test.js:
+        (initialize_IndexedDBTest.InspectorTest.dumpIndexedDBTree):
+        (initialize_IndexedDBTest.InspectorTest.evaluateWithCallback):
+        (initialize_IndexedDBTest.InspectorTest._installIndexedDBSniffer.consoleMessageOverride):
 +        (initialize_IndexedDBTest.InspectorTest._installIndexedDBSniffer):
+        (createDatabase.closeDatabase):
+        (createDatabase):
+        (deleteDatabase):
+        * http/tests/inspector/indexeddb/resources-panel-expected.txt: Added.
+        * http/tests/inspector/indexeddb/resources-panel.html_disabled: Added.
+        * http/tests/inspector/indexeddb/resources/without-indexed-db.html: Added.
+
+2012-02-16  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Add missing results for Lion, and regenerate one test result \
with Lion, +        so my baseline passes again with --tolerance 0 -p svg.
+
+        * platform/mac/svg/text/text-fill-opacity-expected.png: Added.
+        * platform/mac/svg/text/text-fill-opacity-expected.txt: Added.
+        * platform/mac/svg/text/tspan-dynamic-positioning-expected.png:
+
+2012-02-15  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        REGRESSION (Safari 5.0.5 - 5.1): No animation on \
svg-wow.org/text-effects/text-effects.xhtml +        \
https://bugs.webkit.org/show_bug.cgi?id=65072 +
+        Reviewed by Zoltan Herczeg.
+
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/svg/text/ems-display-none-expected.png: Added.
+        * platform/mac/svg/text/ems-display-none-expected.txt: Added.
+        * platform/mac/svg/text/exs-display-none-expected.png: Added.
+        * platform/mac/svg/text/exs-display-none-expected.txt: Added.
+        * svg/text/ems-display-none.svg: Added.
+        * svg/text/exs-display-none.svg: Added.
+
+2012-02-16  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/Skipped: Skip new failing tests.
+        * platform/qt/fast/dom/Window/window-properties-expected.txt: Updated after \
r107869. +        * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: \
Updated after r107869. +        * \
platform/qt/fast/js/global-constructors-expected.txt: Updated after r107869. +
+2012-02-16  Roland Steiner  &lt;rolandsteiner@chromium.org&gt;
+
+        &lt;style scoped&gt;: Implement scoped selector matching in the slow path
+        https://bugs.webkit.org/show_bug.cgi?id=77528
+
+        Extended existing &lt;style scoped&gt; tests to also verify that selector \
matching doesn't exceed the scoping element. +
+        Reviewed by Antti Koivisto.
+
+        * fast/css/style-scoped/style-scoped-basic-expected.txt:
+        * fast/css/style-scoped/style-scoped-basic.html:
+        * fast/css/style-scoped/style-scoped-remove-scoped-expected.txt:
+        * fast/css/style-scoped/style-scoped-remove-scoped.html:
+        * fast/css/style-scoped/style-scoped-set-scoped-expected.txt:
+        * fast/css/style-scoped/style-scoped-set-scoped.html:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #20 of N.
+
+        * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
 +        * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug6933-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
 +        * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug6933-expected.png: \
Removed. +        * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
 +        * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
 +        * platform/chromium/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: \
Removed. +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #19 of N.
+
+        * platform/chromium-linux/tables/mozilla/marvin/td_valign_baseline-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/td_valign_bottom-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/td_valign_middle-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/td_valign_top-expected.png:
+        * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_top-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.png:
+        * platform/chromium-linux/tables/mozilla/marvin/thead_valign_baseline-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/thead_valign_bottom-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/thead_valign_middle-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/thead_valign_top-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tr_valign_baseline-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tr_valign_bottom-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tr_valign_middle-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tr_valign_top-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_baseline-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_bottom-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_middle-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_top-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_top-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_baseline-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_bottom-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_middle-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_top-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_baseline-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_bottom-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_middle-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_top-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_baseline-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_bottom-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_middle-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_top-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_baseline-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_bottom-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_middle-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_top-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_top-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_baseline-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_bottom-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_middle-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_top-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_baseline-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_bottom-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_middle-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_top-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_baseline-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_bottom-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_middle-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_top-expected.png: \
Added. +        * platform/chromium-mac/tables/mozilla/marvin/td_valign_baseline-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/td_valign_bottom-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/td_valign_middle-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/td_valign_top-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_top-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/th_valign_baseline-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/th_valign_bottom-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/th_valign_middle-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/th_valign_top-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/thead_valign_baseline-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/thead_valign_bottom-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/thead_valign_middle-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/thead_valign_top-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tr_valign_baseline-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tr_valign_bottom-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tr_valign_middle-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tr_valign_top-expected.png: \
Removed. +        * platform/chromium-win/tables/mozilla/marvin/td_valign_baseline-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/td_valign_bottom-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/td_valign_middle-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/td_valign_top-expected.png:
+        * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_top-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.png:
+        * platform/chromium-win/tables/mozilla/marvin/thead_valign_baseline-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/thead_valign_bottom-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/thead_valign_middle-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/thead_valign_top-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tr_valign_baseline-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tr_valign_bottom-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tr_valign_middle-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tr_valign_top-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #18 of N.
+
+        * platform/chromium-linux/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
 +        * platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.png:
 +        * platform/chromium-mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png: \
Removed. +        * platform/chromium-win/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
 +        * platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.png:
 +        * platform/chromium/tables/mozilla_expected_failures/other/test4-expected.txt: \
Removed. +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #17 of N.
+
+        * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_middle-expected.png:
 +        * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_top-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_middle-expected.png:
 +        * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_top-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_middle-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_top-expected.png: \
Added. +        * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_middle-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_top-expected.png: \
Removed. +        * platform/chromium-win/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tbody_valign_middle-expected.png:
 +        * platform/chromium-win/tables/mozilla/marvin/tbody_valign_top-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-16  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #16 of N.
+
+        * platform/chromium-linux/tables/mozilla/bugs/bug29314-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug2981-2-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug4093-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug4284-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug56563-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug5797-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug625-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug6404-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug2981-2-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4093-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4284-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4427-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug56563-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug5797-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug625-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug6404-expected.png:
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug29314-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2981-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4093-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4284-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4427-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug50695-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug56563-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug5797-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug625-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug6404-expected.png: \
Added. +        * platform/chromium-mac/tables/mozilla/bugs/bug29314-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug2981-2-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug4093-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug4284-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug4427-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug50695-2-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug56563-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug5797-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug625-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug6404-expected.png: \
Removed. +        * platform/chromium-win/tables/mozilla/bugs/bug29314-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug2981-2-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug4093-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug4284-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug4427-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug50695-2-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug56563-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug5797-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug625-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug6404-expected.png:
+        * platform/chromium/tables/mozilla/bugs/bug56563-expected.txt: Removed.
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/tables/mozilla/bugs/bug50695-2-expected.txt: Removed.
+        * platform/qt/tables/mozilla/bugs/bug29314-expected.txt: Removed.
+        * platform/qt/tables/mozilla/bugs/bug50695-2-expected.txt: Removed.
+        * tables/mozilla/bugs/bug29314-expected.txt: Renamed from \
LayoutTests/platform/gtk/tables/mozilla/bugs/bug29314-expected.txt. +        * \
tables/mozilla/bugs/bug50695-2-expected.txt: Renamed from \
LayoutTests/platform/gtk/tables/mozilla/bugs/bug50695-2-expected.txt. +
+2012-02-15  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #15 of N.
+
+        * platform/chromium-linux/tables/mozilla/bugs/bug12908-1-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug1296-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug1430-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug12908-1-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1296-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1430-expected.png:
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1271-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug12908-1-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1296-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug13169-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1430-expected.png: \
Added. +        * platform/chromium-mac/tables/mozilla/bugs/bug1271-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug12908-1-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug1296-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug13169-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug1430-expected.png: \
Removed. +        * platform/chromium-win/tables/mozilla/bugs/bug1271-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug12908-1-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug1296-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug13169-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug1430-expected.png:
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/tables/mozilla/bugs/bug1271-expected.txt: Removed.
+        * platform/mac/tables/mozilla/bugs/bug13169-expected.txt: Removed.
+        * platform/qt/tables/mozilla/bugs/bug1271-expected.txt: Removed.
+        * platform/qt/tables/mozilla/bugs/bug13169-expected.txt: Removed.
+        * tables/mozilla/bugs/bug1271-expected.txt: Renamed from \
LayoutTests/platform/gtk/tables/mozilla/bugs/bug1271-expected.txt. +        * \
tables/mozilla/bugs/bug13169-expected.txt: Renamed from \
LayoutTests/platform/gtk/tables/mozilla/bugs/bug13169-expected.txt. +
+2012-02-15  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening after r107814.
+
+        * platform/qt/css3/filters/effect-blur-hw-expected.png:
+        * platform/qt/css3/filters/effect-blur-hw-expected.txt:
+        * platform/qt/css3/filters/effect-combined-expected.png:
+        * platform/qt/css3/filters/effect-combined-expected.txt:
+        * platform/qt/css3/filters/effect-combined-hw-expected.png:
+        * platform/qt/css3/filters/effect-combined-hw-expected.txt:
+        * platform/qt/css3/filters/effect-drop-shadow-hw-expected.png:
+        * platform/qt/css3/filters/effect-drop-shadow-hw-expected.txt:
+        * platform/qt/css3/filters/effect-grayscale-hw-expected.png:
+        * platform/qt/css3/filters/effect-grayscale-hw-expected.txt:
+        * platform/qt/css3/filters/effect-hue-rotate-hw-expected.png:
+        * platform/qt/css3/filters/effect-hue-rotate-hw-expected.txt:
+        * platform/qt/css3/filters/effect-invert-hw-expected.png:
+        * platform/qt/css3/filters/effect-invert-hw-expected.txt:
+        * platform/qt/css3/filters/effect-opacity-hw-expected.png:
+        * platform/qt/css3/filters/effect-opacity-hw-expected.txt:
+        * platform/qt/css3/filters/effect-saturate-hw-expected.png:
+        * platform/qt/css3/filters/effect-saturate-hw-expected.txt:
+        * platform/qt/css3/filters/effect-sepia-hw-expected.png:
+        * platform/qt/css3/filters/effect-sepia-hw-expected.txt:
+
+2012-02-15  Daniel Cheng  &lt;dcheng@chromium.org&gt;
+
+        dataTransfer.types (HTML5 drag &amp; drop) should return DOMStringList
+        https://bugs.webkit.org/show_bug.cgi?id=30416
+
+        Reviewed by Eric Seidel.
+
+        Add a test to document the fact that many dataTransfer attributes aren't \
live and return a +        different object each time they're accessed. Also update \
tests to use contains() instead of +        indexOf().
+
+        * editing/pasteboard/clipboard-customData.html:
+        * editing/pasteboard/onpaste-text-html-types.html:
+        * fast/events/drag-and-drop-dataTransfer-types-nocrash.html:
+        * fast/events/drag-customData.html:
+        * fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
+        * fast/events/drag-dataTransfer-live-attributes.html: Copied from \
LayoutTests/fast/events/drag-customData.html. +        * \
http/tests/local/fileapi/resources/setup-file-input-element-for-drag.js: +        * \
http/tests/security/clipboard/script-tests/clipboard-file-access.js: +        \
(checkForEventTransferType): +
+2012-02-15  Bear Travis  &lt;betravis@adobe.com&gt;
+
+        Repaint issues on changing 'viewBox' of inner SVG
+        https://bugs.webkit.org/show_bug.cgi?id=77903
+
+        Adding test for 77903. When setting the viewbox on an inner svg
+        element causes the content to become smaller, make sure that the
+        area behind the content is redrawn.
+        
+        Reviewed by Nikolas Zimmermann.
+
+        * platform/chromium/test_expectations.txt:
+        * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
+        * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
+        * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
+
+2012-02-15  Bear Travis  &lt;betravis@adobe.com&gt;
+
+        Repaint issues on changing 'viewBox' of inner SVG
+        https://bugs.webkit.org/show_bug.cgi?id=77903
+
+        Adding test for 77903. When setting the viewbox on an inner svg
+        element causes the content to become smaller, make sure that the
+        area behind the content is redrawn.
+        
+        Reviewed by Nikolas Zimmermann.
+
+        * platform/chromium/test_expectations.txt:
+        * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
+        * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
+        * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
+
+2012-02-15  Daniel Cheng  &lt;dcheng@chromium.org&gt;
+
+        dataTransfer.types (HTML5 drag &amp; drop) should return DOMStringList
+        https://bugs.webkit.org/show_bug.cgi?id=30416
+
+        Reviewed by Eric Seidel.
+
+        Add a test to document the fact that many dataTransfer attributes aren't \
live and return a +        different object each time they're accessed. Also update \
tests to use contains() instead of +        indexOf().
+
+        * editing/pasteboard/clipboard-customData.html:
+        * editing/pasteboard/onpaste-text-html-types.html:
+        * fast/events/drag-and-drop-dataTransfer-types-nocrash.html:
+        * fast/events/drag-customData.html:
+        * fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
+        * fast/events/drag-dataTransfer-live-attributes.html: Copied from \
LayoutTests/fast/events/drag-customData.html. +        * \
http/tests/local/fileapi/resources/setup-file-input-element-for-drag.js: +        * \
http/tests/security/clipboard/script-tests/clipboard-file-access.js: +        \
(checkForEventTransferType): +
+2012-02-15  Bear Travis  &lt;betravis@adobe.com&gt;
+
+        Repaint issues on changing 'viewBox' of inner SVG
+        https://bugs.webkit.org/show_bug.cgi?id=77903
+
+        Adding test for 77903. When setting the viewbox on an inner svg
+        element causes the content to become smaller, make sure that the
+        area behind the content is redrawn.
+        
+        Reviewed by Nikolas Zimmermann.
+
+        * platform/chromium/test_expectations.txt:
+        * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
+        * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
+        * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
+
+2012-02-15  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening after r107811.
+
+        * platform/qt/platform/qt/plugins/qt-qwidget-plugin-expected.txt:
+        * platform/qt/plugins/application-plugin-plugins-disabled-expected.txt:
+        * platform/qt/plugins/iframe-plugin-bgcolor-expected.txt:
+        * platform/qt/plugins/netscape-dom-access-expected.txt:
+
+2012-02-15  Ilya Tikhonovsky  &lt;loislo@chromium.org&gt;
+
+        [chromium] Unreviewed rebaseline after r107864.
+
+        * platform/chromium-mac-leopard/svg/batik/text/textDecoration-expected.png:
+        * platform/chromium-mac-leopard/svg/css/text-shadow-multiple-expected.png:
+        * platform/chromium-mac-leopard/svg/text/text-text-08-b-expected.png:
+        * platform/chromium-mac-leopard/svg/wicd/test-scalable-background-image2-expected.png:
 +        * platform/chromium-mac-snowleopard/compositing/plugins/composited-plugin-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/compositing/plugins/composited-plugin-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/text-text-08-b-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/batik/text/textDecoration-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/css/text-shadow-multiple-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/text/text-text-08-b-expected.png:
+        * platform/chromium-mac-snowleopard/svg/wicd/test-scalable-background-image2-expected.png:
 +        * platform/chromium-mac/compositing/plugins/composited-plugin-expected.png: \
Removed. +        * platform/chromium-mac/svg/W3C-SVG-1.1/text-text-08-b-expected.png: \
Removed. +
+2012-02-15  Kentaro Hara  &lt;haraken@chromium.org&gt;
+
+        [Mac] PasteboardMac.mm build fails
+        https://bugs.webkit.org/show_bug.cgi?id=78655
+
+        Reviewed by Enrica Casucci.
+
+        The added test drops multiple files onto an editable element,
+        and checks if the filenames are inserted into the editable element.
+
+        * editing/pasteboard/drag-files-to-editable-element-expected.txt: Added.
+        * editing/pasteboard/drag-files-to-editable-element.html: Added.
+        * platform/chromium/test_expectations.txt:
+        * platform/efl/Skipped:
+        * platform/gtk/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * platform/wk2/Skipped:
+
+2012-02-15  Ilya Tikhonovsky  &lt;loislo@chromium.org&gt;
+
+        [chromium] Unreviewed rebaseline after r107864.
+
+        * platform/chromium-mac-snowleopard/svg/text/text-fill-opacity-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/text/text-fill-opacity-expected.txt: \
Added. +        * platform/chromium-mac/fast/canvas/text-globalAlpha-expected.txt: \
Removed. +        * platform/chromium-win/svg/text/text-fill-opacity-expected.png: \
Added. +        * platform/chromium-win/svg/text/text-fill-opacity-expected.txt: \
Renamed from LayoutTests/platform/chromium-linux/svg/text/text-fill-opacity-expected.txt.
 +
+2012-02-15  Pablo Flouret  &lt;pablof@motorola.com&gt;
+
+        Add support for the translate attribute in html elements.
+        https://bugs.webkit.org/show_bug.cgi?id=78751
+
+        Reviewed by Adam Barth.
+
+        The translate attribute is used to specify whether an element's
+        attribute values and the values of its Text node children are to be
+        translated when the page is localized, or whether to leave them
+        unchanged.
+
+        Details at http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#attr-translate
 +
+        * fast/dom/HTMLElement/translate-expected.txt: Added.
+        * fast/dom/HTMLElement/translate.html: Added.
+
+2012-02-15  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        Unreviewed. compositing/culling/scrolled-within-boxshadow.html IMAGE \
failure. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-15  Sami Kyostila  &lt;skyostil@google.com&gt;
+
+        Add stacking context test for -webkit-overflow-scrolling CSS property
+        https://bugs.webkit.org/show_bug.cgi?id=78664
+
+        Reviewed by Eric Seidel.
+
+        Make sure a stacking context is created for elements with touch overflow \
scrolling. +
+        * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt: \
Added new property. +        * \
platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: \
Ditto. +        * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt: \
Ditto. +        * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context-expected.png: \
Added. +        * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context-expected.txt: \
Added. +        * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context.html: \
Added. +
+2012-02-15  Alexey Proskuryakov  &lt;ap@apple.com&gt;
+
+        Crash after trying to use FileReader in a document with null origin string
+        https://bugs.webkit.org/show_bug.cgi?id=78649
+
+        Reviewed by Enrica Casucci.
+
+        * fast/files/null-origin-string-expected.txt: Added.
+        * fast/files/null-origin-string.html: Added.
+
+        Dragging files is only implemented on a few platforms. Brought some order to \
skipped files +        for these tests:
+
+        * platform/mac/Skipped: Bug 45576 has been fixed long ago; unskip the test.
+
+        * platform/efl/Skipped:
+        * platform/qt/Skipped:
+        Skipped the new tests.
+
+        * platform/gtk-wk2/Skipped:
+        * platform/mac-wk2/Skipped:
+        * platform/win-wk2/Skipped:
+        * platform/wk2/Skipped:
+        Skipped the new tests, and moved other tests using \
eventSender.beginDragWithFiles to a  +        central location. No WK2 port \
implements these yet, so we needn't maintain the lists +        separately.
+
+2012-02-15  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #14 of N.
+
+        * platform/chromium-linux/tables/mozilla/bugs/bug15544-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug17138-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug15544-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug17138-expected.png:
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug120107-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug12908-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug15544-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug17138-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug196870-expected.png: \
Added. +        * platform/chromium-mac/tables/mozilla/bugs/bug120107-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug12908-2-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug15544-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug17138-expected.png: \
Removed. +        * platform/chromium-mac/tables/mozilla/bugs/bug196870-expected.png: \
Removed. +        * platform/chromium-win/tables/mozilla/bugs/bug120107-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug12908-2-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug15544-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug17138-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug196870-expected.png:
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/tables/mozilla/bugs/bug120107-expected.txt: Removed.
+        * platform/mac/tables/mozilla/bugs/bug12908-2-expected.txt: Removed.
+        * platform/mac/tables/mozilla/bugs/bug196870-expected.txt: Removed.
+        * platform/qt/tables/mozilla/bugs/bug120107-expected.txt: Removed.
+        * platform/qt/tables/mozilla/bugs/bug12908-2-expected.txt: Removed.
+        * platform/qt/tables/mozilla/bugs/bug196870-expected.txt: Removed.
+        * tables/mozilla/bugs/bug120107-expected.txt: Renamed from \
LayoutTests/platform/gtk/tables/mozilla/bugs/bug120107-expected.txt. +        * \
tables/mozilla/bugs/bug12908-2-expected.txt: Renamed from \
LayoutTests/platform/gtk/tables/mozilla/bugs/bug12908-2-expected.txt. +        * \
tables/mozilla/bugs/bug196870-expected.txt: Renamed from \
LayoutTests/platform/gtk/tables/mozilla/bugs/bug196870-expected.txt. +
+2012-02-15  Erik Arvidsson  &lt;arv@chromium.org&gt;
+
+        Expose Window constructor
+        https://bugs.webkit.org/show_bug.cgi?id=78722
+
+        Reviewed by Adam Barth.
+
+        * fast/dom/Window/window-constructor-presence-expected.txt: Added.
+        * fast/dom/Window/window-constructor-presence.html: Added.
+
+2012-02-15  Kelly Norton  &lt;knorton@google.com&gt;
+
+        fill-opacity does not render properly only on Chromium Mac.
+        https://bugs.webkit.org/show_bug.cgi?id=78624
+
+        Reviewed by Stephen White.
+
+        * platform/chromium-linux/svg/text/text-fill-opacity-expected.png: Added.
+        * platform/chromium-linux/svg/text/text-fill-opacity-expected.txt: Added.
+        * platform/chromium/test_expectations.txt:
+        * svg/text/text-fill-opacity.svg: Added.
+
+2012-02-15  Tim Horton  &lt;timothy_horton@apple.com&gt;
+
+        REGRESSION(r105057): Dynamically changing &lt;tspan&gt; offsets is broken
+        https://bugs.webkit.org/show_bug.cgi?id=78385
+        &lt;rdar://problem/10832932&gt;
+
+        Reviewed by Simon Fraser.
+
+        Add a test ensuring that changing the offset of a &lt;tspan&gt; post-load \
results in correct layout. +
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/svg/text/tspan-dynamic-positioning-expected.png: Added.
+        * platform/mac/svg/text/tspan-dynamic-positioning-expected.txt: Added.
+        * svg/text/tspan-dynamic-positioning.svg: Added.
+
+2012-02-15  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        Remove Skipped tests that were broken by r107672.
+        https://bugs.webkit.org/show_bug.cgi?id=76564
+
+        Reviewed by Adam Barth.
+
+        * platform/gtk/Skipped:
+        * platform/qt/Skipped:
+
+2012-02-15  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed.  regionOverflow tests are flaky in debug.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-15  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, rebasing tests after r107836.
+
+        * platform/chromium-linux-x86/fast/css/box-shadow-and-border-radius-expected.png:
 +        * platform/chromium-linux/fast/css/box-shadow-and-border-radius-expected.png:
 +        * platform/chromium-linux/fast/transforms/shadows-expected.png:
+        * platform/chromium-mac-leopard/fast/css/box-shadow-and-border-radius-expected.png:
 +        * platform/chromium-mac-leopard/fast/transforms/shadows-expected.png:
+        * platform/chromium-mac-snowleopard/fast/css/box-shadow-and-border-radius-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/transforms/shadows-expected.png:
+        * platform/chromium-win-vista/fast/css/box-shadow-and-border-radius-expected.png:
 +        * platform/chromium-win-xp/fast/css/box-shadow-and-border-radius-expected.png:
 +        * platform/chromium-win/fast/box-shadow/border-radius-big-expected.png:
+        * platform/chromium-win/fast/css/box-shadow-and-border-radius-expected.png:
+        * platform/chromium-win/fast/transforms/shadows-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-15  Stephen White  &lt;senorblanco@chromium.org&gt;
+
+        Unreviewed gardening:  mark a test as no longer MISSING.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-15  Tony Chang  &lt;tony@chromium.org&gt;
+
+        Unreviewed gardening: Fix more results after r107833.
+
+        * fast/css/getComputedStyle/computed-style-expected.txt:
+        * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
+        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * svg/css/getComputedStyle-basic-expected.txt:
+
+2012-02-15  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, adding the chromium-mac result for this test (test \
added in r107822). +
+        * platform/chromium-mac-snowleopard/css3/filters/multiple-filters-invalidation-expected.png: \
Added. +
+2012-02-15  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Add a test asserting that the second argument to MutationCallback is the \
observer +        https://bugs.webkit.org/show_bug.cgi?id=78653
+
+        Reviewed by Ryosuke Niwa.
+
+        This is specified in the spec text, so I wanted to make sure it was
+        properly exercised in a layout test.
+
+        * fast/mutation/callback-second-argument-expected.txt: Added.
+        * fast/mutation/callback-second-argument.html: Added.
+
+2012-02-15  Ojan Vafai  &lt;ojan@chromium.org&gt;
+
+        getComputedStyle of flex-item-align:auto should resolve to it's parent's \
flex-align value +        https://bugs.webkit.org/show_bug.cgi?id=76326
+
+        Reviewed by Tony Chang.
+
+        * css3/flexbox/css-properties-expected.txt:
+        * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
 +        * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
+
+2012-02-15  Eric Carlson  &lt;eric.carlson@apple.com&gt;
+
+        Unset the active flag when TextTrackCues go away
+        https://bugs.webkit.org/show_bug.cgi?id=72552
+
+        Reviewed by Maciej Stachowiak.
+
+        * media/track/track-active-cues-expected.txt: Added.
+        * media/track/track-active-cues.html: Added.
+        * track-cue-mutable-text.html: Update to not run test until track and video \
have +            both loaded.
+        * media/video-test.js:
+        (waitForEventsAndCall): New, call the specified function after the list of \
events +            has been seen.
+
+2012-02-15  Stephen White  &lt;senorblanco@chromium.org&gt;
+
+        Unreviewed gardening.
+
+        Added baseline for new test multiple-filters-invalidation.html.
+
+        * platform/chromium-win/css3/filters/multiple-filters-invalidation-expected.png: \
Added. +
+2012-02-15  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Stop skipping fast/filesystem/file-writer-gc-blob.html, as FileWriter is \
well-supported in DRT. +
+        Unreviewed test expectations update.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-15  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, land chromium pixel results after r107797.
+
+        * platform/chromium-linux/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
 +        * platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
 +        * platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
 +        * platform/chromium-linux/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
 +        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
 +        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
 +        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
 +        * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: \
Added. +        * platform/chromium-mac/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: \
Removed. +        * platform/chromium-mac/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: \
Removed. +        * platform/chromium-mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: \
Removed. +        * platform/chromium-mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.txt: \
Removed. +        * platform/chromium-win/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
 +        * platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
 +        * platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
 +        * platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
 +        * platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.txt: \
Removed. +
+2012-02-15  Tony Chang  &lt;tony@chromium.org&gt;
+
+        fast/regions/element-region-overflow-state.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=78654
+
+        Reviewed by Ojan Vafai.
+
+        Sometimes layout happens before test() is called (e.g., if one of the
+        script or other resources take a long time to load).  In that case, we
+        get different results.  Not waiting for the load event should always
+        be before layout.
+
+        * fast/regions/element-region-overflow-state-expected.txt:
+        * fast/regions/element-region-overflow-state.html:
+        * fast/regions/element-region-overflow-state-vertical-rl-expected.txt
+        * fast/regions/element-region-overflow-state-vertical-rl.html
+
+2012-02-15  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Re-specify flakiness of http/tests/filesystem/workers as PASS TIMEOUT, since \
they never crash. +
+        Unreviewed test expectations update.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Stephen White  &lt;senorblanco@chromium.org&gt;
+
+        New test to exercise invalidation of multiple CSS filters.
+        https://bugs.webkit.org/show_bug.cgi?id=78626
+
+        Reviewed by Darin Adler.
+
+        * css3/filters/multiple-filters-invalidation-expected.txt: Added.
+        * css3/filters/multiple-filters-invalidation.html: Added.
+        * platform/mac-snowleopard/css3/filters/multiple-filters-invalidation-expected.png: \
Added. +
+2012-02-15  No'am Rosenthal  &lt;noam.rosenthal@nokia.com&gt;
+
+        [Texmap] Support filters in TextureMapperImageBuffer
+        https://bugs.webkit.org/show_bug.cgi?id=76026
+
+        Unskipping hardware filter tests. They're still skipped in WebKit2.
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * platform/qt-5.0-wk2/Skipped:
+        * platform/qt/Skipped:
+        * platform/qt/css3/filters/crash-hw-sw-switch-expected.png:
+        * platform/qt/css3/filters/effect-blur-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-blur-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-combined-expected.png: Added.
+        * platform/qt/css3/filters/effect-combined-expected.txt: Added.
+        * platform/qt/css3/filters/effect-combined-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-combined-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-drop-shadow-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-drop-shadow-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-grayscale-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-grayscale-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-hue-rotate-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-hue-rotate-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-invert-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-invert-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-opacity-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-opacity-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-saturate-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-saturate-hw-expected.txt: Added.
+        * platform/qt/css3/filters/effect-sepia-hw-expected.png: Added.
+        * platform/qt/css3/filters/effect-sepia-hw-expected.txt: Added.
+
+2012-02-15  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #13 of N.
+
+        * platform/chromium-linux/tables/mozilla/bugs/bug10565-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug11026-expected.png:
+        * platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug10565-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug11026-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1188-expected.png:
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug10565-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug11026-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png:
 +        * platform/chromium-mac/tables/mozilla/bugs/bug10565-expected.png: Removed.
+        * platform/chromium-mac/tables/mozilla/bugs/bug11026-expected.png: Removed.
+        * platform/chromium-win/tables/mozilla/bugs/bug10565-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug11026-expected.png:
+        * platform/chromium-win/tables/mozilla/bugs/bug1188-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-15  Yury Semikhatsky  &lt;yurys@chromium.org&gt;
+
+        Web Inspector: crash when inspecting an element on a page with eval disabled \
by CSP +        https://bugs.webkit.org/show_bug.cgi?id=78705
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/elements/resolve-node-blocked-expected.txt: Added.
+        * inspector/elements/resolve-node-blocked.html: Added.
+
+2012-02-15  Kent Tamura  &lt;tkent@chromium.org&gt;
+
+        Clean up radio button tests
+        https://bugs.webkit.org/show_bug.cgi?id=78679
+
+        Reviewed by Kentaro Hara.
+
+        - Split checkbox-radio-onchange.html into checkbox-onchange.html and \
radio/radio-onchange.html. +        - Convert the following rendering tests to text \
tests. +          radio-attr-order.html
+          radio-nested-labels.html
+          radio_checked.html
+          radio_checked_dynamic.html
+
+        This change is a preparation of moving radio button tests to \
fast/forms/radio/. +
+        * fast/forms/checkbox-onchange-expected.txt: Added.
+        * fast/forms/checkbox-onchange.html: Added.
+        * fast/forms/checkbox-radio-onchange.html: Removed.
+        * fast/forms/radio-attr-order-expected.txt: Added.
+        * fast/forms/radio-attr-order.html:
+        * fast/forms/radio-nested-labels-expected.txt: Added.
+        * fast/forms/radio-nested-labels.html:
+        * fast/forms/radio/radio-onchange-expected.txt: Added.
+        * fast/forms/radio/radio-onchange.html: Added.
+        * fast/forms/radio_checked-expected.txt: Added.
+        * fast/forms/radio_checked.html:
+        * fast/forms/radio_checked_dynamic-expected.txt: Added.
+        * fast/forms/radio_checked_dynamic.html:
+        * platform/chromium-linux/fast/forms/checkbox-radio-onchange-expected.png: \
Removed. +        * platform/chromium-linux/fast/forms/radio-attr-order-expected.png: \
Removed. +        * platform/chromium-linux/fast/forms/radio-nested-labels-expected.png: \
Removed. +        * platform/chromium-linux/fast/forms/radio_checked-expected.png: \
Removed. +        * platform/chromium-linux/fast/forms/radio_checked_dynamic-expected.png: \
Removed. +        * platform/chromium-win/fast/forms/checkbox-radio-onchange-expected.png: \
Removed. +        * platform/chromium-win/fast/forms/checkbox-radio-onchange-expected.txt: \
Removed. +        * platform/chromium-win/fast/forms/radio-attr-order-expected.png: \
Removed. +        * platform/chromium-win/fast/forms/radio-attr-order-expected.txt: \
Removed. +        * platform/chromium-win/fast/forms/radio-nested-labels-expected.png: \
Removed. +        * platform/chromium-win/fast/forms/radio-nested-labels-expected.txt: \
Removed. +        * platform/chromium-win/fast/forms/radio_checked-expected.png: \
Removed. +        * platform/chromium-win/fast/forms/radio_checked-expected.txt: \
Removed. +        * platform/chromium-win/fast/forms/radio_checked_dynamic-expected.png: \
Removed. +        * platform/chromium-win/fast/forms/radio_checked_dynamic-expected.txt: \
Removed. +        * platform/chromium/test_expectations.txt:
+        * platform/efl/fast/forms/checkbox-radio-onchange-expected.png: Removed.
+        * platform/efl/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
+        * platform/efl/fast/forms/radio-attr-order-expected.png: Removed.
+        * platform/efl/fast/forms/radio-attr-order-expected.txt: Removed.
+        * platform/efl/fast/forms/radio-nested-labels-expected.png: Removed.
+        * platform/efl/fast/forms/radio-nested-labels-expected.txt: Removed.
+        * platform/efl/fast/forms/radio_checked-expected.png: Removed.
+        * platform/efl/fast/forms/radio_checked-expected.txt: Removed.
+        * platform/efl/fast/forms/radio_checked_dynamic-expected.png: Removed.
+        * platform/efl/fast/forms/radio_checked_dynamic-expected.txt: Removed.
+        * platform/gtk/fast/forms/checkbox-radio-onchange-expected.png: Removed.
+        * platform/gtk/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
+        * platform/gtk/fast/forms/radio-attr-order-expected.png: Removed.
+        * platform/gtk/fast/forms/radio-attr-order-expected.txt: Removed.
+        * platform/gtk/fast/forms/radio-nested-labels-expected.png: Removed.
+        * platform/gtk/fast/forms/radio-nested-labels-expected.txt: Removed.
+        * platform/gtk/fast/forms/radio_checked-expected.png: Removed.
+        * platform/gtk/fast/forms/radio_checked-expected.txt: Removed.
+        * platform/gtk/fast/forms/radio_checked_dynamic-expected.png: Removed.
+        * platform/gtk/fast/forms/radio_checked_dynamic-expected.txt: Removed.
+        * platform/mac-leopard/fast/forms/checkbox-radio-onchange-expected.png: \
Removed. +        * platform/mac-leopard/fast/forms/radio-attr-order-expected.png: \
Removed. +        * platform/mac-leopard/fast/forms/radio-nested-labels-expected.png: \
Removed. +        * platform/mac-leopard/fast/forms/radio_checked-expected.png: \
Removed. +        * platform/mac-leopard/fast/forms/radio_checked_dynamic-expected.png: \
Removed. +        * platform/mac-snowleopard/fast/forms/radio_checked-expected.png: \
Removed. +        * platform/mac-snowleopard/fast/forms/radio_checked-expected.txt: \
Removed. +        * platform/mac-snowleopard/fast/forms/radio_checked_dynamic-expected.png: \
Removed. +        * platform/mac-snowleopard/fast/forms/radio_checked_dynamic-expected.txt: \
Removed. +        * platform/mac/fast/forms/checkbox-radio-onchange-expected.png: \
Removed. +        * platform/mac/fast/forms/checkbox-radio-onchange-expected.txt: \
Removed. +        * platform/mac/fast/forms/radio-attr-order-expected.png: Removed.
+        * platform/mac/fast/forms/radio-attr-order-expected.txt: Removed.
+        * platform/mac/fast/forms/radio-nested-labels-expected.png: Removed.
+        * platform/mac/fast/forms/radio-nested-labels-expected.txt: Removed.
+        * platform/mac/fast/forms/radio_checked-expected.png: Removed.
+        * platform/mac/fast/forms/radio_checked-expected.txt: Removed.
+        * platform/mac/fast/forms/radio_checked_dynamic-expected.png: Removed.
+        * platform/mac/fast/forms/radio_checked_dynamic-expected.txt: Removed.
+        * platform/qt-mac/Skipped:
+        * platform/qt/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
+        * platform/qt/fast/forms/radio-attr-order-expected.txt: Removed.
+        * platform/qt/fast/forms/radio-nested-labels-expected.txt: Removed.
+        * platform/qt/fast/forms/radio_checked-expected.txt: Removed.
+        * platform/qt/fast/forms/radio_checked_dynamic-expected.txt: Removed.
+
+2012-02-15  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Update SnowLeopard SVG pixel test baseline - chunk 1.
+
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/painting-control-04-f-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-color-01-b-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-displace-01-f-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-example-01-b-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-light-01-f-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-light-04-f-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-tile-01-b-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-turb-01-f-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png:
+        * platform/mac-snowleopard/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-06-t-expected.png:
 +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-08-t-expected.png: \
Added. +        * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: \
Added. +        * platform/mac-snowleopard/svg/as-background-image/svg-as-background-6-expected.png:
 +        * platform/mac-snowleopard/svg/as-border-image/svg-as-border-image-2-expected.png:
 +        * platform/mac-snowleopard/svg/as-border-image/svg-as-border-image-expected.png: \
Added. +        * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-expected.png:
 +        * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png:
 +        * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-same-image-expected.png:
 +        * platform/mac-snowleopard/svg/as-image/svg-image-change-content-size-expected.png:
 +        * platform/mac-snowleopard/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png:
 +        * platform/mac-snowleopard/svg/as-object/embedded-svg-size-changes-expected.png:
 +        * platform/mac-snowleopard/svg/as-object/nested-embedded-svg-size-changes-expected.png:
 +        * platform/mac-snowleopard/svg/batik/filters/feTile-expected.png:
+        * platform/mac-snowleopard/svg/batik/filters/filterRegions-expected.png:
+        * platform/mac-snowleopard/svg/batik/masking/maskRegions-expected.png:
+        * platform/mac-snowleopard/svg/batik/text/smallFonts-expected.png:
+        * platform/mac-snowleopard/svg/batik/text/textEffect-expected.png:
+        * platform/mac-snowleopard/svg/batik/text/textEffect3-expected.png:
+        * platform/mac-snowleopard/svg/carto.net/selectionlist-expected.png:
+        * platform/mac-snowleopard/svg/carto.net/window-expected.png:
+        * platform/mac-snowleopard/svg/css/path-gradient-stroke-shadow-expected.png: \
Added. +        * platform/mac-snowleopard/svg/css/rect-gradient-stroke-shadow-expected.png: \
Added. +        * platform/mac-snowleopard/svg/css/shadow-changes-expected.png:
+        * platform/mac-snowleopard/svg/custom/absolute-sized-content-with-resources-expected.png:
 +        * platform/mac-snowleopard/svg/custom/circle-move-invalidation-expected.png:
 +        * platform/mac-snowleopard/svg/custom/convolution-crash-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/createImageElement-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/createImageElement2-expected.png:
 +        * platform/mac-snowleopard/svg/custom/empty-merge-expected.png: Added.
+        * platform/mac-snowleopard/svg/custom/feComponentTransfer-Discrete-expected.png:
 +        * platform/mac-snowleopard/svg/custom/feComponentTransfer-Gamma-expected.png:
 +        * platform/mac-snowleopard/svg/custom/feComponentTransfer-Linear-expected.png:
 +        * platform/mac-snowleopard/svg/custom/feComponentTransfer-Table-expected.png:
 +        * platform/mac-snowleopard/svg/custom/feDisplacementMap-01-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/focus-ring-expected.png:
+        * platform/mac-snowleopard/svg/custom/foreignObject-crash-on-hover-expected.png:
 +        * platform/mac-snowleopard/svg/custom/getTransformToElement-expected.png:
+        * platform/mac-snowleopard/svg/custom/grayscale-gradient-mask-2-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/group-opacity-expected.png:
+        * platform/mac-snowleopard/svg/custom/hit-test-unclosed-subpaths-expected.png:
 +        * platform/mac-snowleopard/svg/custom/hit-test-with-br-expected.png:
+        * platform/mac-snowleopard/svg/custom/image-parent-translation-expected.png:
+        * platform/mac-snowleopard/svg/custom/image-small-width-height-expected.png:
+        * platform/mac-snowleopard/svg/custom/image-with-prefix-in-webarchive-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/image-with-transform-clip-filter-expected.png:
 +        * platform/mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.png:
+        * platform/mac-snowleopard/svg/custom/js-late-clipPath-and-object-creation-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/js-update-image-and-display-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/js-update-image-and-display2-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/js-update-image-and-display3-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/js-update-image-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/js-update-stop-linked-gradient-expected.png:
 +        * platform/mac-snowleopard/svg/custom/mask-invalidation-expected.png:
+        * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-container-expected.png:
 +        * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-container-standalone-expected.png:
 +        * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-root-expected.png:
+        * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
 +        * platform/mac-snowleopard/svg/custom/non-opaque-filters-expected.png:
+        * platform/mac-snowleopard/svg/custom/pattern-userSpaceOnUse-userToBaseTransform-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/pointer-events-image-css-transform-expected.png:
 +        * platform/mac-snowleopard/svg/custom/pointer-events-image-expected.png:
+        * platform/mac-snowleopard/svg/custom/recursive-filter-expected.png:
+        * platform/mac-snowleopard/svg/custom/relative-sized-content-expected.png:
+        * platform/mac-snowleopard/svg/custom/relative-sized-content-with-resources-expected.png:
 +        * platform/mac-snowleopard/svg/custom/relative-sized-deep-shadow-tree-content-expected.png:
 +        * platform/mac-snowleopard/svg/custom/relative-sized-image-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/relative-sized-inner-svg-expected.png:
 +        * platform/mac-snowleopard/svg/custom/relative-sized-shadow-tree-content-expected.png:
 +        * platform/mac-snowleopard/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png:
 +        * platform/mac-snowleopard/svg/custom/relative-sized-use-on-symbol-expected.png:
 +        * platform/mac-snowleopard/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
 +        * platform/mac-snowleopard/svg/custom/resource-invalidate-on-target-update-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
 +        * platform/mac-snowleopard/svg/custom/text-filter-expected.png: Added.
+        * platform/mac-snowleopard/svg/custom/text-image-opacity-expected.png:
+        * platform/mac-snowleopard/svg/custom/text-xy-updates-SVGList-expected.png:
+        * platform/mac-snowleopard/svg/custom/transform-with-shadow-and-gradient-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/use-clipped-hit-expected.png:
+        * platform/mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.png:
 +        * platform/mac-snowleopard/svg/custom/use-elementInstance-event-target-expected.png:
 +        * platform/mac-snowleopard/svg/custom/use-elementInstance-methods-expected.png:
 +        * platform/mac-snowleopard/svg/custom/use-event-handler-on-referenced-element-expected.png:
 +        * platform/mac-snowleopard/svg/custom/use-event-handler-on-use-element-expected.png:
 +        * platform/mac-snowleopard/svg/custom/use-instanceRoot-event-bubbling-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/use-instanceRoot-event-listeners-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/use-on-g-containing-foreignObject-and-image-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/visibility-override-filter-expected.png: \
Added. +        * platform/mac-snowleopard/svg/dom/SVGPathSegList-segment-modification-expected.png:
 +        * platform/mac-snowleopard/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png:
 +        * platform/mac-snowleopard/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png:
 +
+2012-02-13  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: [InspectorIndexedDB] Pass data entries from object stores and \
indexes to front-end. +        https://bugs.webkit.org/show_bug.cgi?id=78503
+
+        Reviewed by Yury Semikhatsky.
+
+        * http/tests/inspector/indexeddb/database-data-expected.txt: Added.
+        * http/tests/inspector/indexeddb/database-data.html: Added.
+        * http/tests/inspector/indexeddb/database-names-expected.txt:
+        * http/tests/inspector/indexeddb/database-structure-expected.txt:
+        * http/tests/inspector/indexeddb/indexeddb-test.js:
+        (initialize_IndexedDBTest.InspectorTest.evaluateWithCallback):
+        (initialize_IndexedDBTest.InspectorTest.addIDBValue):
+        (initialize_IndexedDBTest):
+        (doWithReadWriteTransaction.step2.innerCommitCallback):
+        (doWithReadWriteTransaction.step2):
+        (doWithReadWriteTransaction):
+        (addIDBValue.doWithReadWriteTransaction.withTransactionCallback):
+        (addIDBValue):
+
+2012-02-15  Kent Tamura  &lt;tkent@chromium.org&gt;
+
+        Unreviewed, change the encoding of a test HTML.
+
+        * fast/forms/radio-nested-labels.html: Convert from UTF-16 to UTF-8.
+
+2012-02-15  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Switch svg/dynamic-updates tests to repaint harness
+        https://bugs.webkit.org/show_bug.cgi?id=78219
+
+        Make all tests that exercise repainting use the \
fast/repaint/resources/repaint.js harness. +        This is the last step, all svg \
tests have been converted. +
+        The only relevant change to look at is \
svg/dynamic-updates/resources/SVGTestCase.js, the rest is mechanic, done by a script. \
+        Ran following magic in svg/dynamic-updates: (inject repaint.js in all *.html \
files in that folder, and register onload handler) +        find . -type f -name \
&quot;*.html&quot; | xargs perl -pi -e \
&quot;s/js-test-pre\.js\&quot;&gt;&lt;\/script\&gt;/js-test-pre\.js\&quot;&gt;&lt;\/script\&gt;\n\&lt;script \
src=\&quot;..\/..\/fast\/repaint\/resources\/repaint\.js\&quot;\&gt;\&lt;\/script\&gt;/&quot;
 +        find . -type f -name &quot;*.html&quot; | xargs perl -pi -e \
&quot;s/&lt;body&gt;/&lt;body onload=\&quot;runRepaintTest()\&quot;&gt;/&quot; +
+        And in svg/dynamic-updates/script-tests: (remove manual startTest function \
calls, and rename executeTest to repaintTest). +        find . -type f -name \
&quot;*.js&quot; | xargs perl -pi -e &quot;s/startTest\(.*\);\n//&quot; +        find \
. -type f -name &quot;*.js&quot; | xargs perl -pi -e &quot;s/function\ \
executeTest/function\ repaintTest/&quot; +
+        Only a few tests needed other adjustments.
+
+        * platform/chromium/test_expectations.txt:
+        * svg/animations/resources/SVGAnimationTestCase.js:
+        (runSMILTest):
+        ...
+        * platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
 +        * platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
 +        ...
+        * svg/dynamic-updates/SVG-dynamic-css-transform.html:
+        * svg/dynamic-updates/SVGAElement-dom-href-attr.html:
+        ...
+        * svg/dynamic-updates/resources/SVGTestCase.js: Changed to utilize the \
repaint.js harness. +        (createSVGTestCase):
+        (clickAt):
+        * svg/dynamic-updates/resources/linkTarget.svg:
+        * svg/dynamic-updates/script-tests/SVGAElement-dom-href-attr.js:
+        (repaintTest):
+        * svg/dynamic-updates/script-tests/SVGAElement-dom-target-attr.js:
+        (repaintTest):
+        ...
+        * svg/dynamic-updates/script-tests/TEMPLATE.html: Removed.
+
+2012-02-15  Kent Tamura  &lt;tkent@chromium.org&gt;
+
+        Unreviewed, correct svn:mime-type of a test.
+
+        * fast/forms/radio-nested-labels.html:
+        Modified property svn:mime-type from application/octet-stream to text/html.
+
+2012-02-15  Roland Steiner  &lt;rolandsteiner@chromium.org&gt;
+
+        &lt;style scoped&gt;: Allow &lt;style scoped&gt; as a direct child of a \
ShadowRoot +        https://bugs.webkit.org/show_bug.cgi?id=77853
+
+        Test registration of &lt;style scoped&gt; as a direct child of a ShadowRoot.
+
+        Reviewed by Dimitri Glazkov.
+
+        * fast/css/style-scoped/registering-shadowroot-expected.txt: Added.
+        * fast/css/style-scoped/registering-shadowroot.html: Added.
+
+2012-02-14  Pavel Feldman  &lt;pfeldman@chromium.org&gt;
+
+        Web Inspector: implement redo for DOM actions.
+        https://bugs.webkit.org/show_bug.cgi?id=78601
+
+        Reviewed by Yury Semikhatsky.
+
+        * http/tests/inspector/elements-test.js:
+        (initialize_ElementTest.InspectorTest.generateUndoTest):
+        * inspector/elements/undo-dom-edits-2-expected.txt:
+        * inspector/elements/undo-dom-edits-expected.txt:
+        * inspector/styles/undo-add-new-rule-expected.txt:
+        * inspector/styles/undo-add-new-rule.html:
+        * inspector/styles/undo-add-property-expected.txt:
+        * inspector/styles/undo-add-property.html:
+        * inspector/styles/undo-change-property-expected.txt:
+        * inspector/styles/undo-change-property.html:
+        * inspector/styles/undo-property-toggle-expected.txt:
+        * inspector/styles/undo-property-toggle.html:
+        * inspector/styles/undo-set-selector-text-expected.txt:
+        * inspector/styles/undo-set-selector-text.html:
+
+2012-02-14  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Convert svg/animations to use SMIL methods for driving the timeline
+        https://bugs.webkit.org/show_bug.cgi?id=78422
+
+        Rubber-stamped by Simon Hausmann.
+
+        Further cleanup of the svg/animation tests. Always use &quot;0.001&quot; as \
sampling time +        for &quot;just-after-anim-begin&quot; instead of 0.1/0.01 \
variations. Use &quot;3.999&quot; as +        &quot;just-before-anim-end&quot; time \
instead of 3.9/3.99 variations. +
+        Use a default tolerance of 0.1, instead of the strict 0.01, to avoid having
+        to expect values like &quot;199.98&quot;. Use &quot;200&quot; instead. That \
doesn't reduce the +        value of any of the tests, but its likely to be more \
stable. +
+        Changed some real-quick running animamtions to have a higher duration.
+        This minimizes the sampling time error when sampling the animation right \
after +        it started (svg/animation/*nested-transforms*). This doesn't affect \
the runtime +        of the tests at all, as we manually drive the timeline anyways.
+
+        Always use shouldBe() instead of shouldBeCloseEnough() if the sampling time
+        is an integer, like 2.0 for animations that eg. animate x from 0 to 200.
+        Sampling exactly at 2.0, yields 100, so there's no need to check for equal
+        with tolerance.
+
+        * platform/chromium/test_expectations.txt:
+        * svg/animations/animate-calcMode-spline-by-expected.txt:
+        * svg/animations/animate-calcMode-spline-from-by-expected.txt:
+        * svg/animations/animate-calcMode-spline-from-to-expected.txt:
+        * svg/animations/animate-calcMode-spline-to-expected.txt:
+        * svg/animations/animate-calcMode-spline-values-expected.txt:
+        * svg/animations/animate-path-animation-Cc-Ss-expected.txt:
+        * svg/animations/animate-path-animation-Ll-Vv-Hh-expected.txt:
+        * svg/animations/animate-path-animation-cC-sS-inverse-expected.txt:
+        * svg/animations/animate-path-animation-lL-vV-hH-inverse-expected.txt:
+        * svg/animations/animate-path-nested-transforms-expected.txt:
+        * svg/animations/animate-path-to-animation-expected.txt:
+        * svg/animations/animate-text-nested-transforms-expected.txt:
+        * svg/animations/resources/SVGAnimationTestCase.js:
+        (shouldBeCloseEnough):
+        * svg/animations/script-tests/animVal-basics.js:
+        (sample3):
+        * svg/animations/script-tests/animate-calcMode-spline-by.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/animate-calcMode-spline-from-by.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/animate-calcMode-spline-from-to.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/animate-calcMode-spline-to.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/animate-calcMode-spline-values.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/animate-color-rgba-calcMode-discrete.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-dynamic-update-attributeName.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-end-attribute.js:
+        (sample3):
+        * svg/animations/script-tests/animate-mpath-insert.js:
+        (endSample):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-animation-Cc-Ss.js:
+        (sample2):
+        (sample3):
+        (sample4):
+        * svg/animations/script-tests/animate-path-animation-Ll-Vv-Hh.js:
+        (sample2):
+        (sample3):
+        (sample4):
+        * svg/animations/script-tests/animate-path-animation-Qq-Tt.js:
+        (sample2):
+        (sample3):
+        (sample4):
+        * svg/animations/script-tests/animate-path-animation-cC-sS-inverse.js:
+        (sample2):
+        (sample3):
+        (sample4):
+        * svg/animations/script-tests/animate-path-animation-lL-vV-hH-inverse.js:
+        (sample2):
+        (sample3):
+        (sample4):
+        * svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js:
+        (sample2):
+        (sample3):
+        (sample4):
+        * svg/animations/script-tests/animate-path-nested-transforms.js:
+        (endSample):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-to-animation.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/animate-text-nested-transforms.js:
+        (endSample):
+        (executeTest):
+        * svg/animations/script-tests/animateTransform-pattern-transform.js:
+        (sample3):
+        * svg/animations/script-tests/svgangle-animation-deg-to-grad.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgangle-animation-deg-to-rad.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgangle-animation-grad-to-deg.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgangle-animation-grad-to-rad.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgangle-animation-rad-to-deg.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgangle-animation-rad-to-grad.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svginteger-animation-1.js:
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-LengthModeHeight.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-LengthModeOther.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-LengthModeWidth.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-number-to-number.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-cm.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-ems.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-exs.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-in.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-number.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-pc.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-percentage.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-pt.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-px-to-px.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglength-animation-values.js:
+        (sample2):
+        (sample3):
+        (sample4):
+        (sample5):
+        * svg/animations/script-tests/svglengthlist-animation-1.js:
+        (sample3):
+        * svg/animations/script-tests/svglengthlist-animation-2.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglengthlist-animation-3.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svglengthlist-animation-4.js:
+        (sample3):
+        * svg/animations/script-tests/svglengthlist-animation-5.js:
+        (sample3):
+        * svg/animations/script-tests/svgnumber-animation-1.js:
+        (sample3):
+        * svg/animations/script-tests/svgnumber-animation-2.js:
+        (sample3):
+        * svg/animations/script-tests/svgnumberlist-animation-1.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgnumberlist-animation-2.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgpath-animation-1.js:
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgpointlist-animation-1.js:
+        (sample3):
+        * svg/animations/script-tests/svgpointlist-animation-2.js:
+        (sample3):
+        * svg/animations/script-tests/svgrect-animation-1.js:
+        (sample3):
+        * svg/animations/script-tests/svgrect-animation-2.js:
+        (sample3):
+        * svg/animations/script-tests/svgtransform-animation-1.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        * svg/animations/script-tests/svgtransform-animation-discrete.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        * svg/animations/svgangle-animation-deg-to-grad-expected.txt:
+        * svg/animations/svgangle-animation-deg-to-rad-expected.txt:
+        * svg/animations/svgangle-animation-grad-to-deg-expected.txt:
+        * svg/animations/svgangle-animation-grad-to-rad-expected.txt:
+        * svg/animations/svgangle-animation-rad-to-deg-expected.txt:
+        * svg/animations/svgangle-animation-rad-to-grad-expected.txt:
+        * svg/animations/svglength-animation-LengthModeHeight-expected.txt:
+        * svg/animations/svglength-animation-LengthModeOther-expected.txt:
+        * svg/animations/svglength-animation-LengthModeWidth-expected.txt:
+        * svg/animations/svglength-animation-number-to-number-expected.txt:
+        * svg/animations/svglength-animation-px-to-cm-expected.txt:
+        * svg/animations/svglength-animation-px-to-ems-expected.txt:
+        * svg/animations/svglength-animation-px-to-exs-expected.txt:
+        * svg/animations/svglength-animation-px-to-in-expected.txt:
+        * svg/animations/svglength-animation-px-to-number-expected.txt:
+        * svg/animations/svglength-animation-px-to-pc-expected.txt:
+        * svg/animations/svglength-animation-px-to-percentage-expected.txt:
+        * svg/animations/svglength-animation-px-to-pt-expected.txt:
+        * svg/animations/svglength-animation-px-to-px-expected.txt:
+        * svg/animations/svglength-animation-values-expected.txt:
+        * svg/animations/svglengthlist-animation-2-expected.txt:
+        * svg/animations/svgnumberlist-animation-1-expected.txt:
+        * svg/animations/svgnumberlist-animation-2-expected.txt:
+        * svg/animations/svgpath-animation-1-expected.txt:
+        * svg/animations/svgpointlist-animation-1-expected.txt:
+        * svg/animations/svgpointlist-animation-2-expected.txt:
+        * svg/animations/svgrect-animation-1-expected.txt:
+        * svg/animations/svgrect-animation-2-expected.txt:
+        * svg/animations/svgtransform-animation-1-expected.txt:
+
+2012-02-15  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r107785 and r107762. Also
+        skipping a new SVG failure.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/gtk/media/video-controls-rendering-expected.txt:
+        * platform/gtk/media/video-zoom-expected.txt:
+
+2012-02-15  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed morning gardening.
+
+        * platform/qt/fast/dom/Range/surround-contents-font-face-crash-expected.txt: \
Added after r107749. +        * \
platform/qt/fast/dom/Window/window-properties-expected.txt: Updated after r107785. +
+2012-02-15  Yuta Kitamura  &lt;yutak@chromium.org&gt;
+
+        WebSocket: MessageEvent fired during send() on workers
+        https://bugs.webkit.org/show_bug.cgi?id=76521
+
+        Reviewed by David Levin.
+
+        * http/tests/websocket/tests/hybi/workers/no-onmessage-in-sync-op-expected.txt: \
Added. +        * http/tests/websocket/tests/hybi/workers/no-onmessage-in-sync-op.html: \
Added. +        * http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op.js:
 +        Added. The server sends messages immediately after the connection is \
established, but +        these messages should not be delivered until the script \
exits the current cycle of +        the event loop. The script calls a few \
synchronous operations to make sure we don't +        fire MessageEvents while we are \
waiting for these operations to finish. +        * \
http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py: \
Added. +
+2012-02-15  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #11 of N.
+
+        * platform/chromium-linux/svg/custom/image-rescale-clip-expected.png:
+        * platform/chromium-linux/svg/custom/image-rescale-clip-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/image-rescale-scroll-expected.png:
 +        * platform/chromium-linux/svg/custom/image-rescale-scroll-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/image-rescale-clip-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/image-rescale-scroll-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/image-rescale-clip-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/image-rescale-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/image-rescale-scroll-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/svg/custom/image-rescale-scroll-expected.png.
 +        * platform/chromium-mac/svg/custom/image-rescale-clip-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/image-rescale-expected.png: \
Removed. +        * platform/chromium-win/svg/custom/image-rescale-clip-expected.png:
+        * platform/chromium-win/svg/custom/image-rescale-expected.png:
+        * platform/chromium-win/svg/custom/image-rescale-scroll-expected.png:
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/svg/custom/image-rescale-expected.txt: Removed.
+        * platform/qt/svg/custom/image-rescale-expected.txt: Removed.
+        * svg/custom/image-rescale-expected.txt: Renamed from \
LayoutTests/platform/gtk/svg/custom/image-rescale-expected.txt. +
+2012-02-14  Hao Zheng  &lt;zhenghao@chromium.org&gt;
+
+        Cleanup pending transaction queue in Database.
+        https://bugs.webkit.org/show_bug.cgi?id=75048
+
+        Reviewed by David Levin.
+
+        As crash is fixed, trun BUGWK75048 into BUGWK75111, so that we can
+        close 75048 and fix the timeout in 75111 for both DEBUG and RELEASE.
+
+        REGRESSION(r103429) \
fast/workers/storage/use-same-database-in-page-and-workers.html asserts +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Kent Tamura  &lt;tkent@chromium.org&gt;
+
+        Stop using script-tests in LayoutTests/fast/forms
+        https://bugs.webkit.org/show_bug.cgi?id=78667
+
+        Reviewed by Kentaro Hara.
+
+        * fast/forms/ValidityState-patternMismatch-unsupported.html:
+        * fast/forms/ValidityState-rangeOverflow.html:
+        * fast/forms/ValidityState-rangeUnderflow.html:
+        * fast/forms/ValidityState-stepMismatch.html:
+        * fast/forms/ValidityState-tooLong-input.html:
+        * fast/forms/ValidityState-tooLong-textarea.html:
+        * fast/forms/ValidityState-typeMismatch-date-expected.txt: Removed.
+        * fast/forms/ValidityState-typeMismatch-url.html:
+        * fast/forms/ValidityState-valueMissing-radio.html:
+        * fast/forms/checkValidity-cancel.html:
+        * fast/forms/checkValidity-handler-updates-dom.html:
+        * fast/forms/form-attribute-elements-order.html:
+        * fast/forms/form-attribute-elements-order2.html:
+        * fast/forms/form-attribute-elements.html:
+        * fast/forms/form-attribute.html:
+        * fast/forms/form-collection-elements-order.html:
+        * fast/forms/form-collection-elements.html:
+        * fast/forms/formnovalidate-attribute.html:
+        * fast/forms/incremental-dom-property.html:
+        * fast/forms/input-maxlength-ime-completed.html:
+        * fast/forms/input-maxlength-ime-preedit.html:
+        * fast/forms/input-maxlength-unsupported.html:
+        * fast/forms/input-minmax.html:
+        * fast/forms/input-pattern.html:
+        * fast/forms/input-step.html:
+        * fast/forms/input-stepup-stepdown.html:
+        * fast/forms/input-type-change3.html:
+        * fast/forms/input-valueasnumber-unsupported.html:
+        * fast/forms/labels-add-htmlFor-label.html:
+        * fast/forms/labels-add-parent-label.html:
+        * fast/forms/labels-change-htmlFor-attribute.html:
+        * fast/forms/labels-item-index.html:
+        * fast/forms/labels-remove-htmlFor-attribute.html:
+        * fast/forms/labels-remove-htmlFor-label.html:
+        * fast/forms/labels-remove-parent-label.html:
+        * fast/forms/labels-set-htmlFor-attribute.html:
+        * fast/forms/listbox-deselect-scroll.html:
+        * fast/forms/listbox-selection-2.html:
+        * fast/forms/listbox-selection.html:
+        * fast/forms/menulist-disabled-selected-option.html:
+        * fast/forms/menulist-submit-without-selection.html:
+        * fast/forms/novalidate-attribute.html:
+        * fast/forms/output-reset-assertion-failed.html:
+        * fast/forms/placeholder-dom-property.html:
+        * fast/forms/script-tests/TEMPLATE.html: Removed.
+        * fast/forms/script-tests/ValidityState-patternMismatch-unsupported.js: \
Removed. +        * fast/forms/script-tests/ValidityState-rangeOverflow.js: Removed.
+        * fast/forms/script-tests/ValidityState-rangeUnderflow.js: Removed.
+        * fast/forms/script-tests/ValidityState-stepMismatch.js: Removed.
+        * fast/forms/script-tests/ValidityState-tooLong-input.js: Removed.
+        * fast/forms/script-tests/ValidityState-tooLong-textarea.js: Removed.
+        * fast/forms/script-tests/ValidityState-typeMismatch-date.js: Removed.
+        * fast/forms/script-tests/ValidityState-typeMismatch-url.js: Removed.
+        * fast/forms/script-tests/ValidityState-valueMissing-radio.js: Removed.
+        * fast/forms/script-tests/checkValidity-cancel.js: Removed.
+        * fast/forms/script-tests/checkValidity-handler-updates-dom.js: Removed.
+        * fast/forms/script-tests/form-attribute-elements-order.js: Removed.
+        * fast/forms/script-tests/form-attribute-elements-order2.js: Removed.
+        * fast/forms/script-tests/form-attribute-elements.js: Removed.
+        * fast/forms/script-tests/form-attribute.js: Removed.
+        * fast/forms/script-tests/form-collection-elements-order.js: Removed.
+        * fast/forms/script-tests/form-collection-elements.js: Removed.
+        * fast/forms/script-tests/formnovalidate-attribute.js: Removed.
+        * fast/forms/script-tests/incremental-dom-property.js: Removed.
+        * fast/forms/script-tests/input-maxlength-ime-completed.js: Removed.
+        * fast/forms/script-tests/input-maxlength-ime-preedit.js: Removed.
+        * fast/forms/script-tests/input-maxlength-unsupported.js: Removed.
+        * fast/forms/script-tests/input-minmax.js: Removed.
+        * fast/forms/script-tests/input-pattern.js: Removed.
+        * fast/forms/script-tests/input-step.js: Removed.
+        * fast/forms/script-tests/input-stepup-stepdown.js: Removed.
+        * fast/forms/script-tests/input-type-change3.js: Removed.
+        * fast/forms/script-tests/input-valueasnumber-unsupported.js: Removed.
+        * fast/forms/script-tests/labels-add-htmlFor-label.js: Removed.
+        * fast/forms/script-tests/labels-add-parent-label.js: Removed.
+        * fast/forms/script-tests/labels-change-htmlFor-attribute.js: Removed.
+        * fast/forms/script-tests/labels-item-index.js: Removed.
+        * fast/forms/script-tests/labels-remove-htmlFor-attribute.js: Removed.
+        * fast/forms/script-tests/labels-remove-htmlFor-label.js: Removed.
+        * fast/forms/script-tests/labels-remove-parent-label.js: Removed.
+        * fast/forms/script-tests/labels-set-htmlFor-attribute.js: Removed.
+        * fast/forms/script-tests/listbox-deselect-scroll.js: Removed.
+        * fast/forms/script-tests/listbox-selection-2.js: Removed.
+        * fast/forms/script-tests/listbox-selection.js: Removed.
+        * fast/forms/script-tests/menulist-disabled-selected-option.js: Removed.
+        * fast/forms/script-tests/menulist-submit-without-selection.js: Removed.
+        * fast/forms/script-tests/novalidate-attribute.js: Removed.
+        * fast/forms/script-tests/output-reset-assertion-failed.js: Removed.
+        * fast/forms/script-tests/placeholder-dom-property.js: Removed.
+        * fast/forms/script-tests/search-cancel-button-events.js: Removed.
+        * fast/forms/script-tests/select-set-length-optgroup.js: Removed.
+        * fast/forms/script-tests/select-set-length-with-mutation-remove.js: \
Removed. +        * fast/forms/script-tests/select-set-length-with-mutation-reorder.js: \
Removed. +        * fast/forms/script-tests/select-set-length-with-mutation-reparent.js: \
Removed. +        * fast/forms/script-tests/select-set-length-with-mutation.js: \
Removed. +        * fast/forms/script-tests/select-set-length.js: Removed.
+        * fast/forms/script-tests/setCustomValidity-existence.js: Removed.
+        * fast/forms/script-tests/shadow-tree-exposure.js: Removed.
+        * fast/forms/script-tests/submit-form-attributes.js: Removed.
+        * fast/forms/script-tests/text-control-intrinsic-widths.js: Removed.
+        * fast/forms/script-tests/textarea-maxlength.js: Removed.
+        * fast/forms/script-tests/textarea-metrics.js: Removed.
+        * fast/forms/script-tests/textarea-placeholder-dom-property.js: Removed.
+        * fast/forms/script-tests/textarea-rows-cols.js: Removed.
+        * fast/forms/script-tests/textarea-textlength.js: Removed.
+        * fast/forms/script-tests/validationMessage.js: Removed.
+        * fast/forms/script-tests/willvalidate.js: Removed.
+        * fast/forms/search-cancel-button-events.html:
+        * fast/forms/select-set-length-optgroup.html:
+        * fast/forms/select-set-length-with-mutation-remove.html:
+        * fast/forms/select-set-length-with-mutation-reorder.html:
+        * fast/forms/select-set-length-with-mutation-reparent.html:
+        * fast/forms/select-set-length-with-mutation.html:
+        * fast/forms/select-set-length.html:
+        * fast/forms/setCustomValidity-existence.html:
+        * fast/forms/shadow-tree-exposure.html:
+        * fast/forms/submit-form-attributes.html:
+        * fast/forms/text-control-intrinsic-widths.html:
+        * fast/forms/textarea-maxlength.html:
+        * fast/forms/textarea-metrics.html:
+        * fast/forms/textarea-placeholder-dom-property.html:
+        * fast/forms/textarea-rows-cols.html:
+        * fast/forms/textarea-textlength.html:
+        * fast/forms/validationMessage.html:
+        * fast/forms/willvalidate.html:
+
+2012-02-14  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #10 of N.
+
+        * platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-01-t-expected.png:
+        * platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
+        * platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-04-t-expected.png:
+        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-image-01-t-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: \
Added. +        * platform/chromium-mac/svg/W3C-SVG-1.1/struct-image-01-t-expected.png: \
Removed. +        * platform/chromium-mac/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: \
Removed. +        * platform/chromium-win/svg/W3C-SVG-1.1/struct-image-01-t-expected.png:
 +        * platform/chromium-win/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
+        * platform/chromium-win/svg/W3C-SVG-1.1/struct-image-04-t-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Kentaro Hara  &lt;haraken@chromium.org&gt;
+
+        [JSC] Cache the number of non-custom constructor arguments
+        https://bugs.webkit.org/show_bug.cgi?id=78195
+
+        Reviewed by Darin Adler.
+
+        The added tests check the length property of constructors.
+        The test fails for &quot;flag-disabled&quot; constructors.
+
+        * fast/js/constructor-length.html: Added.
+        * platform/mac/fast/js/constructor-length-expected.txt: Added.
+
+        * platform/chromium/test_expectations.txt:
+        * platform/efl/Skipped:
+        * platform/gtk/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * platform/wk2/Skipped:
+
+2012-02-14  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #9 of N.
+
+        * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
+        * platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
+        * platform/chromium-linux/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
+        * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
 +        * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt: \
Renamed from LayoutTests/platform/chromium/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt.
 +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
 +        * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
+        * platform/chromium-win/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
+        * platform/chromium-win/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        Convert a couple of media layouttests to mock scrollbars &amp; rebaseline
+        https://bugs.webkit.org/show_bug.cgi?id=78634
+
+        Unreviewed layouttest rebaselining.
+
+        * platform/chromium-gpu-linux/media/video-controls-rendering-expected.png:
+        * platform/chromium-gpu-linux/media/video-zoom-expected.png:
+        * platform/chromium-gpu-mac/media/video-controls-rendering-expected.png:
+        * platform/chromium-gpu-mac/media/video-zoom-expected.png:
+        * platform/chromium-gpu-win/media/video-controls-rendering-expected.png:
+        * platform/chromium-gpu-win/media/video-zoom-expected.png:
+        * platform/chromium-linux/media/video-controls-rendering-expected.png:
+        * platform/chromium-linux/media/video-zoom-expected.png:
+        * platform/chromium-mac-leopard/media/video-controls-rendering-expected.png:
+        * platform/chromium-mac-leopard/media/video-zoom-expected.png:
+        * platform/chromium-mac-snowleopard/media/video-controls-rendering-expected.png:
 +        * platform/chromium-mac-snowleopard/media/video-zoom-expected.png:
+        * platform/chromium-win/media/video-controls-rendering-expected.png:
+        * platform/chromium-win/media/video-zoom-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Crash in deleteInsignificantText
+        https://bugs.webkit.org/show_bug.cgi?id=78567
+
+        Reviewed by Eric Seidel.
+
+        Add a regression test.
+
+        * editing/inserting/delete-insignificant-text-crash.html: Added.
+        * editing/inserting/delete-insignificant-text-crash.txt: Added.
+
+2012-02-14  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #8 of N.
+
+        * platform/chromium-mac-snowleopard/fast/writing-mode/background-horizontal-bt-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/writing-mode/background-vertical-lr-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/writing-mode/background-vertical-rl-expected.png: \
Added. +        * platform/chromium-mac/fast/writing-mode/background-horizontal-bt-expected.png: \
Removed. +        * platform/chromium-mac/fast/writing-mode/background-vertical-lr-expected.png: \
Removed. +        * platform/chromium-mac/fast/writing-mode/background-vertical-rl-expected.png: \
Removed. +        * platform/chromium-win/fast/writing-mode/background-horizontal-bt-expected.png:
 +        * platform/chromium-win/fast/writing-mode/background-vertical-lr-expected.png:
 +        * platform/chromium-win/fast/writing-mode/background-vertical-rl-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Crash in WebCore::SVGElement::removedFromDocument
+        https://bugs.webkit.org/show_bug.cgi?id=77270
+
+        Reviewed by Adam Barth.
+
+        Add a regression test for the crash.
+
+        * fast/dom/Range/surround-contents-font-face-crash-expected.txt: Added.
+        * fast/dom/Range/surround-contents-font-face-crash.svg: Added.
+
+2012-02-14  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        Convert a couple of media layouttests to mock scrollbars &amp; rebaseline
+        https://bugs.webkit.org/show_bug.cgi?id=78634
+
+        Unreviewed test maintenance.
+
+        * media/video-controls-rendering.html:
+        * media/video-zoom.html:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        IndexedDB: Invalid dates should not be valid keys
+        https://bugs.webkit.org/show_bug.cgi?id=78622
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/factory-cmp-expected.txt:
+        * storage/indexeddb/factory-cmp.html:
+        * storage/indexeddb/invalid-keys-expected.txt:
+        * storage/indexeddb/invalid-keys.html:
+
+2012-02-14  Ken Buchanan  &lt;kenrb@chromium.org&gt;
+
+        Crash from line break iterators in counter content
+        https://bugs.webkit.org/show_bug.cgi?id=72977
+
+        Reviewed by David Hyatt.
+
+        Test that causes asterisk counters to change during layout
+        and potentially confuse iterators.
+
+        * fast/css/counters/asterisk-counter-update-after-layout-crash-expected.txt: \
Added +        * fast/css/counters/asterisk-counter-update-after-layout-crash.html: \
Added +
+2012-02-14  Filip Pizlo  &lt;fpizlo@apple.com&gt;
+
+        Assertion failure under JSC::DFG::AbstractState::execute loading \
economist.com +        https://bugs.webkit.org/show_bug.cgi?id=78153
+        &lt;rdar://problem/10861712&gt; &lt;rdar://problem/10861947&gt;
+
+        Reviewed by Oliver Hunt.
+
+        * fast/js/dfg-add-not-number-expected.txt: Added.
+        * fast/js/dfg-add-not-number.html: Added.
+        * fast/js/script-tests/dfg-add-not-number.js: Added.
+        (foo):
+
+2012-02-14  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash in NavigationScheduler::schedule.
+        https://bugs.webkit.org/show_bug.cgi?id=78297
+
+        Reviewed by Adam Barth.
+
+        * http/tests/navigation/navigation-redirect-schedule-crash-expected.txt: \
Added. +        * http/tests/navigation/navigation-redirect-schedule-crash.html: \
Added. +
+2012-02-14  Alexis Menard  &lt;alexis.menard@openbossa.org&gt;
+
+        font shorthand with inherit keyword incorrectly parsed and rendered
+        https://bugs.webkit.org/show_bug.cgi?id=20181
+
+        Reviewed by Tony Chang.
+
+        * fast/css/font-shorthand-mix-inherit-expected.txt: Added.
+        * fast/css/font-shorthand-mix-inherit.html: Added.
+
+2012-02-14  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash due to incorrect firing of mutation event during class attribute \
parsing. +        https://bugs.webkit.org/show_bug.cgi?id=78537
+
+        Reviewed by Ryosuke Niwa.
+
+        * fast/dom/class-attr-change-double-mutation-fire-expected.txt: Added.
+        * fast/dom/class-attr-change-double-mutation-fire.html: Added.
+
+2012-02-14  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        CSS3 calc: add isZero implementations to catch divide by zero
+        https://bugs.webkit.org/show_bug.cgi?id=78603
+
+        Reviewed by Ojan Vafai.
+
+        * css3/calc/calc-errors-expected.txt:
+
+2012-02-14  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, marking a perf test as slow in debug and two
+        gpu tests as failing in debug (different scrollbar rendering).
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        [chromium] Layout Test media/media-document-audio-repaint.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=76580
+
+        Reviewed by James Robinson.
+
+        Make sure to call layoutTestController.display() at a stable point
+        (namely when the media element is paused) so that any subsequent GPU
+        disabling doesn't cause a complete redraw (and the test to be
+        flaky).
+
+        * media/media-document-audio-repaint.html:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Timothy Hatcher  &lt;timothy@apple.com&gt;
+
+        Remove inspector/protocol/page-agent.html since it is inherently flaky.
+
+        Filed https://webkit.org/b/78621 about devising a non-flaky test.
+
+        Unreviewed.
+
+        * inspector/protocol/page-agent-expected.txt: Removed.
+        * inspector/protocol/page-agent.html: Removed.
+        * inspector/protocol/resources/dummy-iframe.html: Removed.
+        * inspector/protocol/resources/empty.png: Removed.
+        * inspector/protocol/resources/font1.ttf: Removed.
+        * inspector/protocol/resources/font2.ttf: Removed.
+
+2012-02-14  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, mark some form tests as flaky.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Timothy Hatcher  &lt;timothy@apple.com&gt;
+
+        Updated test results to exclude CachedResources that haven't downloaded.
+
+        https://webkit.org/b/78447
+        rdar://problem/10843542
+
+        Reviewed by Brian Weinstein.
+
+        * inspector/protocol/page-agent-expected.txt: Updated. There is now only one \
font list +        in the resources, when there was incorrectly two being listed. \
Only the font being used +        is the one that downloaded and is listed now.
+
+2012-02-14  Timothy Hatcher  &lt;timothy@apple.com&gt;
+
+        Test for Web Inspector: include failed and canceled in FrameResourceTree.
+
+        https://webkit.org/b/78445
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/protocol/page-agent-expected.txt: Added.
+        * inspector/protocol/page-agent.html: Added.
+        * inspector/protocol/resources/dummy-iframe.html: Added.
+        * inspector/protocol/resources/empty.png: Added.
+        * inspector/protocol/resources/font1.ttf: Added.
+        * inspector/protocol/resources/font2.ttf: Added.
+
+2012-02-14  Kaustubh Atrawalkar  &lt;kaustubh@motorola.com&gt;
+
+        [GTK] fast/forms/implicit-submission.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=76632
+
+        Reviewed by Martin Robinson.
+
+        [Gtk] Rebaseline implicit-submission test expectations after r105253.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/forms/implicit-submission-expected.txt:
+
+2012-02-14  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r107688 and skipping some new
+        test failures.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/css3/calc/getComputedStyle-margin-percentage-expected.txt:
+
+2012-02-14  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: Make ScriptsNavigator default file selector.
+        https://bugs.webkit.org/show_bug.cgi?id=78349
+
+        Reviewed by Pavel Feldman.
+
+        * http/tests/inspector/debugger-test.js:
+        (initialize_DebuggerTest):
+        (initialize_DebuggerTest.):
+        * inspector/debugger/scripts-combobox-file-selector-history-expected.txt: \
Added. +        * inspector/debugger/scripts-combobox-file-selector-history.html: \
Added. +        * inspector/debugger/scripts-file-selector-expected.txt: Copied from \
LayoutTests/inspector/debugger/scripts-panel-expected.txt. +        * \
inspector/debugger/scripts-file-selector.html: Added. +        * \
inspector/debugger/scripts-panel-expected.txt: +        * \
inspector/debugger/scripts-panel.html: +        * \
inspector/debugger/scripts-sorting-expected.txt: +        * \
inspector/debugger/scripts-sorting.html: +        * \
inspector/debugger/source-frame-count.html: +
+2012-02-14  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Elements panel needs to be able to preview images
+        https://bugs.webkit.org/show_bug.cgi?id=21570
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/elements/elements-img-tooltip-expected.txt:
+        * inspector/elements/elements-img-tooltip.html:
+
+2012-02-14  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/Skipped: Typo fix, skip a new failing test.
+        * platform/qt/css3/calc/getComputedStyle-margin-percentage-expected.txt: \
Updated after r107688. +
+2012-02-14  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #7 of N.
+
+        * platform/chromium-linux/fast/replaced/width100percent-image-expected.png:
+        * platform/chromium-mac-leopard/fast/replaced/width100percent-image-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/replaced/width100percent-image-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/platform/chromium/compositing/img-layer-grow-expected.png: \
Added. +        * platform/chromium-mac/fast/replaced/width100percent-image-expected.png: \
Removed. +        * platform/chromium-win/fast/replaced/width100percent-image-expected.png:
 +        * platform/chromium-win/platform/chromium/compositing/img-layer-grow-expected.png: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-14  Hayato Ito  &lt;hayato@chromium.org&gt;
+
+        Make ShadowRoot.nodeType return DOCUMENT_FRAGMENT_NODE.
+        https://bugs.webkit.org/show_bug.cgi?id=77514
+
+        Reviewed by Dimitri Glazkov.
+
+        NodeType.SHADOW_ROOT_NODE type is finally gone.
+
+        * fast/dom/shadow/nodetype-expected.txt:
+        * fast/dom/shadow/nodetype.html:
+        * resources/dump-as-markup.js:
+        (Markup._get):
+
+2012-02-14  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        svg/hixie/perf has different repaint region in debug vs release
+        https://bugs.webkit.org/show_bug.cgi?id=78516
+
+        Reviewed by Hajime Morita.
+
+        Based on patch by Tony Chang &lt;tony@chromium.org&gt;.
+
+        The problem is the progress text in the lower right.  It says,
+        &quot;Test in progress... X of 10&quot;.  Depending on how fast the test \
runs, +        this text is never painted and the repaint region changes.  Disable
+        painting of the intermediate text and only include the final text.
+
+        Extended Tonys original patch to cover all svg/hixie/perf tests that
+        suffered from this issue - also avoid using setTimeout between the
+        individual steps, as we're only interessted in the final repaint
+        region, not the intermediate ones.
+
+        * platform/mac/svg/hixie/perf/001-expected.png:
+        * platform/mac/svg/hixie/perf/002-expected.png:
+        * platform/mac/svg/hixie/perf/003-expected.png:
+        * svg/hixie/perf/001.xml:
+        * svg/hixie/perf/002.xml:
+        * svg/hixie/perf/003.xml:
+        * svg/hixie/perf/004.xml:
+        * svg/hixie/perf/005.xml:
+        * svg/hixie/perf/006.xml:
+
+2012-02-14  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Add mixing Lion pixel test result for a svg/carto.net test.
+
+        * platform/mac/svg/carto.net/scrollbar-expected.png: Added.
+
+2012-02-14  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, skip new failing tests.
+
+        * platform/qt/Skipped:
+
+2012-02-14  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r107661.
+        http://trac.webkit.org/changeset/107661
+        https://bugs.webkit.org/show_bug.cgi?id=78591
+
+        crash on lion/qt bots (Requested by hayato on #webkit).
+
+        * fast/dom/shadow/nodetype-expected.txt:
+        * fast/dom/shadow/nodetype.html:
+        * resources/dump-as-markup.js:
+        (Markup._get):
+
+2012-02-14  Alexey Proskuryakov  &lt;ap@apple.com&gt;
+
+        [Mac][Win][WK2] Switch to RFC 6455 protocol for WebSockets
+        https://bugs.webkit.org/show_bug.cgi?id=78541
+        &lt;rdar://problem/10036695&gt;
+
+        Reviewed by Kent Tamura.
+
+        * http/tests/websocket/tests/hixie76/alert-in-event-handler.html:
+        * http/tests/websocket/tests/hixie76/bad-handshake-crash.html:
+        * http/tests/websocket/tests/hixie76/bad-sub-protocol-control-chars.html:
+        * http/tests/websocket/tests/hixie76/bad-sub-protocol-empty.html:
+        * http/tests/websocket/tests/hixie76/bad-sub-protocol-non-ascii.html:
+        * http/tests/websocket/tests/hixie76/bufferedAmount-after-close.html:
+        * http/tests/websocket/tests/hixie76/client-close.html:
+        * http/tests/websocket/tests/hixie76/close-before-open.html:
+        * http/tests/websocket/tests/hixie76/close-event.html:
+        * http/tests/websocket/tests/hixie76/close-on-navigate-new-location.html:
+        * http/tests/websocket/tests/hixie76/close-on-unload-and-force-gc.html:
+        * http/tests/websocket/tests/hixie76/close-on-unload-reference-in-parent.html:
 +        * http/tests/websocket/tests/hixie76/close-on-unload.html:
+        * http/tests/websocket/tests/hixie76/close-unref-websocket.html:
+        * http/tests/websocket/tests/hixie76/cross-origin.html:
+        * http/tests/websocket/tests/hixie76/error-detect.html:
+        * http/tests/websocket/tests/hixie76/frame-length-longer-than-buffer.html:
+        * http/tests/websocket/tests/hixie76/frame-length-overflow.html:
+        * http/tests/websocket/tests/hixie76/frame-length-skip.html:
+        * http/tests/websocket/tests/hixie76/frame-lengths.html:
+        * http/tests/websocket/tests/hixie76/handshake-challenge-randomness.html:
+        * http/tests/websocket/tests/hixie76/handshake-error.html:
+        * http/tests/websocket/tests/hixie76/handshake-fail-by-cross-origin.html:
+        * http/tests/websocket/tests/hixie76/handshake-fail-by-maxlength.html:
+        * http/tests/websocket/tests/hixie76/handshake-fail-by-no-connection-header.html:
 +        * http/tests/websocket/tests/hixie76/handshake-fail-by-no-cr.html:
+        * http/tests/websocket/tests/hixie76/handshake-fail-by-no-upgrade-header.html:
 +        * http/tests/websocket/tests/hixie76/handshake-fail-by-prepended-null.html:
+        * http/tests/websocket/tests/hixie76/handshake-fail-by-sub-protocol-mismatch.html:
 +        * http/tests/websocket/tests/hixie76/long-invalid-header.html:
+        * http/tests/websocket/tests/hixie76/multiple-connections.html:
+        * http/tests/websocket/tests/hixie76/null-character.html:
+        * http/tests/websocket/tests/hixie76/reload-crash.html:
+        * http/tests/websocket/tests/hixie76/send-after-close-on-unload.html:
+        * http/tests/websocket/tests/hixie76/send-empty.html:
+        * http/tests/websocket/tests/hixie76/send-object.html:
+        * http/tests/websocket/tests/hixie76/send-throw.html:
+        * http/tests/websocket/tests/hixie76/send.html:
+        * http/tests/websocket/tests/hixie76/server-close.html:
+        * http/tests/websocket/tests/hixie76/simple-stress.html:
+        * http/tests/websocket/tests/hixie76/simple.html:
+        * http/tests/websocket/tests/hixie76/split-binary-frame-header.html:
+        * http/tests/websocket/tests/hixie76/sub-protocol-with-space.html:
+        * http/tests/websocket/tests/hixie76/sub-protocol.html:
+        * http/tests/websocket/tests/hixie76/undefined-attributes.html:
+        * http/tests/websocket/tests/hixie76/unicode.html:
+        * http/tests/websocket/tests/hixie76/url-attribute.html:
+        * http/tests/websocket/tests/hixie76/url-no-trailing-slash.html:
+        * http/tests/websocket/tests/hixie76/url-parsing.html:
+        * http/tests/websocket/tests/hixie76/url-with-credential.html:
+        * http/tests/websocket/tests/hixie76/url-with-empty-query.html:
+        * http/tests/websocket/tests/hixie76/url-with-query-for-no-query.html:
+        * http/tests/websocket/tests/hixie76/url-with-query.html:
+        * http/tests/websocket/tests/hixie76/websocket-event-target.html:
+        * http/tests/websocket/tests/hixie76/websocket-pending-activity.html:
+        * http/tests/websocket/tests/hixie76/websocket-protocol-ignored.html:
+        * http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash.html:
+        * http/tests/websocket/tests/hixie76/workers/close-in-shared-worker.html:
+        * http/tests/websocket/tests/hixie76/workers/close-in-worker.html:
+        * http/tests/websocket/tests/hixie76/workers/shared-worker-simple.html:
+        * http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html:
 +        * http/tests/websocket/tests/hixie76/workers/worker-simple.html:
+        Added overridePreference calls, so that the tests don't depend on platform \
or DRT default. +
+2012-02-14  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        CSS3 calc: embed calc expressions in CSSPrimitiveValue
+        https://bugs.webkit.org/show_bug.cgi?id=78446
+
+        Reviewed by Ojan Vafai.
+
+        * css3/calc/block-mask-overlay-image-outset-expected.html: Renamed from \
LayoutTests/css3/calc/block-mask-overlay-image-outset-expected-mismatch.html. +       \
* css3/calc/border-expected.txt: +        * css3/calc/calc-errors-expected.txt:
+        * css3/calc/css3-radial-gradients-expected.html: Renamed from \
LayoutTests/css3/calc/css3-radial-gradients-expected-mismatch.html. +        * \
css3/calc/font-expected.txt: +        * css3/calc/font-monospace-expected.txt:
+        * css3/calc/font-size-expected.txt:
+        * css3/calc/font-size-fractional-expected.txt:
+        * css3/calc/getComputedStyle-margin-percentage-expected.txt:
+        * css3/calc/gradient-color-stops-expected.html: Renamed from \
LayoutTests/css3/calc/gradient-color-stops-expected-mismatch.html. +        * \
css3/calc/line-height-expected.txt: +        * css3/calc/margin-expected.txt:
+        * css3/calc/padding-expected.txt:
+        * css3/calc/simple-calcs-expected.txt:
+        * css3/calc/table-border-spacing-expected.txt:
+
+2012-02-14  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r107662.
+
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+
+2012-02-14  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: fire stylesheet changed event upon CSS modifications.
+        https://bugs.webkit.org/show_bug.cgi?id=78500
+
+        Reviewed by Yury Semikhatsky.
+
+        * http/tests/inspector/elements-test.js:
+        (initialize_ElementTest.InspectorTest.generateUndoTest):
+        * inspector/elements/set-outer-html-test.js:
+        (initialize_SetOuterHTMLTest.InspectorTest.recordEvent):
+        (initialize_SetOuterHTMLTest.InspectorTest.setOuterHTMLUseUndo.bringBack):
+        (initialize_SetOuterHTMLTest.InspectorTest.setOuterHTMLUseUndo):
+        * inspector/styles/styles-history.html:
+        * inspector/styles/undo-add-new-rule.html:
+        * inspector/styles/undo-add-property.html:
+        * inspector/styles/undo-change-property.html:
+        * inspector/styles/undo-property-toggle.html:
+        * inspector/styles/undo-set-selector-text.html:
+
+2012-02-11  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Convert svg/animations to use SMIL methods for driving the timeline
+        https://bugs.webkit.org/show_bug.cgi?id=78422
+
+        Reviewed by Dirk Schulze.
+
+        Switch the svg/animations tests to use SVGSVGElement.setCurrentTime to drive \
the animation timeline. +        This should fix all flakiness we previously had with \
these tests - and as nice side-effect we're now +        using the standard SVG \
methods to drive the timeline, and thus have more coverage for these methods. +       \
It already exposed several SMIL bugs, that had to be fixed, before this worked. +
+        This also unifies &amp; cleans up the tests, to use the same formatting and \
the same shouldBeCloseEnough helpers. +
+        * svg/animations/animVal-basics-expected.txt:
+        * svg/animations/animVal-basics.html:
+        * svg/animations/animate-calcMode-spline-by-expected.txt:
+        * svg/animations/animate-calcMode-spline-by.html:
+        * svg/animations/animate-calcMode-spline-from-by-expected.txt:
+        * svg/animations/animate-calcMode-spline-from-by.html:
+        * svg/animations/animate-calcMode-spline-from-to-expected.txt:
+        * svg/animations/animate-calcMode-spline-from-to.html:
+        * svg/animations/animate-calcMode-spline-to-expected.txt:
+        * svg/animations/animate-calcMode-spline-to.html:
+        * svg/animations/animate-calcMode-spline-values-expected.txt:
+        * svg/animations/animate-calcMode-spline-values.html:
+        * svg/animations/animate-color-calcMode-discrete.html:
+        * svg/animations/animate-color-fill-currentColor.html:
+        * svg/animations/animate-color-fill-from-by.html:
+        * svg/animations/animate-color-rgba-calcMode-discrete.html:
+        * svg/animations/animate-color-transparent.html:
+        * svg/animations/animate-currentColor.html:
+        * svg/animations/animate-dynamic-update-attributeName.html:
+        * svg/animations/animate-end-attribute-expected.txt:
+        * svg/animations/animate-end-attribute.html:
+        * svg/animations/animate-endElement-beginElement.html:
+        * svg/animations/animate-from-to-keyTimes.html:
+        * svg/animations/animate-gradient-transform.html:
+        * svg/animations/animate-inherit-css-property.html:
+        * svg/animations/animate-insert-begin.html:
+        * svg/animations/animate-insert-no-begin.html:
+        * svg/animations/animate-keySplines.html:
+        * svg/animations/animate-mpath-insert.html:
+        * svg/animations/animate-number-calcMode-discrete-expected.txt:
+        * svg/animations/animate-number-calcMode-discrete-keyTimes.html:
+        * svg/animations/animate-number-calcMode-discrete.html:
+        * svg/animations/animate-path-animation-Cc-Ss-expected.txt:
+        * svg/animations/animate-path-animation-Cc-Ss.html:
+        * svg/animations/animate-path-animation-Ll-Vv-Hh-expected.txt:
+        * svg/animations/animate-path-animation-Ll-Vv-Hh.html:
+        * svg/animations/animate-path-animation-Qq-Tt.html:
+        * svg/animations/animate-path-animation-cC-sS-inverse-expected.txt:
+        * svg/animations/animate-path-animation-cC-sS-inverse.html:
+        * svg/animations/animate-path-animation-lL-vV-hH-inverse-expected.txt:
+        * svg/animations/animate-path-animation-lL-vV-hH-inverse.html:
+        * svg/animations/animate-path-animation-qQ-tT-inverse.html:
+        * svg/animations/animate-path-nested-transforms-expected.txt:
+        * svg/animations/animate-path-nested-transforms.html:
+        * svg/animations/animate-path-to-animation-expected.txt:
+        * svg/animations/animate-path-to-animation.html:
+        * svg/animations/animate-text-nested-transforms-expected.txt:
+        * svg/animations/animate-text-nested-transforms.html:
+        * svg/animations/animateTransform-pattern-transform.html:
+        * svg/animations/resources/SVGAnimationTestCase.js:
+        (isCloseEnough):
+        (shouldBeCloseEnough):
+        (moveAnimationTimelineAndSample):
+        (sampleAnimation):
+        (runSMILTest):
+        (runAnimationTest):
+        * svg/animations/script-tests/TEMPLATE.html: Removed.
+        * svg/animations/script-tests/animVal-basics.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-calcMode-spline-by.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-calcMode-spline-from-by.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-calcMode-spline-from-to.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-calcMode-spline-to.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-calcMode-spline-values.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-color-calcMode-discrete.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-color-fill-currentColor.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-color-fill-from-by.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-color-rgba-calcMode-discrete.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-color-transparent.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-currentColor.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-dynamic-update-attributeName.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-end-attribute.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-endElement-beginElement.js:
+        (executeTest):
+        (end):
+        (begin):
+        * svg/animations/script-tests/animate-from-to-keyTimes.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-gradient-transform.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-inherit-css-property.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-insert-begin.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-insert-no-begin.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-keySplines.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-mpath-insert.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-number-calcMode-discrete-keyTimes.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-number-calcMode-discrete.js:
+        (sample1):
+        (sample2):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-animation-Cc-Ss.js:
+        (sample4):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-animation-Ll-Vv-Hh.js:
+        (sample4):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-animation-Qq-Tt.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-path-animation-cC-sS-inverse.js:
+        (sample4):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-animation-lL-vV-hH-inverse.js:
+        (sample4):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js:
+        (executeTest):
+        * svg/animations/script-tests/animate-path-nested-transforms.js:
+        (g.setAttribute.rect.createSVGElement.rect.setAttribute.rect.setAttribute.rec \
t.setAttribute.rect.setAttribute.rect.setAttribute.g.appendChild.animateMotion.createS \
VGElement.animateMotion.setAttribute.animateMotion.setAttribute.animateMotion.setAttri \
bute.animateMotion.setAttribute.animateMotion.setAttribute.animateMotion.setAttribute.g.appendChild.rootSVGElement.appendChild.startSample):
 +        (endSample):
+        (executeTest):
+        * svg/animations/script-tests/animate-path-to-animation.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/animate-text-nested-transforms.js:
+        (rootSVGElement.setAttribute.text.createSVGElement.text.setAttribute.text.tex \
tContent.string_appeared_here.text.setAttribute.animateMotion.createSVGElement.animate \
Motion.setAttribute.animateMotion.setAttribute.animateMotion.setAttribute.animateMotio \
n.setAttribute.animateMotion.setAttribute.animateMotion.setAttribute.text.appendChild.rootSVGElement.appendChild.startSample):
 +        (endSample):
+        (executeTest):
+        * svg/animations/script-tests/animateTransform-pattern-transform.js:
+        (executeTest):
+        * svg/animations/script-tests/svgPreserveAspectRatio-animation-1.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgangle-animation-deg-to-grad.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgangle-animation-deg-to-rad.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgangle-animation-grad-to-deg.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgangle-animation-grad-to-rad.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgangle-animation-rad-to-deg.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgangle-animation-rad-to-grad.js:
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgboolean-animation-1.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svginteger-animation-1.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-LengthModeHeight.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-LengthModeOther.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-LengthModeWidth.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-invalid-value-1.js:
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-invalid-value-2.js:
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-invalid-value-3.js:
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-number-to-number.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-cm.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-ems.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-exs.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-in.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-number.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-pc.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-percentage.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-pt.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-px-to-px.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-unitType.js:
+        (executeTest):
+        * svg/animations/script-tests/svglength-animation-values.js:
+        (sample5):
+        (executeTest):
+        * svg/animations/script-tests/svglengthlist-animation-1.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglengthlist-animation-2.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglengthlist-animation-3.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglengthlist-animation-4.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svglengthlist-animation-5.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgnumber-animation-1.js:
+        (executeTest):
+        * svg/animations/script-tests/svgnumber-animation-2.js:
+        (executeTest):
+        * svg/animations/script-tests/svgnumber-animation-3.js:
+        (executeTest):
+        * svg/animations/script-tests/svgnumberlist-animation-1.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgnumberlist-animation-2.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js:
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgpath-animation-1.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgpointlist-animation-1.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgpointlist-animation-2.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgrect-animation-1.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgrect-animation-2.js:
+        (sample3):
+        (executeTest):
+        * svg/animations/script-tests/svgstring-animation-fallback-to-discrete.js:
+        (executeTest):
+        * svg/animations/script-tests/svgtransform-animation-1.js:
+        (executeTest):
+        * svg/animations/script-tests/svgtransform-animation-discrete.js:
+        (executeTest):
+        * svg/animations/smil-element-not-removed-crash.html:
+        * svg/animations/svgPreserveAspectRatio-animation-1.html:
+        * svg/animations/svgangle-animation-deg-to-grad-expected.txt:
+        * svg/animations/svgangle-animation-deg-to-grad.html:
+        * svg/animations/svgangle-animation-deg-to-rad-expected.txt:
+        * svg/animations/svgangle-animation-deg-to-rad.html:
+        * svg/animations/svgangle-animation-grad-to-deg-expected.txt:
+        * svg/animations/svgangle-animation-grad-to-deg.html:
+        * svg/animations/svgangle-animation-grad-to-rad-expected.txt:
+        * svg/animations/svgangle-animation-grad-to-rad.html:
+        * svg/animations/svgangle-animation-rad-to-deg-expected.txt:
+        * svg/animations/svgangle-animation-rad-to-deg.html:
+        * svg/animations/svgangle-animation-rad-to-grad-expected.txt:
+        * svg/animations/svgangle-animation-rad-to-grad.html:
+        * svg/animations/svgboolean-animation-1.html:
+        * svg/animations/svginteger-animation-1.html:
+        * svg/animations/svglength-animation-LengthModeHeight-expected.txt:
+        * svg/animations/svglength-animation-LengthModeHeight.html:
+        * svg/animations/svglength-animation-LengthModeOther-expected.txt:
+        * svg/animations/svglength-animation-LengthModeOther.html:
+        * svg/animations/svglength-animation-LengthModeWidth-expected.txt:
+        * svg/animations/svglength-animation-LengthModeWidth.html:
+        * svg/animations/svglength-animation-invalid-value-1.html:
+        * svg/animations/svglength-animation-invalid-value-2.html:
+        * svg/animations/svglength-animation-invalid-value-3.html:
+        * svg/animations/svglength-animation-number-to-number-expected.txt:
+        * svg/animations/svglength-animation-number-to-number.html:
+        * svg/animations/svglength-animation-px-to-cm-expected.txt:
+        * svg/animations/svglength-animation-px-to-cm.html:
+        * svg/animations/svglength-animation-px-to-ems-expected.txt:
+        * svg/animations/svglength-animation-px-to-ems.html:
+        * svg/animations/svglength-animation-px-to-exs-expected.txt:
+        * svg/animations/svglength-animation-px-to-exs.html:
+        * svg/animations/svglength-animation-px-to-in-expected.txt:
+        * svg/animations/svglength-animation-px-to-in.html:
+        * svg/animations/svglength-animation-px-to-number-expected.txt:
+        * svg/animations/svglength-animation-px-to-number.html:
+        * svg/animations/svglength-animation-px-to-pc-expected.txt:
+        * svg/animations/svglength-animation-px-to-pc.html:
+        * svg/animations/svglength-animation-px-to-percentage-expected.txt:
+        * svg/animations/svglength-animation-px-to-percentage.html:
+        * svg/animations/svglength-animation-px-to-pt-expected.txt:
+        * svg/animations/svglength-animation-px-to-pt.html:
+        * svg/animations/svglength-animation-px-to-px-expected.txt:
+        * svg/animations/svglength-animation-px-to-px.html:
+        * svg/animations/svglength-animation-unitType.html:
+        * svg/animations/svglength-animation-values-expected.txt:
+        * svg/animations/svglength-animation-values.html:
+        * svg/animations/svglengthlist-animation-1.html:
+        * svg/animations/svglengthlist-animation-2-expected.txt:
+        * svg/animations/svglengthlist-animation-2.html:
+        * svg/animations/svglengthlist-animation-3.html:
+        * svg/animations/svglengthlist-animation-4.html:
+        * svg/animations/svglengthlist-animation-5.html:
+        * svg/animations/svgnumber-animation-1.html:
+        * svg/animations/svgnumber-animation-2.html:
+        * svg/animations/svgnumber-animation-3.html:
+        * svg/animations/svgnumberlist-animation-1-expected.txt:
+        * svg/animations/svgnumberlist-animation-1.html:
+        * svg/animations/svgnumberlist-animation-2-expected.txt:
+        * svg/animations/svgnumberlist-animation-2.html:
+        * svg/animations/svgnumberoptionalnumber-animation-1.html:
+        * svg/animations/svgnumberoptionalnumber-animation-2.html:
+        * svg/animations/svgnumberoptionalnumber-animation-3.html:
+        * svg/animations/svgnumberoptionalnumber-animation-4.html:
+        * svg/animations/svgpath-animation-1-expected.txt:
+        * svg/animations/svgpath-animation-1.html:
+        * svg/animations/svgpointlist-animation-1-expected.txt:
+        * svg/animations/svgpointlist-animation-1.html:
+        * svg/animations/svgpointlist-animation-2-expected.txt:
+        * svg/animations/svgpointlist-animation-2.html:
+        * svg/animations/svgrect-animation-1-expected.txt:
+        * svg/animations/svgrect-animation-1.html:
+        * svg/animations/svgrect-animation-2-expected.txt:
+        * svg/animations/svgrect-animation-2.html:
+        * svg/animations/svgstring-animation-fallback-to-discrete-expected.txt:
+        * svg/animations/svgstring-animation-fallback-to-discrete.html:
+        * svg/animations/svgtransform-animation-1.html:
+        * svg/animations/svgtransform-animation-discrete-expected.txt:
+        * svg/animations/svgtransform-animation-discrete.html:
+
+2012-02-14  Pavel Feldman  &lt;pfeldman@chromium.org&gt;
+
+        Web Inspector: [REGRESSION] Copy Stack Trace is broken
+        https://bugs.webkit.org/show_bug.cgi?id=78583
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/debugger/copy-stack-trace-expected.txt: Added.
+        * inspector/debugger/copy-stack-trace.html: Added.
+
+2012-02-14  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #6 of N (visually re-inspecting as I go along, lest \
skia bite me). +
+        * fast/replaced/image-tag-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/replaced/image-tag-expected.txt. +        * \
platform/chromium-linux/fast/replaced/absolute-image-sizing-expected.png: +        * \
platform/chromium-linux/fast/replaced/image-onload-expected.png: +        * \
platform/chromium-linux/fast/replaced/image-sizing-expected.png: +        * \
platform/chromium-mac-leopard/fast/replaced/absolute-image-sizing-expected.png: +     \
* platform/chromium-mac-leopard/fast/replaced/image-onload-expected.png: +        * \
platform/chromium-mac-leopard/fast/replaced/image-sizing-expected.png: +        * \
platform/chromium-mac-snowleopard/fast/replaced/absolute-image-sizing-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/replaced/image-onload-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/replaced/image-sizing-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/replaced/image-tag-expected.png: \
Added. +        * platform/chromium-mac/fast/replaced/absolute-image-sizing-expected.png: \
Removed. +        * platform/chromium-mac/fast/replaced/image-onload-expected.png: \
Removed. +        * platform/chromium-mac/fast/replaced/image-sizing-expected.png: \
Removed. +        * platform/chromium-mac/fast/replaced/image-tag-expected.png: \
Removed. +        * platform/chromium-win/fast/replaced/absolute-image-sizing-expected.png:
 +        * platform/chromium-win/fast/replaced/image-onload-expected.png:
+        * platform/chromium-win/fast/replaced/image-sizing-expected.png:
+        * platform/chromium-win/fast/replaced/image-tag-expected.png:
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/fast/replaced/image-tag-expected.txt: Removed.
+        * platform/qt/fast/replaced/image-tag-expected.txt: Removed.
+
+2012-02-13  Pavel Feldman  &lt;pfeldman@chromium.org&gt;
+
+        [Qt] inspector/styles/undo-add-new-rule.html crashes
+        https://bugs.webkit.org/show_bug.cgi?id=78502
+
+        Reviewed by Yury Semikhatsky.
+
+        * platform/chromium/test_expectations.txt:
+        * platform/qt/Skipped:
+
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #5 of N
+
+        * platform/chromium-linux/fast/images/gray-scale-jpeg-with-color-profile-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/images/gray-scale-jpeg-with-color-profile-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/images/image-css3-content-data-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/images/ycbcr-with-cmyk-color-profile-expected.png:
 +        * platform/chromium-win/fast/images/gray-scale-jpeg-with-color-profile-expected.png:
 +        * platform/chromium-win/fast/images/image-css3-content-data-expected.png: \
Renamed from LayoutTests/platform/chromium/fast/images/image-css3-content-data-expected.png.
 +        * platform/chromium-win/fast/images/ycbcr-with-cmyk-color-profile-expected.png:
 +        * platform/chromium/fast/images/gray-scale-jpeg-with-color-profile-expected.png: \
Removed. +        * platform/chromium/test_expectations.txt:
+        * platform/mac-snowleopard/fast/images/ycbcr-with-cmyk-color-profile-expected.png: \
Removed. +
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #4 of N
+
+        * platform/chromium-linux/fast/block/float/014-expected.png:
+        * platform/chromium-linux/fast/repaint/block-layout-inline-children-replaced-expected.png:
 +        * platform/chromium-mac-leopard/fast/block/float/014-expected.png:
+        * platform/chromium-mac-leopard/fast/repaint/block-layout-inline-children-replaced-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/block/float/014-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/repaint/block-layout-inline-children-replaced-expected.png:
 +        * platform/chromium-mac/fast/block/float/014-expected.png: Removed.
+        * platform/chromium-win/fast/block/float/014-expected.png:
+        * platform/chromium-win/fast/repaint/block-layout-inline-children-replaced-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        Test update for https://bugs.webkit.org/show_bug.cgi?id=76564.
+
+        Use sync XHRs instead of async in network-content-replacement-xhr.html,
+        since the inspector pulls async XHR data off of its CachedResource, instead
+        of a buffer it controls.
+
+        Reviewed by Antti Koivisto.
+
+        * http/tests/inspector/network/network-content-replacement-xhr-expected.txt:
+        * http/tests/inspector/network/network-content-replacement-xhr.html:
+
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #3 of N
+
+        * fast/backgrounds/size/backgroundSize21-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize21-expected.txt. +       \
* fast/backgrounds/size/backgroundSize22-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize22-expected.txt. +       \
* platform/chromium-mac-snowleopard/fast/backgrounds/size/backgroundSize21-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/backgrounds/size/backgroundSize22-expected.png: \
Added. +        * platform/chromium-mac/fast/backgrounds/size/backgroundSize21-expected.png: \
Removed. +        * platform/chromium-mac/fast/backgrounds/size/backgroundSize22-expected.png: \
Removed. +        * platform/chromium-win/fast/backgrounds/size/backgroundSize21-expected.png:
 +        * platform/chromium-win/fast/backgrounds/size/backgroundSize22-expected.png:
 +        * platform/chromium/test_expectations.txt:
+        * platform/mac/fast/backgrounds/size/backgroundSize21-expected.txt: Removed.
+        * platform/mac/fast/backgrounds/size/backgroundSize22-expected.txt: Removed.
+        * platform/qt/fast/backgrounds/size/backgroundSize21-expected.txt: Removed.
+        * platform/qt/fast/backgrounds/size/backgroundSize22-expected.txt: Removed.
+
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #2 of N
+
+        * fast/backgrounds/size/backgroundSize17-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize17-expected.txt. +       \
* fast/backgrounds/size/backgroundSize18-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize18-expected.txt. +       \
* fast/backgrounds/size/backgroundSize19-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize19-expected.txt. +       \
* fast/backgrounds/size/backgroundSize20-expected.txt: Renamed from \
LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize20-expected.txt. +       \
* platform/chromium-mac-snowleopard/fast/backgrounds/size/backgroundSize17-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/backgrounds/size/backgroundSize18-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/backgrounds/size/backgroundSize19-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/backgrounds/size/backgroundSize20-expected.png: \
Added. +        * platform/chromium-mac/fast/backgrounds/size/backgroundSize17-expected.png: \
Removed. +        * platform/chromium-mac/fast/backgrounds/size/backgroundSize18-expected.png: \
Removed. +        * platform/chromium-mac/fast/backgrounds/size/backgroundSize19-expected.png: \
Removed. +        * platform/chromium-mac/fast/backgrounds/size/backgroundSize20-expected.png: \
Removed. +        * platform/chromium-win/fast/backgrounds/size/backgroundSize17-expected.png:
 +        * platform/chromium-win/fast/backgrounds/size/backgroundSize18-expected.png:
 +        * platform/chromium-win/fast/backgrounds/size/backgroundSize19-expected.png:
 +        * platform/chromium-win/fast/backgrounds/size/backgroundSize20-expected.png:
 +        * platform/chromium/test_expectations.txt:
+        * platform/mac/fast/backgrounds/size/backgroundSize17-expected.txt: Removed.
+        * platform/mac/fast/backgrounds/size/backgroundSize18-expected.txt: Removed.
+        * platform/mac/fast/backgrounds/size/backgroundSize19-expected.txt: Removed.
+        * platform/mac/fast/backgrounds/size/backgroundSize20-expected.txt: Removed.
+        * platform/qt/fast/backgrounds/size/backgroundSize17-expected.txt: Removed.
+        * platform/qt/fast/backgrounds/size/backgroundSize18-expected.txt: Removed.
+        * platform/qt/fast/backgrounds/size/backgroundSize19-expected.txt: Removed.
+        * platform/qt/fast/backgrounds/size/backgroundSize20-expected.txt: Removed.
+
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Rebaseline #1 of N
+
+        * platform/chromium-linux/compositing/geometry/vertical-scroll-composited-expected.png:
 +        * platform/chromium-mac-snowleopard/compositing/geometry/horizontal-scroll-composited-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/compositing/geometry/vertical-scroll-composited-expected.png: \
Added. +        * platform/chromium-win/compositing/geometry/horizontal-scroll-composited-expected.png:
 +        * platform/chromium-win/compositing/geometry/vertical-scroll-composited-expected.png:
 +        * platform/chromium/compositing/geometry/horizontal-scroll-composited-expected.png: \
Removed. +        * platform/chromium/compositing/geometry/vertical-scroll-composited-expected.png: \
Removed. +        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Unreviewed, remove svg/custom/grayscale-gradient-mask.svg CRASH \
expectation +        https://bugs.webkit.org/show_bug.cgi?id=78556
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        fast/text/atsui-multiple-renderers.html and related report IMAGE failure on \
commit queue  +        https://bugs.webkit.org/show_bug.cgi?id=78544
+
+        Unreviewed. Test expectations update: PASS locally on linux but IMAGE on the \
queue. +
+        * platform/chromium/test_expectations.txt:
+          fast/text/atsui-multiple-renderers.html
+          fast/text/international/danda-space.html
+          fast/text/international/thai-baht-space.html
+          fast/text/international/thai-line-breaks.html
+          platform/chromium-linux/fast/text/international/complex-joining-using-gpos.html
 +
+2012-02-13  ChangSeok Oh  &lt;shivamidow@gmail.com&gt;
+
+        [GTK] Mutation Observers build is broken
+        https://bugs.webkit.org/show_bug.cgi?id=78433
+
+        Reviewed by Martin Robinson.
+
+        Removed fast/mutation, but added following 3 tests which are needed more \
time to pass. +
+        GTK port DRT doesn't support some APIs like scheduleAsynchronousKeyDown.
+        I opened a new bug to deal with it. http://webkit.org/b/78481
+        And also see http://webkit.org/b/78290
+        fast/mutation/end-of-task-delivery.html
+        fast/mutation/inline-event-listener.html
+
+        Needed to enable FileSystem API at the same time.
+        fast/mutation/filesystem-callback-delivery.html
+
+        * platform/gtk/Skipped:
+
+2012-02-13  Hayato Ito  &lt;hayato@chromium.org&gt;
+
+        Make ShadowRoot.nodeType return DOCUMENT_FRAGMENT_NODE.
+        https://bugs.webkit.org/show_bug.cgi?id=77514
+
+        Reviewed by Dimitri Glazkov.
+
+        NodeType.SHADOW_ROOT_NODE type is finally gone.
+
+        * fast/dom/shadow/nodetype-expected.txt:
+        * fast/dom/shadow/nodetype.html:
+        * resources/dump-as-markup.js:
+        (Markup._get):
+
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed gardening.  Small cleanup after r107638.
+
+        * platform/chromium-mac-leopard/css3/filters/crash-hw-sw-switch-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/filter-empty-element-crash-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/crash-hw-sw-switch-expected.png: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Ojan Vafai  &lt;ojan@chromium.org&gt;
+
+        rtl + flex-direction:column is positioning elements incorrectly
+        https://bugs.webkit.org/show_bug.cgi?id=78555
+
+        Reviewed by Tony Chang.
+
+        * css3/flexbox/flex-align-baseline-expected.txt: Added.
+        * css3/flexbox/flex-align-baseline.html: Added.
+        * css3/flexbox/flex-align-end-expected.txt: Added.
+        * css3/flexbox/flex-align-end.html: Added.
+        * css3/flexbox/true-centering-expected.txt:
+
+2012-02-09  Ojan Vafai  &lt;ojan@chromium.org&gt;
+
+        nesting horizontal flexboxes is broken
+        https://bugs.webkit.org/show_bug.cgi?id=76867
+
+        Reviewed by David Hyatt.
+
+        * css3/flexbox/floated-flexbox-expected.txt:
+        * css3/flexbox/line-wrapping.html:
+        The old results here were wrong because they wrapped the contents of each \
flex item. +
+        * css3/flexbox/preferred-widths-expected.txt: Added.
+        * css3/flexbox/preferred-widths-orthogonal-expected.txt: Added.
+        * css3/flexbox/preferred-widths-orthogonal.html: Added.
+        * css3/flexbox/preferred-widths.html: Added.
+
+2012-02-13  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Unreviewed test expectations update.
+        Rebaselining font-face-synthetic-bold-italic.html and \
font-face-weight-matching.html. +
+        * platform/chromium-linux/fast/css/font-face-synthetic-bold-italic-expected.png: \
Added. +        * platform/chromium-linux/fast/css/font-face-synthetic-bold-italic-expected.txt: \
Added. +        * platform/chromium-linux/fast/css/font-face-weight-matching-expected.png: \
Added. +        * platform/chromium-linux/fast/css/font-face-weight-matching-expected.txt: \
Added. +        * platform/chromium-mac-leopard/fast/css/font-face-synthetic-bold-italic-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/font-face-weight-matching-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/font-face-synthetic-bold-italic-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/font-face-synthetic-bold-italic-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/font-face-weight-matching-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/font-face-weight-matching-expected.txt: \
Added. +        * platform/chromium-win/fast/css/font-face-synthetic-bold-italic-expected.png: \
Added. +        * platform/chromium-win/fast/css/font-face-synthetic-bold-italic-expected.txt: \
Added. +        * platform/chromium-win/fast/css/font-face-weight-matching-expected.png: \
Added. +        * platform/chromium-win/fast/css/font-face-weight-matching-expected.txt: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Raul Hudea  &lt;rhudea@adobe.com&gt;
+
+        Implement Element.webkitRegionOverflow
+
+        [CSSRegions][CSSOM] Implement Element.regionOverflow
+        https://bugs.webkit.org/show_bug.cgi?id=77863
+
+        Reviewed by David Hyatt.
+
+        * fast/regions/element-region-overflow-state-expected.txt: Added.
+        * fast/regions/element-region-overflow-state-vertical-rl-expected.txt: \
Added. +        * fast/regions/element-region-overflow-state-vertical-rl.html: Added.
+        * fast/regions/element-region-overflow-state.html: Added.
+
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, removing some tests that have been passing
+        as far back as the flakiness dashboard's history goes.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Stephen White  &lt;senorblanco@chromium.org&gt;
+
+        [chromium] New baselines for css3/filters tests (unreviewed).
+
+        * platform/chromium-linux/css3/filters: Added.
+        * platform/chromium-linux/css3/filters/crash-hw-sw-switch-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/effect-blur-hw-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/effect-brightness-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/effect-brightness-hw-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/effect-combined-hw-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/effect-contrast-hw-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/effect-saturate-hw-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/effect-sepia-hw-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/filter-empty-element-crash-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/filter-with-transform-expected.png: \
Added. +        * platform/chromium-linux/css3/filters/nested-filter-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters: Added.
+        * platform/chromium-mac-leopard/css3/filters/crash-filter-change-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-blur-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-blur-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-brightness-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-brightness-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-combined-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-combined-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-contrast-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-contrast-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-custom-combined-missing-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-custom-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-custom-parameters-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-drop-shadow-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-drop-shadow-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-grayscale-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-grayscale-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-hue-rotate-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-hue-rotate-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-invert-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-invert-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-opacity-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-opacity-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-saturate-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-saturate-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-sepia-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/effect-sepia-hw-expected.png: \
Added. +        * platform/chromium-mac-leopard/css3/filters/regions-expanding-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters: Added.
+        * platform/chromium-mac-snowleopard/css3/filters/add-filter-rendering-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/crash-filter-change-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-blur-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-blur-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-blur-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-brightness-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-brightness-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-brightness-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-combined-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-combined-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-combined-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-contrast-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-contrast-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-contrast-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-custom-combined-missing-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-drop-shadow-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-drop-shadow-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-drop-shadow-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-grayscale-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-grayscale-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-grayscale-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-hue-rotate-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-hue-rotate-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-hue-rotate-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-invert-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-invert-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-invert-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-opacity-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-opacity-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-opacity-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-saturate-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-saturate-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-saturate-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-sepia-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-sepia-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/effect-sepia-hw-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/filter-repaint-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/filter-with-transform-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/filtered-compositing-descendant-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/filtered-inline-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/nested-filter-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/nested-filters-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/regions-expanding-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/css3/filters/simple-filter-rendering-expected.png: \
Added. +        * platform/chromium-win/css3/filters: Added.
+        * platform/chromium-win/css3/filters/add-filter-rendering-expected.png: \
Added. +        * platform/chromium-win/css3/filters/crash-filter-change-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-blur-expected.png: Added.
+        * platform/chromium-win/css3/filters/effect-blur-expected.txt: Added.
+        * platform/chromium-win/css3/filters/effect-blur-hw-expected.png: Added.
+        * platform/chromium-win/css3/filters/effect-blur-hw-expected.txt: Added.
+        * platform/chromium-win/css3/filters/effect-brightness-expected.png: Added.
+        * platform/chromium-win/css3/filters/effect-brightness-expected.txt: Added.
+        * platform/chromium-win/css3/filters/effect-brightness-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-brightness-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-combined-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-combined-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-combined-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-combined-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-contrast-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-contrast-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-contrast-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-contrast-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-custom-combined-missing-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-custom-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-custom-parameters-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-drop-shadow-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-drop-shadow-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-drop-shadow-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-drop-shadow-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-grayscale-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-grayscale-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-grayscale-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-grayscale-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-hue-rotate-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-hue-rotate-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-hue-rotate-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-hue-rotate-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-invert-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-invert-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-invert-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-invert-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-opacity-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-opacity-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-opacity-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-opacity-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-saturate-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-saturate-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-saturate-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-saturate-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-sepia-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-sepia-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/effect-sepia-hw-expected.png: \
Added. +        * platform/chromium-win/css3/filters/effect-sepia-hw-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/filter-region-expected.png: \
Added. +        * platform/chromium-win/css3/filters/filter-repaint-expected.png: \
Added. +        * platform/chromium-win/css3/filters/filter-with-transform-expected.png: \
Added. +        * platform/chromium-win/css3/filters/filtered-compositing-descendant-expected.png: \
Added. +        * platform/chromium-win/css3/filters/filtered-compositing-descendant-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/filtered-inline-expected.png: \
Added. +        * platform/chromium-win/css3/filters/nested-filter-expected.png: \
Added. +        * platform/chromium-win/css3/filters/nested-filters-expected.png: \
Added. +        * platform/chromium-win/css3/filters/regions-expanding-expected.png: \
Added. +        * platform/chromium-win/css3/filters/regions-expanding-expected.txt: \
Added. +        * platform/chromium-win/css3/filters/simple-filter-rendering-expected.png: \
Added. +        * platform/chromium/css3/filters: Added.
+        * platform/chromium/css3/filters/effect-custom-combined-missing-expected.txt: \
Added. +        * platform/chromium/css3/filters/effect-custom-disabled-expected.txt: \
Added. +        * platform/chromium/css3/filters/effect-custom-expected.txt: Added.
+        * platform/chromium/css3/filters/effect-custom-parameters-expected.txt: \
Added. +        * platform/chromium/css3/filters/filter-property-computed-style-expected.txt: \
Added. +        * platform/chromium/css3/filters/filter-property-parsing-expected.txt: \
Added. +        * platform/chromium/css3/filters/filter-repaint-expected.txt: Added.
+        * platform/chromium/test_expectations.txt:
+        * platform/qt/css3/filters/add-filter-rendering-expected.txt: Removed.
+        * platform/qt/css3/filters/crash-filter-change-expected.txt: Removed.
+        * platform/qt/css3/filters/filter-region-expected.txt: Removed.
+        * platform/qt/css3/filters/filter-with-transform-expected.txt: Removed.
+        * platform/qt/css3/filters/filtered-inline-expected.txt: Removed.
+        * platform/qt/css3/filters/nested-filter-expected.txt: Removed.
+        * platform/qt/css3/filters/nested-filters-expected.txt: Removed.
+        * platform/qt/css3/filters/simple-filter-rendering-expected.txt: Removed.
+
+2012-02-13  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        [chromium] Unreviewed gardening.  Rebaselining post skia change (from a long \
time ago). +        http://code.google.com/p/chromium/issues/detail?id=105305
+
+        * platform/chromium-gpu-linux/media/audio-repaint-expected.png: Removed.
+        * platform/chromium-linux/media/audio-repaint-expected.png:
+        * platform/chromium-mac-leopard/media/audio-repaint-expected.png:
+        * platform/chromium-mac-snowleopard/media/audio-repaint-expected.png:
+        * platform/chromium-win/media/audio-repaint-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Arun Patole  &lt;bmf834@motorola.com&gt;
+
+        Chrome crashes when attempting to add cue to track element
+        https://bugs.webkit.org/show_bug.cgi?id=77951
+
+        Reviewed by Eric Carlson.
+
+        Updated add-remove-cue.html to handle adding a new cue to the text track \
created with addTextTrack. +        * media/track/track-add-remove-cue-expected.txt:
+        * media/track/track-add-remove-cue.html:
+
+2012-02-13  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Fix font-face-weight-matching.html and font-face-synthetic-bold-italic.html
+        https://bugs.webkit.org/show_bug.cgi?id=78492
+
+        Fix the URL of Ahem.ttf.
+
+        Reviewed by Eric Seidel.
+
+        * fast/css/font-face-synthetic-bold-italic.html:
+        * fast/css/font-face-weight-matching.html:
+
+2012-02-13  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash with button in multi-column layout.
+        https://bugs.webkit.org/show_bug.cgi?id=78378
+
+        Reviewed by David Hyatt.
+
+        * fast/multicol/span/split-flow-anonymous-wrapper-crash-expected.txt: Added.
+        * fast/multicol/span/split-flow-anonymous-wrapper-crash.html: Added.
+
+2012-02-09  Ojan Vafai  &lt;ojan@chromium.org&gt;
+
+        nesting horizontal flexboxes is broken
+        https://bugs.webkit.org/show_bug.cgi?id=76867
+
+        Reviewed by David Hyatt.
+
+        * css3/flexbox/floated-flexbox-expected.txt:
+        * css3/flexbox/line-wrapping.html:
+        The old results here were wrong because they wrapped the contents of each \
flex item. +
+        * css3/flexbox/preferred-widths-expected.txt: Added.
+        * css3/flexbox/preferred-widths-orthogonal-expected.txt: Added.
+        * css3/flexbox/preferred-widths-orthogonal.html: Added.
+        * css3/flexbox/preferred-widths.html: Added.
+
+2012-02-13  Mihnea Ovidenie  &lt;mihnea@adobe.com&gt;
+
+        Crash in RenderFlowThread::setRegionBoxesRegionStyle
+        https://bugs.webkit.org/show_bug.cgi?id=78298
+
+        Reviewed by David Hyatt.
+
+        * fast/regions/set-box-style-in-region-crash-expected.txt: Added.
+        * fast/regions/set-box-style-in-region-crash.html: Added.
+
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, skip http/tests/navigation/https-in-page-cache.html
+        because we don't enable the page cache in chromium.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, r107611 enabled layout tests in css3/filters,
+        but some are missing results.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed gardening.  We don't need to pass
+        platform/win/inverted-colors/non-composited.html.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        [chromium] Unreviewed gardening.  Rebaselining GPU results.
+
+        * platform/chromium-gpu-linux/media/controls-after-reload-expected.png:
+        * platform/chromium-gpu-linux/media/controls-strict-expected.png:
+        * platform/chromium-gpu-linux/media/controls-styling-expected.png:
+        * platform/chromium-gpu-linux/media/controls-without-preload-expected.png:
+        * platform/chromium-gpu-linux/media/video-aspect-ratio-expected.png:
+        * platform/chromium-gpu-linux/media/video-canvas-alpha-expected.png:
+        * platform/chromium-gpu-linux/media/video-controls-rendering-expected.png:
+        * platform/chromium-gpu-linux/media/video-display-toggle-expected.png:
+        * platform/chromium-gpu-linux/media/video-layer-crash-expected.png:
+        * platform/chromium-gpu-linux/media/video-playing-and-pause-expected.png:
+        * platform/chromium-gpu-linux/media/video-transformed-expected.png:
+        * platform/chromium-gpu-linux/media/video-volume-slider-expected.png:
+        * platform/chromium-gpu-linux/media/video-zoom-controls-expected.png:
+        * platform/chromium-gpu-linux/media/video-zoom-expected.png:
+        * platform/chromium-gpu-mac/media/controls-after-reload-expected.txt: \
Removed. +        * platform/chromium-gpu-mac/media/video-controls-rendering-expected.png:
 +        * platform/chromium-gpu-mac/media/video-playing-and-pause-expected.txt: \
Removed. +        * platform/chromium-gpu-win/media/controls-strict-expected.txt: \
Removed. +        * platform/chromium-gpu-win/media/controls-styling-expected.txt: \
Removed. +        * platform/chromium-gpu-win/media/controls-without-preload-expected.txt: \
Removed. +        * platform/chromium-gpu-win/media/video-controls-rendering-expected.png:
 +
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        Unreviewed, rolling out r107582.
+        http://trac.webkit.org/changeset/107582
+        https://bugs.webkit.org/show_bug.cgi?id=78349
+
+        Broke three inspector interactive_ui_tests
+
+        * http/tests/inspector/debugger-test.js:
+        (initialize_DebuggerTest):
+        * inspector/debugger/scripts-combobox-file-selector-history-expected.txt: \
Removed. +        * inspector/debugger/scripts-combobox-file-selector-history.html: \
Removed. +        * inspector/debugger/scripts-file-selector-expected.txt: Removed.
+        * inspector/debugger/scripts-file-selector.html: Removed.
+        * inspector/debugger/scripts-panel-expected.txt:
+        * inspector/debugger/scripts-panel.html:
+        * inspector/debugger/scripts-sorting-expected.txt:
+        * inspector/debugger/scripts-sorting.html:
+        * inspector/debugger/source-frame-count.html:
+
+2012-02-13  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Incorrect children placement in multi-column layout.        
+        https://bugs.webkit.org/show_bug.cgi?id=78160
+
+        Reviewed by David Hyatt.
+
+        * fast/multicol/span/clone-before-after-content-crash-expected.txt: Added.
+        * fast/multicol/span/clone-before-after-content-crash.html: Added.
+
+2012-02-13  Stephen White  &lt;senorblanco@chromium.org&gt;
+
+        Unskip the css3/filters tests, so we can get some baselines off the
+        bots.
+        https://bugs.webkit.org/show_bug.cgi?id=78527
+
+        Reviewed by Kenneth Russell.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Brady Eidson  &lt;beidson@apple.com&gt;
+
+        &lt;rdar://problem/7196487&gt; and \
https://bugs.webkit.org/show_bug.cgi?id=26777 +        Add https pages to the page \
cache in some cases +
+        Reviewed by Anders Carlsson.
+
+        * http/tests/navigation/https-in-page-cache.html: Added.
+        * http/tests/navigation/https-in-page-cache-expected.txt: Added.
+        * http/tests/navigation/resources/https-in-page-cache-1.php: Added.
+        * http/tests/navigation/resources/https-in-page-cache-2.php: Added.
+        * http/tests/navigation/resources/https-in-page-cache-3.html: Added.
+
+2012-02-13  Raul Hudea  &lt;rhudea@adobe.com&gt;
+
+        [CSS Regions] Inconsistent text selection behavior in regions
+        https://bugs.webkit.org/show_bug.cgi?id=76456
+
+        Reviewed by David Hyatt.
+
+        * fast/regions/hit-test-region-expected.txt: Added.
+        * fast/regions/hit-test-region.html: Added.
+
+2012-02-12  Andy Estes  &lt;aestes@apple.com&gt;
+
+        [Windows] Add API to enable inverted color drawing on a WebView
+        https://bugs.webkit.org/show_bug.cgi?id=77382
+
+        Reviewed by Adam Roben.
+
+        Add a test for non-composited inverted drawing. Testing the composited
+        path is blocked on &lt;https://bugs.webkit.org/show_bug.cgi?id=78439&gt;.
+
+        * platform/win-wk2/platform/win/inverted-colors/non-composited-expected.png: \
Added. +        * platform/win-wk2/platform/win/inverted-colors/non-composited-expected.txt: \
Added. +        * platform/win/inverted-colors/non-composited-expected.png: Added.
+        * platform/win/inverted-colors/non-composited-expected.txt: Added.
+        * platform/win/inverted-colors/non-composited.html: Added.
+        * platform/win/inverted-colors/resources/gradient.png: Added.
+
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed gardening.  Marking some debug tests as failing.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        chromium gpu draws scrollbars slightly differently in debug vs. release \
modes on +        https://bugs.webkit.org/show_bug.cgi?id=58587
+
+        Unreviewed rebaseline (the scrollbar issue the bug is about was fixed \
previously). +
+        * platform/chromium-linux/media/video-controls-rendering-expected.png:
+        * platform/chromium-mac-leopard/media/video-controls-rendering-expected.png:
+        * platform/chromium-mac-snowleopard/media/video-controls-rendering-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/media/video-controls-rendering-expected.txt: \
Renamed from LayoutTests/platform/chromium-mac/media/video-controls-rendering-expected.txt.
 +        * platform/chromium-mac/media/video-controls-rendering-expected.png: \
Removed. +        * platform/chromium-win/media/video-controls-rendering-expected.png:
 +        * platform/chromium/test_expectations.txt:
+        * platform/mac-future/media/video-controls-rendering-expected.txt: Renamed \
from LayoutTests/platform/mac/media/video-controls-rendering-expected.txt. +
+2012-02-13  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        Rebaseline media layouttests following keyframe addition to test.ogv
+        https://bugs.webkit.org/show_bug.cgi?id=78367
+
+        Unreviewed chromium rebaselining.
+
+        * platform/chromium-gpu-mac/media/controls-after-reload-expected.png:
+        * platform/chromium-gpu-mac/media/controls-after-reload-expected.txt: Added.
+        * platform/chromium-gpu-mac/media/controls-strict-expected.png:
+        * platform/chromium-gpu-mac/media/controls-styling-expected.png:
+        * platform/chromium-gpu-mac/media/controls-without-preload-expected.png:
+        * platform/chromium-gpu-mac/media/video-aspect-ratio-expected.png:
+        * platform/chromium-gpu-mac/media/video-display-toggle-expected.png:
+        * platform/chromium-gpu-mac/media/video-layer-crash-expected.png:
+        * platform/chromium-gpu-mac/media/video-playing-and-pause-expected.png:
+        * platform/chromium-gpu-mac/media/video-playing-and-pause-expected.txt: \
Added. +        * platform/chromium-gpu-mac/media/video-transformed-expected.png:
+        * platform/chromium-gpu-mac/media/video-volume-slider-expected.png:
+        * platform/chromium-gpu-mac/media/video-zoom-controls-expected.png:
+        * platform/chromium-gpu-mac/media/video-zoom-expected.png:
+        * platform/chromium-gpu-win/media/controls-after-reload-expected.png:
+        * platform/chromium-gpu-win/media/controls-strict-expected.png:
+        * platform/chromium-gpu-win/media/controls-strict-expected.txt: Copied from \
LayoutTests/platform/chromium/media/controls-strict-expected.txt. +        * \
platform/chromium-gpu-win/media/controls-styling-expected.png: +        * \
platform/chromium-gpu-win/media/controls-styling-expected.txt: Copied from \
LayoutTests/platform/chromium/media/controls-styling-expected.txt. +        * \
platform/chromium-gpu-win/media/controls-without-preload-expected.png: +        * \
platform/chromium-gpu-win/media/controls-without-preload-expected.txt: Copied from \
LayoutTests/platform/chromium/media/controls-without-preload-expected.txt. +        * \
platform/chromium-gpu-win/media/video-aspect-ratio-expected.png: +        * \
platform/chromium-gpu-win/media/video-canvas-alpha-expected.png: +        * \
platform/chromium-gpu-win/media/video-display-toggle-expected.png: +        * \
platform/chromium-gpu-win/media/video-layer-crash-expected.png: +        * \
platform/chromium-gpu-win/media/video-playing-and-pause-expected.png: +        * \
platform/chromium-gpu-win/media/video-transformed-expected.png: +        * \
platform/chromium-gpu-win/media/video-volume-slider-expected.png: +        * \
platform/chromium-gpu-win/media/video-zoom-controls-expected.png: +        * \
platform/chromium-gpu-win/media/video-zoom-expected.png: +        * \
platform/chromium-linux-x86/media/video-display-toggle-expected.png: Added. +        \
* platform/chromium-linux/media/controls-after-reload-expected.png: +        * \
platform/chromium-linux/media/controls-strict-expected.png: +        * \
platform/chromium-linux/media/controls-styling-expected.png: +        * \
platform/chromium-linux/media/controls-without-preload-expected.png: +        * \
platform/chromium-linux/media/video-aspect-ratio-expected.png: +        * \
platform/chromium-linux/media/video-display-toggle-expected.png: +        * \
platform/chromium-linux/media/video-layer-crash-expected.png: +        * \
platform/chromium-linux/media/video-playing-and-pause-expected.png: +        * \
platform/chromium-linux/media/video-transformed-expected.png: +        * \
platform/chromium-linux/media/video-volume-slider-expected.png: +        * \
platform/chromium-linux/media/video-zoom-controls-expected.png: +        * \
platform/chromium-linux/media/video-zoom-expected.png: +        * \
platform/chromium-mac-leopard/media/controls-after-reload-expected.png: +        * \
platform/chromium-mac-leopard/media/controls-strict-expected.png: +        * \
platform/chromium-mac-leopard/media/controls-styling-expected.png: +        * \
platform/chromium-mac-leopard/media/controls-without-preload-expected.png: +        * \
platform/chromium-mac-leopard/media/video-aspect-ratio-expected.png: +        * \
platform/chromium-mac-leopard/media/video-display-toggle-expected.png: +        * \
platform/chromium-mac-leopard/media/video-layer-crash-expected.png: +        * \
platform/chromium-mac-leopard/media/video-playing-and-pause-expected.png: +        * \
platform/chromium-mac-leopard/media/video-transformed-expected.png: +        * \
platform/chromium-mac-leopard/media/video-volume-slider-expected.png: +        * \
platform/chromium-mac-leopard/media/video-zoom-expected.png: +        * \
platform/chromium-mac-snowleopard/media/controls-after-reload-expected.png: +        \
* platform/chromium-mac-snowleopard/media/controls-after-reload-expected.txt: Renamed \
from LayoutTests/platform/chromium/media/controls-after-reload-expected.txt. +        \
* platform/chromium-mac-snowleopard/media/controls-strict-expected.png: +        * \
platform/chromium-mac-snowleopard/media/controls-strict-expected.txt: Renamed from \
LayoutTests/platform/chromium/media/controls-strict-expected.txt. +        * \
platform/chromium-mac-snowleopard/media/controls-styling-expected.png: +        * \
platform/chromium-mac-snowleopard/media/controls-styling-expected.txt: Renamed from \
LayoutTests/platform/chromium/media/controls-styling-expected.txt. +        * \
platform/chromium-mac-snowleopard/media/controls-without-preload-expected.png: +      \
* platform/chromium-mac-snowleopard/media/controls-without-preload-expected.txt: \
Renamed from LayoutTests/platform/chromium/media/controls-without-preload-expected.txt.
 +        * platform/chromium-mac-snowleopard/media/video-aspect-ratio-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/media/video-canvas-alpha-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/media/video-display-toggle-expected.png:
 +        * platform/chromium-mac-snowleopard/media/video-layer-crash-expected.png:
+        * platform/chromium-mac-snowleopard/media/video-playing-and-pause-expected.png:
 +        * platform/chromium-mac-snowleopard/media/video-playing-and-pause-expected.txt: \
Renamed from LayoutTests/platform/chromium/media/video-playing-and-pause-expected.txt.
 +        * platform/chromium-mac-snowleopard/media/video-transformed-expected.png:
+        * platform/chromium-mac-snowleopard/media/video-volume-slider-expected.png:
+        * platform/chromium-mac-snowleopard/media/video-volume-slider-expected.txt: \
Renamed from LayoutTests/platform/chromium/media/video-volume-slider-expected.txt. +  \
* platform/chromium-mac-snowleopard/media/video-zoom-controls-expected.png: +        \
* platform/chromium-mac-snowleopard/media/video-zoom-controls-expected.txt: Renamed \
from LayoutTests/platform/chromium/media/video-zoom-controls-expected.txt. +        * \
platform/chromium-mac-snowleopard/media/video-zoom-expected.png: Added. +        * \
platform/chromium-mac/media/video-aspect-ratio-expected.png: Removed. +        * \
platform/chromium-mac/media/video-canvas-alpha-expected.png: Removed. +        * \
platform/chromium-mac/media/video-zoom-expected.png: Removed. +        * \
platform/chromium-win/media/controls-after-reload-expected.png: +        * \
platform/chromium-win/media/controls-strict-expected.png: +        * \
platform/chromium-win/media/controls-styling-expected.png: +        * \
platform/chromium-win/media/controls-without-preload-expected.png: +        * \
platform/chromium-win/media/video-aspect-ratio-expected.png: +        * \
platform/chromium-win/media/video-canvas-alpha-expected.png: +        * \
platform/chromium-win/media/video-display-toggle-expected.png: +        * \
platform/chromium-win/media/video-layer-crash-expected.png: +        * \
platform/chromium-win/media/video-playing-and-pause-expected.png: +        * \
platform/chromium-win/media/video-transformed-expected.png: +        * \
platform/chromium-win/media/video-volume-slider-expected.png: +        * \
platform/chromium-win/media/video-zoom-controls-expected.png: +        * \
platform/chromium-win/media/video-zoom-expected.png: +        * \
platform/chromium/test_expectations.txt: +        * \
platform/mac-future/media/controls-strict-expected.txt: Renamed from \
LayoutTests/platform/mac/media/controls-strict-expected.txt. +
+2012-02-13  Chris Fleizach  &lt;cfleizach@apple.com&gt;
+
+        AX: &lt;mark&gt; element should be exposed through attributes
+        https://bugs.webkit.org/show_bug.cgi?id=75727
+
+        Reviewed by Beth Dakin.
+
+        * platform/mac/accessibility/attributed-string-includes-highlighting-expected.txt: \
Added. +        * platform/mac/accessibility/attributed-string-includes-highlighting.html: \
Added. +
+2012-02-13  Chris Fleizach  &lt;cfleizach@apple.com&gt;
+
+        AX: the web area should report that focus can be set to itself
+        https://bugs.webkit.org/show_bug.cgi?id=78272
+
+        Reviewed by Beth Dakin.
+
+        * platform/mac/accessibility/webarea-can-set-focus-expected.txt: Added.
+        * platform/mac/accessibility/webarea-can-set-focus.html: Added.
+
+2012-02-13  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, update mac-snowleopard result.  This matches
+        the Apple Mac (Lion) result except for minor antialias differences.
+
+        * platform/chromium-mac-snowleopard/svg/custom/foreignObject-crash-on-hover-expected.png:
 +
+2012-02-10  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: Make ScriptsNavigator default file selector.
+        https://bugs.webkit.org/show_bug.cgi?id=78349
+
+        Reviewed by Pavel Feldman.
+
+        * http/tests/inspector/debugger-test.js:
+        (initialize_DebuggerTest):
+        (initialize_DebuggerTest.):
+        * inspector/debugger/scripts-combobox-file-selector-history-expected.txt: \
Added. +        * inspector/debugger/scripts-combobox-file-selector-history.html: \
Added. +        * inspector/debugger/scripts-file-selector-expected.txt: Copied from \
LayoutTests/inspector/debugger/scripts-panel-expected.txt. +        * \
inspector/debugger/scripts-file-selector.html: Added. +        * \
inspector/debugger/scripts-panel-expected.txt: +        * \
inspector/debugger/scripts-panel.html: +        * \
inspector/debugger/scripts-sorting-expected.txt: +        * \
inspector/debugger/scripts-sorting.html: +        * \
inspector/debugger/source-frame-count.html: +
+2012-02-13  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, skip a new failing test.
+
+        * platform/qt/Skipped:
+
+2012-02-13  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, add new chromium baselines for font-face-multiple-faces.html.
+
+        * platform/chromium-mac-snowleopard/fast/css/font-face-multiple-faces-expected.png:
 +        * platform/chromium-win/fast/css/font-face-multiple-faces-expected.png:
+
+2012-02-13  Peter Rybin  &lt;peter.rybin@gmail.com&gt;
+
+        Web Inspector: In Inspector.json PropertyDescriptor.writable should be \
declared optional +        https://bugs.webkit.org/show_bug.cgi?id=77917
+
+        Reviewed by Pavel Feldman.
+
+        &quot;Undefined&quot; getter and setter is now visible.
+
+        * inspector/runtime/runtime-getProperties-expected.txt:
+
+2012-02-13  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/test_expectations.txt: Mark \
fast/js/dfg-inline-function-dot-caller.html as slow in debug mode. +
+2012-02-13  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, add &quot;IMAGE&quot; to two svg/carto.net tests expectations.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: wrap settings selector text and adding a rule with undoable \
actions. +        https://bugs.webkit.org/show_bug.cgi?id=78482
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/styles/undo-add-new-rule-expected.txt: Added.
+        * inspector/styles/undo-add-new-rule.html: Added.
+        * inspector/styles/undo-set-selector-text-expected.txt: Added.
+        * inspector/styles/undo-set-selector-text.html: Added.
+
+2012-02-13  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, unskip now passing tests.
+
+        * platform/qt/Skipped:
+
+2012-02-13  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Unreviewed gardening after r107544.
+
+        * fast/dom/wrapper-classes-expected.txt:
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/qt/fast/dom/prototype-inheritance-2-expected.txt:
+
+2012-02-13  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, mark dfg-put-by-id-prototype-check.html as failing in chromium \
(new test). +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Arko Saha  &lt;arko@motorola.com&gt;
+
+        &lt;summary&gt; is not keyboard accessible.
+        https://bugs.webkit.org/show_bug.cgi?id=75478
+
+        Reviewed by Hajime Morita.
+
+        * fast/html/details-keyboard-show-hide-expected.txt: Added.
+        * fast/html/details-keyboard-show-hide.html: Added.
+        * platform/chromium/test_expectations.txt: &lt;summary&gt; is now focusable \
and clicking +        it draws a focus ring. So we need to rebase failed test cases.
+
+2012-02-13  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] REGRESSION(r107518): It broke many tests
+        https://bugs.webkit.org/show_bug.cgi?id=78471
+
+        * platform/qt/Skipped: Unreviewed gardening, skip failing tests.
+
+2012-02-13  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, add new baseline for font-face-default-font.html on linux.
+
+        * platform/chromium-linux/fast/css/font-face-default-font-expected.txt: \
Added. +
+2012-02-13  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        Rebaseline JPEG image results after r107389
+        https://bugs.webkit.org/show_bug.cgi?id=78454
+
+        Unreviewed. Preparation for a bunch of rebaselines.
+
+        * platform/chromium/test_expectations.txt: unskip tests to allow bots to \
cycle and +        produce the new JPEG image results.
+
+2012-02-13  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=78434
+        Unreviewed - temporarily reverting r107498 will I fix a couple of testcases.
+
+        * fast/js/Object-getOwnPropertyNames-expected.txt:
+        * fast/js/cyclic-prototypes-expected.txt:
+        * fast/js/parser-syntax-check-expected.txt:
+        * fast/js/preventExtensions-expected.txt:
+        * fast/js/prototypes-expected.txt:
+        * fast/js/script-tests/Object-getOwnPropertyNames.js:
+        * fast/js/script-tests/cyclic-prototypes.js:
+        * fast/js/script-tests/parser-syntax-check.js:
+        * fast/js/script-tests/preventExtensions.js:
+        * fast/js/script-tests/prototypes.js:
+
+2012-02-13  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, remove missing test from expectations.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-13  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        This test is testing the argument handling behavior of this API.  Now
+        that we autogenerate this code, we now throw consistent exceptions with
+        the rest of the platform.  There shouldn't be a compat issue here
+        because this API hasn't shipped in production releases yet.
+
+        * fast/dom/MediaStream/argument-types-expected.txt:
+        * fast/dom/MediaStream/script-tests/argument-types.js:
+
+2012-02-13  Kangil Han  &lt;kangil.han@samsung.com&gt;
+
+        [EFL][DRT] Add new expected layout results come from bug 78091.
+        https://bugs.webkit.org/show_bug.cgi?id=78188
+
+        Reviewed by Ryosuke Niwa.
+
+        Implemented zoomPageIn, zoomPageOut, textZoomIn and textZoomOut events on \
EFL DRT. +        This patch will activate around 1,900 test cases from skipped list \
in EFL port. +
+        * platform/efl/Skipped:
+        * platform/efl/svg/css/composite-shadow-example-expected.txt: Added.
+        * platform/efl/svg/css/composite-shadow-text-expected.txt: Added.
+        * platform/efl/svg/css/composite-shadow-with-opacity-expected.txt: Added.
+        * platform/efl/svg/css/css-box-min-width-expected.txt: Added.
+        * platform/efl/svg/css/group-with-shadow-expected.txt: Added.
+        * platform/efl/svg/css/mask-with-shadow-expected.txt: Added.
+        * platform/efl/svg/css/path-gradient-stroke-shadow-expected.txt: Added.
+        * platform/efl/svg/css/path-with-shadow-expected.txt: Added.
+        * platform/efl/svg/css/shadow-and-opacity-expected.txt: Added.
+        * platform/efl/svg/css/shadow-changes-expected.txt: Added.
+        * platform/efl/svg/css/shadow-with-large-radius-expected.txt: Added.
+        * platform/efl/svg/css/shadow-with-negative-offset-expected.txt: Added.
+        * platform/efl/svg/css/stars-with-shadow-expected.txt: Added.
+        * platform/efl/svg/css/text-gradient-shadow-expected.txt: Added.
+        * platform/efl/svg/css/text-shadow-multiple-expected.txt: Added.
+        * platform/efl/svg/dom/SVGPathSegList-segment-modification-expected.txt: \
Added. +        * platform/efl/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.txt: \
Added. +        * platform/efl/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.txt: \
Added. +        * platform/efl/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.txt: \
Added. +        * platform/efl/svg/foreignObject/svg-document-as-direct-child-expected.txt: \
Added. +        * platform/efl/svg/foreignObject/svg-document-in-html-document-expected.txt: \
Added. +        * platform/efl/svg/hixie/cascade/001-broken-expected.txt: Added.
+        * platform/efl/svg/hixie/cascade/002-expected.txt: Added.
+        * platform/efl/svg/hixie/data-types/001-expected.txt: Added.
+        * platform/efl/svg/hixie/data-types/002-expected.txt: Added.
+        * platform/efl/svg/hixie/dynamic/002-expected.txt: Added.
+        * platform/efl/svg/hixie/dynamic/003-expected.txt: Added.
+        * platform/efl/svg/hixie/dynamic/004-expected.txt: Added.
+        * platform/efl/svg/hixie/dynamic/005-expected.txt: Added.
+        * platform/efl/svg/hixie/dynamic/006-expected.txt: Added.
+        * platform/efl/svg/hixie/error/001-expected.txt: Added.
+        * platform/efl/svg/hixie/error/002-expected.txt: Added.
+        * platform/efl/svg/hixie/error/003-expected.txt: Added.
+        * platform/efl/svg/hixie/error/006-expected.txt: Added.
+        * platform/efl/svg/hixie/error/007-expected.txt: Added.
+        * platform/efl/svg/hixie/error/008-expected.txt: Added.
+        * platform/efl/svg/hixie/error/009-expected.txt: Added.
+        * platform/efl/svg/hixie/error/010-expected.txt: Added.
+        * platform/efl/svg/hixie/error/011-expected.txt: Added.
+        * platform/efl/svg/hixie/error/012-expected.txt: Added.
+        * platform/efl/svg/hixie/error/013-expected.txt: Added.
+        * platform/efl/svg/hixie/error/014-expected.txt: Added.
+        * platform/efl/svg/hixie/error/014-test-expected.txt: Added.
+        * platform/efl/svg/hixie/error/015-expected.txt: Added.
+        * platform/efl/svg/hixie/error/016-expected.txt: Added.
+        * platform/efl/svg/hixie/error/017-expected.txt: Added.
+        * platform/efl/svg/hixie/intrinsic/001-expected.txt: Added.
+        * platform/efl/svg/hixie/intrinsic/002-expected.txt: Added.
+        * platform/efl/svg/hixie/intrinsic/003-expected.txt: Added.
+        * platform/efl/svg/hixie/links/002-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/003-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/004-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/005-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/006-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/007-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/008-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/009-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/010-expected.txt: Added.
+        * platform/efl/svg/hixie/mixed/011-expected.txt: Added.
+        * platform/efl/svg/hixie/painting/001-expected.txt: Added.
+        * platform/efl/svg/hixie/perf/001-expected.txt: Added.
+        * platform/efl/svg/hixie/perf/002-expected.txt: Added.
+        * platform/efl/svg/hixie/perf/003-expected.txt: Added.
+        * platform/efl/svg/hixie/perf/004-expected.txt: Added.
+        * platform/efl/svg/hixie/perf/005-expected.txt: Added.
+        * platform/efl/svg/hixie/perf/006-expected.txt: Added.
+        * platform/efl/svg/hixie/perf/007-expected.txt: Added.
+        * platform/efl/svg/hixie/processing-model/003-expected.txt: Added.
+        * platform/efl/svg/hixie/processing-model/004-expected.txt: Added.
+        * platform/efl/svg/hixie/processing-model/005-expected.txt: Added.
+        * platform/efl/svg/hixie/rendering-model/001-expected.txt: Added.
+        * platform/efl/svg/hixie/rendering-model/002-expected.txt: Added.
+        * platform/efl/svg/hixie/rendering-model/003-expected.txt: Added.
+        * platform/efl/svg/hixie/rendering-model/003a-expected.txt: Added.
+        * platform/efl/svg/hixie/rendering-model/004-expected.txt: Added.
+        * platform/efl/svg/hixie/shapes/path/001-expected.txt: Added.
+        * platform/efl/svg/hixie/text/001-expected.txt: Added.
+        * platform/efl/svg/hixie/text/002-expected.txt: Added.
+        * platform/efl/svg/hixie/text/003-expected.txt: Added.
+        * platform/efl/svg/hixie/text/003a-expected.txt: Added.
+        * platform/efl/svg/hixie/text/003b-expected.txt: Added.
+        * platform/efl/svg/hixie/transform/001-expected.txt: Added.
+        * platform/efl/svg/hixie/use/001-expected.txt: Added.
+        * platform/efl/svg/hixie/use/002-expected.txt: Added.
+        * platform/efl/svg/hixie/use/002-test-expected.txt: Added.
+        * platform/efl/svg/hixie/viewbox/001-expected.txt: Added.
+        * platform/efl/svg/hixie/viewbox/004-expected.txt: Added.
+        * platform/efl/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt: \
Added. +        * platform/efl/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt: \
Added. +        * platform/efl/svg/in-html/by-reference-expected.txt: Added.
+        * platform/efl/svg/in-html/circle-expected.txt: Added.
+        * platform/efl/svg/overflow/overflow-on-foreignObject-expected.txt: Added.
+        * platform/efl/svg/overflow/overflow-on-inner-svg-element-defaults-expected.txt: \
Added. +        * platform/efl/svg/overflow/overflow-on-inner-svg-element-expected.txt: \
Added. +        * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.txt: \
Added. +        * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.txt: \
Added. +        * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.txt: \
Added. +        * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.txt: \
Added. +        * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.txt: \
Added. +        * platform/efl/svg/repaint/filter-child-repaint-expected.txt: Added.
+        * platform/efl/svg/repaint/filter-repaint-expected.txt: Added.
+        * platform/efl/svg/stroke/zero-length-path-linecap-rendering-expected.txt: \
Added. +        * platform/efl/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: \
Added. +        * platform/efl/svg/transforms/animated-path-inside-transformed-html-expected.txt: \
Added. +        * platform/efl/svg/transforms/svg-css-transforms-clip-path-expected.txt: \
Added. +        * platform/efl/svg/transforms/svg-css-transforms-expected.txt: Added.
+        * platform/efl/svg/transforms/text-with-mask-with-svg-transform-expected.txt: \
Added. +        * platform/efl/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt: \
Added. +        * platform/efl/svg/transforms/text-with-pattern-with-svg-transform-expected.txt: \
Added. +        * platform/efl/svg/wicd/rightsizing-grid-expected.txt: Added.
+        * platform/efl/svg/wicd/sizing-flakiness-expected.txt: Added.
+        * platform/efl/svg/wicd/test-rightsizing-a-expected.txt: Added.
+        * platform/efl/svg/wicd/test-rightsizing-b-expected.txt: Added.
+        * platform/efl/svg/wicd/test-scalable-background-image1-expected.txt: Added.
+        * platform/efl/svg/wicd/test-scalable-background-image2-expected.txt: Added.
+        * platform/efl/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/absolute-sized-document-scrollbars-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-background-image-tiled-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-background-images-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-foreignObject-expected.txt: Added.
+        * platform/efl/svg/zoom/page/zoom-hixie-mixed-008-expected.txt: Added.
+        * platform/efl/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Added.
+        * platform/efl/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-mask-with-percentages-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-as-background-with-relative-size-and-viewBox-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-as-background-with-relative-size-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-as-image-expected.txt: Added.
+        * platform/efl/svg/zoom/page/zoom-svg-as-object-expected.txt: Added.
+        * platform/efl/svg/zoom/page/zoom-svg-as-relative-image-expected.txt: Added.
+        * platform/efl/svg/zoom/page/zoom-svg-float-border-padding-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: \
Added. +        * platform/efl/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: \
Added. +        * platform/efl/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.txt: \
Added. +        * platform/efl/svg/zoom/text/absolute-sized-document-scrollbars-expected.txt: \
Added. +        * platform/efl/svg/zoom/text/relative-sized-document-scrollbars-expected.txt: \
Added. +        * platform/efl/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt: \
Added. +        * platform/efl/svg/zoom/text/zoom-foreignObject-expected.txt: Added.
+        * platform/efl/svg/zoom/text/zoom-hixie-mixed-008-expected.txt: Added.
+        * platform/efl/svg/zoom/text/zoom-hixie-mixed-009-expected.txt: Added.
+        * platform/efl/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt: \
Added. +        * platform/efl/svg/zoom/text/zoom-svg-float-border-padding-expected.txt: \
Added. +
+2012-02-12  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, skipping 2 tests failing because of bug 78434.
+
+        * platform/gtk/Skipped:
+
+2012-02-12  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Unreviewed test expectations update after r107516.
+
+        * platform/chromium-mac-leopard/fast/css/font-face-default-font-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/css/font-face-multiple-faces-expected.png:
 +        * platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/font-face-multiple-faces-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/fast/css/font-face-multiple-faces-expected.png.
 +        * platform/chromium-mac/fast/css/font-face-default-font-expected.png: \
Removed. +        * platform/chromium-win/fast/css/font-face-default-font-expected.png:
 +        * platform/chromium-win/fast/css/font-face-default-font-expected.txt:
+
+2012-02-12  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Remove fast/css/font-face-descriptor-multiple-values.html
+        https://bugs.webkit.org/show_bug.cgi?id=78456
+
+        The test is no longer needed because WebKit now follow the current
+        draft(*1) and doesn't accept multiple font-weight descriptors.
+        (*1) http://dev.w3.org/csswg/css3-fonts/#descdef-font-weight
+
+        Reviewed by Hajime Morita.
+
+        * fast/css/font-face-descriptor-multiple-values.html: Removed.
+        * fast/css/resources/font-face-descriptor-multiple-values-parsing.js: \
Removed. +        * platform/chromium-linux/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/chromium-mac-leopard/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/chromium-mac/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/chromium-mac/fast/css/font-face-descriptor-multiple-values-parsing-expected.txt: \
Removed. +        * platform/chromium-win/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/chromium-win/fast/css/font-face-descriptor-multiple-values-expected.txt: \
Removed. +        * platform/chromium-win/fast/css/font-face-descriptor-multiple-values-parsing-expected.txt: \
Removed. +        * platform/efl/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/efl/fast/css/font-face-descriptor-multiple-values-expected.txt: \
Removed. +        * platform/gtk/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/gtk/fast/css/font-face-descriptor-multiple-values-expected.txt: \
Removed. +        * platform/mac-leopard/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/mac/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/mac/fast/css/font-face-descriptor-multiple-values-expected.txt: \
Removed. +        * platform/qt/fast/css/font-face-descriptor-multiple-values-expected.png: \
Removed. +        * platform/qt/fast/css/font-face-descriptor-multiple-values-expected.txt: \
Removed. +
+2012-02-12  Kangil Han  &lt;kangil.han@samsung.com&gt;
+
+        [EFL][DRT] Implement zoomPage{In,Out} and textZoom{In,Out} events.
+        https://bugs.webkit.org/show_bug.cgi?id=78091
+
+        Reviewed by Hajime Morita.
+
+        Implemented zoomPageIn, zoomPageOut, textZoomIn and textZoomOut events on \
EFL DRT. +        This patch will activate around 1,900 test cases from skipped list \
in EFL port. +
+        * platform/efl/fast/css/ignore-text-zoom-expected.txt: Added.
+        * platform/efl/fast/css/preserve-user-specified-zoom-level-on-reload-expected.txt: \
Added. +        * platform/efl/fast/images/imagemap-focus-ring-zoom-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-anchor-no-markup-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt: \
Added. +        * platform/efl/svg/W3C-I18N/tspan-direction-ltr-expected.txt: Added.
+        * platform/efl/svg/W3C-I18N/tspan-direction-rtl-expected.txt: Added.
+        * platform/efl/svg/as-background-image/animated-svg-as-background-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/background-image-tiled-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/same-image-two-instances-background-image-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-as-background-2-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-as-background-6-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-as-background-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-as-background-with-relative-size-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-as-background-with-viewBox-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-as-tiled-background-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-background-partial-redraw-expected.txt: \
Added. +        * platform/efl/svg/as-background-image/svg-width-100p-as-background-expected.txt: \
Added. +        * platform/efl/svg/as-border-image/svg-as-border-image-2-expected.txt: \
Added. +        * platform/efl/svg/as-border-image/svg-as-border-image-expected.txt: \
Added. +        * platform/efl/svg/as-image/animated-svg-as-image-expected.txt: \
Added. +        * platform/efl/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.txt: \
Added. +        * platform/efl/svg/as-image/animated-svg-as-image-same-image-expected.txt: \
Added. +        * platform/efl/svg/as-image/img-preserveAspectRatio-support-1-expected.txt: \
Added. +        * platform/efl/svg/as-image/img-preserveAspectRatio-support-2-expected.txt: \
Added. +        * platform/efl/svg/as-image/same-image-two-instances-expected.txt: \
Added. +        * platform/efl/svg/as-image/svg-as-image-expected.txt: Added.
+        * platform/efl/svg/as-image/svg-as-relative-image-with-explicit-size-expected.txt: \
Added. +        * platform/efl/svg/as-image/svg-image-change-content-size-expected.txt: \
Added. +        * platform/efl/svg/batik/filters/feTile-expected.txt: Added.
+        * platform/efl/svg/batik/filters/filterRegions-expected.txt: Added.
+        * platform/efl/svg/batik/masking/maskRegions-expected.txt: Added.
+        * platform/efl/svg/batik/paints/gradientLimit-expected.txt: Added.
+        * platform/efl/svg/batik/paints/patternPreserveAspectRatioA-expected.txt: \
Added. +        * platform/efl/svg/batik/paints/patternRegionA-expected.txt: Added.
+        * platform/efl/svg/batik/paints/patternRegions-expected.txt: Added.
+        * platform/efl/svg/batik/paints/patternRegions-positioned-objects-expected.txt: \
Added. +        * platform/efl/svg/batik/text/longTextOnPath-expected.txt: Added.
+        * platform/efl/svg/batik/text/smallFonts-expected.txt: Added.
+        * platform/efl/svg/batik/text/textAnchor-expected.txt: Added.
+        * platform/efl/svg/batik/text/textAnchor2-expected.txt: Added.
+        * platform/efl/svg/batik/text/textAnchor3-expected.txt: Added.
+        * platform/efl/svg/batik/text/textDecoration-expected.txt: Added.
+        * platform/efl/svg/batik/text/textDecoration2-expected.txt: Added.
+        * platform/efl/svg/batik/text/textEffect-expected.txt: Added.
+        * platform/efl/svg/batik/text/textEffect2-expected.txt: Added.
+        * platform/efl/svg/batik/text/textEffect3-expected.txt: Added.
+        * platform/efl/svg/batik/text/textFeatures-expected.txt: Added.
+        * platform/efl/svg/batik/text/textGlyphOrientationHorizontal-expected.txt: \
Added. +        * platform/efl/svg/batik/text/textLayout-expected.txt: Added.
+        * platform/efl/svg/batik/text/textLayout2-expected.txt: Added.
+        * platform/efl/svg/batik/text/textLength-expected.txt: Added.
+        * platform/efl/svg/batik/text/textOnPath-expected.txt: Added.
+        * platform/efl/svg/batik/text/textOnPath2-expected.txt: Added.
+        * platform/efl/svg/batik/text/textOnPath3-expected.txt: Added.
+        * platform/efl/svg/batik/text/textOnPathSpaces-expected.txt: Added.
+        * platform/efl/svg/batik/text/textPCDATA-expected.txt: Added.
+        * platform/efl/svg/batik/text/textPosition-expected.txt: Added.
+        * platform/efl/svg/batik/text/textPosition2-expected.txt: Added.
+        * platform/efl/svg/batik/text/textProperties-expected.txt: Added.
+        * platform/efl/svg/batik/text/textProperties2-expected.txt: Added.
+        * platform/efl/svg/batik/text/textStyles-expected.txt: Added.
+        * platform/efl/svg/batik/text/verticalText-expected.txt: Added.
+        * platform/efl/svg/batik/text/verticalTextOnPath-expected.txt: Added.
+        * platform/efl/svg/batik/text/xmlSpace-expected.txt: Added.
+        * platform/efl/svg/carto.net/button-expected.txt: Added.
+        * platform/efl/svg/carto.net/colourpicker-expected.txt: Added.
+        * platform/efl/svg/carto.net/combobox-expected.txt: Added.
+        * platform/efl/svg/carto.net/scrollbar-expected.txt: Added.
+        * platform/efl/svg/carto.net/selectionlist-expected.txt: Added.
+        * platform/efl/svg/carto.net/slider-expected.txt: Added.
+        * platform/efl/svg/carto.net/tabgroup-expected.txt: Added.
+        * platform/efl/svg/carto.net/textbox-expected.txt: Added.
+        * platform/efl/svg/carto.net/window-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-in-clip-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-in-mask-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-child-clipped-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-clipped-no-content-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-css-transform-1-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-css-transform-2-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-evenodd-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-evenodd-nonzero-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-nonzero-evenodd-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-nonzero-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-pixelation-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-recursive-call-by-child-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-recursive-call-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-text-and-shape-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-text-and-stroke-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-text-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-transform-1-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-tspan-and-stroke-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-use-as-child2-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-use-as-child3-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-use-as-child4-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-use-as-child5-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-with-container-expected.txt: Added.
+        * platform/efl/svg/clip-path/clip-path-with-different-unittypes-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-with-different-unittypes2-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-with-invisibile-child-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clip-path-with-text-clipped-expected.txt: \
Added. +        * platform/efl/svg/clip-path/clipper-placement-issue-expected.txt: \
Added. +        * platform/efl/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.txt: \
Added. +        * platform/efl/svg/clip-path/deep-nested-clip-in-mask-expected.txt: \
Added. +        * platform/efl/svg/clip-path/deep-nested-clip-in-mask-panning-expected.txt: \
Added. +        * platform/efl/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.txt: \
Added. +        * platform/efl/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.txt: \
Added. +        * platform/efl/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.txt: \
Added. +        * platform/efl/svg/css/arrow-with-shadow-expected.txt: Added.
+        * platform/efl/svg/css/clippath-with-shadow-expected.txt: Added.
+
+2012-02-12  David Barr  &lt;davidbarr@chromium.org&gt;
+
+        CSS3 currentColor on outline-color gets treated as inherit
+        https://bugs.webkit.org/show_bug.cgi?id=73180
+
+        Reviewed by Antti Koivisto.
+
+        Adapted fast/css/background-currentcolor.html dumpRenderTree test
+        for outline-color.
+
+        * fast/css/outline-currentcolor-expected.txt: Added.
+        * fast/css/outline-currentcolor.html: Added.
+
+2012-02-12  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        INPUT shouldn't create ShadowRoot dynamically.
+        https://bugs.webkit.org/show_bug.cgi?id=77930
+
+        Reviewed by Dimitri Glazkov.
+
+        Ensures cheaging input type does not cause shadow root recreation.
+
+        * fast/dom/shadow/input-shadow-nochange.html: Added.
+        * fast/dom/shadow/input-shadow-nochange-expected.txt: Added.
+
+2012-02-12  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        SVGTRefElement shouldn't create a shadow root dynamically.
+        https://bugs.webkit.org/show_bug.cgi?id=77938
+
+        Reviewed by Hajime Morita.
+
+        Checks a shadow root exists of tref element in cases xlink:href is set and \
is not set. +
+        * svg/custom/tref-shadowdom-expected.txt: Added.
+        * svg/custom/tref-shadowdom.html: Added.
+
+2012-02-12  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Regression (r104528): Crash when moving nodes across documents.
+        https://bugs.webkit.org/show_bug.cgi?id=78432
+
+        Reviewed by Hajime Morita.
+
+        * fast/dom/node-move-to-new-document-crash-main-expected.txt: Added.
+        * fast/dom/node-move-to-new-document-crash-main.html: Added.
+        * fast/dom/resources/node-move-to-new-document-crash.svg: Added.
+
+2012-02-12  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        If @font-face does not provide an explicit italic/bold variant, regular is \
used. +        https://bugs.webkit.org/show_bug.cgi?id=34147
+
+        Reviewed by Dan Bernstein.
+
+        Added two tests to make sure font matching algorithm matches the current \
draft of CSS Fonts Module Level 3, and removed a test which uses obsoleted 'all' \
value for font-weight and font-style. +
+        * fast/css/font-face-descriptor-multiple-values-parsing-expected.txt: \
Removed. +        * fast/css/font-face-descriptor-multiple-values-parsing.html: \
Removed. +        * fast/css/font-face-synthetic-bold-italic.html: Added.
+        * fast/css/font-face-weight-matching.html: Added.
+        * platform/chromium/test_expectations.txt: Needs rebaselines.
+
+2012-02-12  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed weekend gardening. Update expected files.
+
+        * platform/qt/fast/dom/Window/window-properties-expected.txt:
+        * platform/qt/fast/dom/prototype-inheritance-2-expected.txt:
+
+2012-02-12  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, rebaseline after r107483 and r107498.
+
+        * fast/dom/wrapper-classes-expected.txt:
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+
+2012-02-12  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, skip mutation tests on GTK again after r107504.
+
+        * platform/gtk/Skipped:
+
+2012-02-10  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Move special __proto__ property to Object.prototype
+        https://bugs.webkit.org/show_bug.cgi?id=78409
+
+        Reviewed by Oliver Hunt.
+
+        Re-implement this as a regular accessor property.  This has three key \
benefits: +        1) It makes it possible for objects to be given properties named \
__proto__. +        2) Object.prototype.__proto__ can be deleted, preventing object \
prototypes from being changed. +        3) This largely removes the magic used the \
implement __proto__, it can just be made a regular accessor property. +
+        * fast/js/Object-getOwnPropertyNames-expected.txt:
+        * fast/js/cyclic-prototypes-expected.txt:
+        * fast/js/parser-syntax-check-expected.txt:
+        * fast/js/preventExtensions-expected.txt:
+        * fast/js/prototypes-expected.txt:
+            - Update results
+        * fast/js/script-tests/Object-getOwnPropertyNames.js:
+            - __proto__ is now a property of Object Prototype.
+        * fast/js/script-tests/cyclic-prototypes.js:
+            - setting an object's prototype to null removes __proto__ setter, future \
usage won't set prototype. +        * fast/js/script-tests/parser-syntax-check.js:
+            - Allow functions named __proto__
+        * fast/js/script-tests/preventExtensions.js:
+            - Setting __proto__ should not throw.
+        * fast/js/script-tests/prototypes.js:
+            - Objects may contained own properties named __proto__, add new test \
cases. +
+2012-02-11  Filip Pizlo  &lt;fpizlo@apple.com&gt;
+
+        DFG CFA assumes that a WeakJSConstant's structure is known
+        https://bugs.webkit.org/show_bug.cgi?id=78428
+        &lt;rdar://problem/10849492&gt; &lt;rdar://problem/10849621&gt;
+
+        Rubber stamped by Gavin Barraclough.
+
+        * fast/js/dfg-put-by-id-prototype-check-expected.txt: Added.
+        * fast/js/dfg-put-by-id-prototype-check.html: Added.
+        * fast/js/script-tests/dfg-put-by-id-prototype-check.js: Added.
+        (foo):
+        (Foo):
+
+2012-02-11  Filip Pizlo  &lt;fpizlo@apple.com&gt;
+
+        [DFG] Misuse of WeakJSConstants in silentFillGPR code.
+        https://bugs.webkit.org/show_bug.cgi?id=78423
+        &lt;rdar://problem/10849353&gt; &lt;rdar://problem/10804043&gt;
+
+        Rubber stamped by Sam Weinig.
+
+        * fast/js/dfg-weak-js-constant-silent-fill.html: Added.
+        * fast/js/dfg-weak-js-constant-silent-fill-expected.txt: Added.
+        * fast/js/script-tests/dfg-weak-js-constant-silent-fill.js: Added.
+
+2012-02-11   Arko Saha  &lt;arko@motorola.com&gt;
+
+        HTML 5: Support click() method on HTMLElement.
+        https://bugs.webkit.org/show_bug.cgi?id=27880
+
+        Reviewed by Timothy Hatcher.
+
+        * fast/dom/click-method-on-html-element-expected.txt: Added.
+        * fast/dom/click-method-on-html-element.html: Added.
+
+2012-02-11  Andreas Kling  &lt;awesomekling@apple.com&gt;
+
+        Node.isEqualNode() compares attributes twice.
+        &lt;http://webkit.org/b/78414&gt;
+
+        Reviewed by Anders Carlsson.
+
+        * fast/dom/isEqualNode-after-removeAttribute-expected.txt: Added.
+        * fast/dom/isEqualNode-after-removeAttribute.html: Added.
+
+2012-02-11  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed weekend gardening.
+
+        * platform/qt/Skipped: Skip tests because ENABLE(MUTATION_OBSERVERS) is \
disabled. +
+2012-02-10  Edward O'Connor  &lt;eoconnor@apple.com&gt;
+
+        Change values for WEBKIT_KEYFRAMES_RULE, WEBKIT_KEYFRAME_RULE
+        https://bugs.webkit.org/show_bug.cgi?id=71293
+
+        Reviewed by Chris Marrin.
+
+        * animations/animation-css-rule-types-expected.txt:
+        * animations/script-tests/animation-css-rule-types.js: Update
+        expected WEBKIT_KEYFRAMES_RULE and WEBKIT_KEYFRAME_RULE values.
+
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed gardening.
+        svg/text/non-bmp-positioning-lists.svg is missing glyphs. The other
+        tests are additional fallout from r107417.
+
+        * platform/chromium-mac-leopard/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/carto.net/window-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/foreignObject-crash-on-hover-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/hit-test-unclosed-subpaths-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/js-update-stop-linked-gradient-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/mask-invalidation-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/relative-sized-content-with-resources-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/text-repaint-including-stroke-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/use-clipped-hit-expected.png:
+        * platform/chromium-mac-leopard/svg/custom/use-detach-expected.png:
+        * platform/chromium-mac-leopard/svg/filters/filter-refresh-expected.txt:
+        * platform/chromium-mac-leopard/svg/hixie/perf/004-expected.png: Removed.
+        * platform/chromium-mac-snowleopard/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/carto.net/window-expected.png:
+        * platform/chromium-mac-snowleopard/svg/carto.net/window-expected.txt: \
Removed. +        * platform/chromium-mac-snowleopard/svg/custom/foreignObject-crash-on-hover-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/use-detach-expected.txt: \
Removed. +        * platform/chromium-mac-snowleopard/svg/filters/animate-fill-expected.txt: \
Removed. +        * platform/chromium-mac-snowleopard/svg/filters/filter-refresh-expected.txt:
 +        * platform/chromium-mac-snowleopard/svg/hixie/perf/004-expected.png:
+        * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-background-images-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        CSS3 calc: convert font-size-fractional test to use pre/post js
+        https://bugs.webkit.org/show_bug.cgi?id=78347
+
+        Reviewed by Ojan Vafai.
+
+        * css3/calc/font-size-fractional-expected.txt:
+        * css3/calc/font-size-fractional.html:
+
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, remove a linux gpu result that is not needed after \
r107448. +
+        * platform/chromium-gpu-linux/media/video-empty-source-expected.png: \
Removed. +
+2012-02-10  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        These SVG tests all appear to pass (many due to my updating their
+        baselines last night).
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Enable MUTATION_OBSERVERS by default on all platforms
+        https://bugs.webkit.org/show_bug.cgi?id=78196
+
+        Reviewed by Ojan Vafai.
+
+        * platform/efl/Skipped: Stop skipping the tests except for those known to \
fail. +        * platform/gtk/Skipped: ditto.
+        * platform/mac/Skipped: ditto.
+        * platform/qt/Skipped: ditto.
+        * platform/win/Skipped: ditto.
+        * platform/wincairo/Skipped: ditto.
+
+2012-02-10  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        Add keyframes to LayoutTests/media/content/test.ogv to hasten test \
completion &amp; avoid timeouts. +        \
https://bugs.webkit.org/show_bug.cgi?id=78058 +
+        Reviewed by Eric Carlson.
+        File was created with ffmpeg2theora v0.24, command-line:
+        ffmpeg2theora --no-upscaling --no-skeleton -e 6.02 -K 21 test.mp4 -o \
test.ogv +        The important bit was the addition of &quot;-K 21&quot; to force \
keyframe creation. +        The other flags are important to minimize breakage of \
tests that hardcode  +        expectations like &quot;the first 100k will contain the \
metadata&quot; etc. +
+        Before this, seeking to 5.6s would use the (only) keyframe at 2.4s and
+        have to decode all the way forward from there, which would be sometimes
+        timeout (presumably on overloaded bots).
+
+        * media/content/test.ogv:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Adam Langley  &lt;agl@chromium.org&gt;
+
+        Don't lowercase ping URLs.
+
+        Previously, ping URLs would be lowercased when splitting them apart.
+        URLs are not, however, case-insensitive.
+
+        https://bugs.webkit.org/show_bug.cgi?id=78371
+
+        Reviewed by Tony Chang.
+
+        * http/tests/navigation/image-load-in-unload-handler.html: update to new URL
+        * http/tests/navigation/ping-cookie.html:
+        * http/tests/navigation/ping-cross-origin.html:
+        * http/tests/navigation/ping-same-origin.html:
+        * http/tests/navigation/resources/save-Ping.php: Renamed from \
LayoutTests/http/tests/navigation/resources/save-ping.php. +
+2012-02-10  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        media/video-empty-source.html needs a rebaseline for chromium
+        https://bugs.webkit.org/show_bug.cgi?id=78233
+
+        Unreviewed rebaselining.
+
+        * platform/chromium-linux-x86/media/video-empty-source-expected.txt: Copied \
from LayoutTests/platform/chromium-win/media/video-empty-source-expected.txt. +       \
* platform/chromium-linux/media/video-empty-source-expected.png: +        * \
platform/chromium-linux/media/video-empty-source-expected.txt: Copied from \
LayoutTests/platform/chromium-win/media/video-empty-source-expected.txt. +        * \
platform/chromium-mac-leopard/media/video-empty-source-expected.png: +        * \
platform/chromium-mac-leopard/media/video-empty-source-expected.txt: Added. +        \
* platform/chromium-mac-snowleopard/media/video-empty-source-expected.png: +        * \
platform/chromium-mac-snowleopard/media/video-empty-source-expected.txt: Added. +     \
* platform/chromium-win-vista/media/video-empty-source-expected.txt: Copied from \
LayoutTests/platform/chromium-win/media/video-empty-source-expected.txt. +        * \
platform/chromium-win-xp/media/video-empty-source-expected.txt: Copied from \
LayoutTests/platform/chromium-win/media/video-empty-source-expected.txt. +        * \
platform/chromium-win/media/video-empty-source-expected.png: +        * \
platform/chromium-win/media/video-empty-source-expected.txt: +        * \
platform/chromium/test_expectations.txt: +
+2012-02-10  Ojan Vafai  &lt;ojan@chromium.org&gt;
+
+        flex-pack:center and flex-item-align:center should do true centering
+        https://bugs.webkit.org/show_bug.cgi?id=77385
+
+        Reviewed by Tony Chang.
+
+        * css3/flexbox/true-centering-expected.txt: Added.
+        * css3/flexbox/true-centering.html: Added.
+
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, adding Leopard pixel baselines for
+        fast/forms/select-overflow-scroll* tests.  This was missed in r107084.
+
+        * platform/chromium-mac-leopard/fast/forms/select-overflow-scroll-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/forms/select-overflow-scroll-inherited-expected.png: \
Added. +
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, fix up some baselines that were landed in r107417.
+        Some bad results were checked in.
+
+        * platform/chromium-linux-x86/svg/filters/filter-refresh-expected.txt:
+        * platform/chromium-linux/svg/filters/filter-refresh-expected.txt:
+        * platform/chromium-linux/svg/text/append-text-node-to-tspan-expected.png:
+        * platform/chromium-mac-snowleopard/svg/filters/animate-fill-expected.txt: \
Renamed from LayoutTests/platform/chromium/svg/filters/animate-fill-expected.txt. +   \
* platform/chromium-win-vista/svg/filters/filter-refresh-expected.txt: +        * \
platform/chromium-win-xp/svg/filters/filter-refresh-expected.txt: +        * \
platform/chromium-win-xp/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png: \
Removed. +        * platform/chromium-win/svg/dom/SVGRectElement/rect-modify-rx-expected.png:
 +        * platform/chromium-win/svg/filters/filter-refresh-expected.txt:
+        * platform/chromium-win/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png:
 +
+2012-02-10  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        Remove platform/win/test_expectations.txt
+        https://bugs.webkit.org/show_bug.cgi?id=78382
+
+        Reviewed by Adam Barth.
+
+        This files is unused, since the Apple win port does not use \
new-run-webkit-tests, and causes unnecessary +        confusion.
+
+        * platform/win/test_expectations.txt:
+
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, update SnowLeopard results for
+        compositing/geometry/fixed-position-composited.html. Minor differences
+        in fonts between Leopard and SL.
+
+        * platform/chromium-mac-snowleopard/compositing/geometry/fixed-position-composited-page-scale-down-expected.png: \
Renamed from LayoutTests/platform/chromium/compositing/geometry/fixed-position-composited-page-scale-down-expected.png.
 +        * platform/mac/compositing/geometry/fixed-position-composited-page-scale-down-expected.txt: \
Removed. +
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed, mark compositing/rubberbanding tests as failing.
+        There's too much flipping in the tests for me to narrow it down to a \
revision. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        CSS3 calc: update font-size test to use pre/post js
+        https://bugs.webkit.org/show_bug.cgi?id=78325
+
+        Reviewed by Ojan Vafai.
+
+        * css3/calc/font-size-expected.txt:
+        * css3/calc/font-size.html:
+
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed: The Leopard results were missed in r107140.
+        The getComputedStyle change is due to r107289.
+
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug23151-expected.png: \
Added. +        * platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: \
Added. +
+2012-02-09  Chris Marrin  &lt;cmarrin@apple.com&gt;
+
+        Implement hardware animation of CSS filters
+        https://bugs.webkit.org/show_bug.cgi?id=78155
+
+        New tests for hardware animated filters, cribbed from software animation \
tests. +        Also added a -multi test, which uses 3 keyframes for each filter. \
Hardware animations +        use the same logic for 2 keyframe animations and \
transitions, so this exercises the +        other logic path.
+
+        Reviewed by Dean Jackson.
+
+        * css3/filters/filter-animation-from-none-hw-expected.txt: Added.
+        * css3/filters/filter-animation-from-none-hw.html: Added.
+        * css3/filters/filter-animation-from-none-multi-expected.txt: Added.
+        * css3/filters/filter-animation-from-none-multi-hw-expected.txt: Added.
+        * css3/filters/filter-animation-from-none-multi-hw.html: Added.
+        * css3/filters/filter-animation-from-none-multi.html: Added.
+        * css3/filters/filter-animation-hw-expected.txt: Added.
+        * css3/filters/filter-animation-hw.html: Added.
+        * css3/filters/filter-animation-multi-expected.txt: Added.
+        * css3/filters/filter-animation-multi-hw-expected.txt: Added.
+        * css3/filters/filter-animation-multi-hw.html: Added.
+        * css3/filters/filter-animation-multi.html: Added.
+
+2012-02-10  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        CSS3 calc: convert font test to use pre/post js
+        https://bugs.webkit.org/show_bug.cgi?id=78321
+
+        Reviewed by Ojan Vafai.
+
+        * css3/calc/font-expected.txt:
+        * css3/calc/font.html:
+
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed: Add baselines on Mac for 2 tests that got
+        missed in the jpeg change (r107389). I verified that the only diffs
+        were in the jpeg and very minor.
+
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug101674-expected.png:
+        * platform/chromium-mac-leopard/tables/mozilla/bugs/bug86708-expected.png:
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug101674-expected.png:
 +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug86708-expected.png:
 +
+2012-02-10  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Unreviewed: Give fast/js/dfg-int8array.html more time to run in \
debug. +
+        The flakiness dashboard show it timing out regularly on Mac and occasionally \
on Windows. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Massive SVG rebaselining on Chromium after bug 77736 and al.
+
+        Output trimmed.
+
+2012-02-10  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium/test_expectations.txt:
+        The test is not finishing on windows so now we are waiting 30 seconds
+        before killing it. Replacing the SLOW keyword with TIMEOUT as it did
+        not help.
+
+2012-02-10  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        win test_expectations and Skipped have duplicates
+        https://bugs.webkit.org/show_bug.cgi?id=78260
+
+        Reviewed by Anders Carlsson.
+
+        * platform/win/test_expectations.txt: Remove duplicated entries
+        from this file. They were wrongly added to Skipped too and looking
+        at the comment in r103876, it's better to keep the Skipped entries.
+
+2012-02-10  Michael Saboff  &lt;msaboff@apple.com&gt;
+
+        Yarr assert with regexp where alternative in *-quantified group matches \
empty +        https://bugs.webkit.org/show_bug.cgi?id=67752        
+
+        Reviewed by Gavin Barraclough.
+
+        Added new tests for alternatives that match without consuming 
+        any input characters.
+
+        * fast/js/regexp-zero-length-alternatives-expected.txt: Added.
+        * fast/js/regexp-zero-length-alternatives.html: Added.
+        * fast/js/script-tests/regexp-zero-length-alternatives.js: Added.
+
+2012-02-10  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: implement undo for setOuterHTML via undo-ing nested primitive \
commands. +        https://bugs.webkit.org/show_bug.cgi?id=78346
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/elements/set-outer-html-2-expected.txt:
+        * inspector/elements/set-outer-html-test.js:
+        (initialize_SetOuterHTMLTest.InspectorTest.patchOuterHTML):
+        (initialize_SetOuterHTMLTest.InspectorTest.patchOuterHTMLUseUndo):
+        (initialize_SetOuterHTMLTest.InspectorTest.setOuterHTMLUseUndo.bringBack):
+        (initialize_SetOuterHTMLTest.InspectorTest.setOuterHTMLUseUndo):
+        (initialize_SetOuterHTMLTest.InspectorTest.innerSetOuterHTML):
+        (initialize_SetOuterHTMLTest.InspectorTest._dumpOuterHTML.dumpIdentity):
+        (initialize_SetOuterHTMLTest.InspectorTest._dumpOuterHTML.callback):
+        (initialize_SetOuterHTMLTest.InspectorTest._dumpOuterHTML):
+        (initialize_SetOuterHTMLTest):
+        * inspector/elements/undo-dom-edits-expected.txt:
+        * inspector/elements/undo-set-outer-html-2-expected.txt: Copied from \
LayoutTests/inspector/elements/set-outer-html-2-expected.txt. +        * \
inspector/elements/undo-set-outer-html-2.html: Added. +        * \
inspector/elements/undo-set-outer-html-expected.txt: Copied from \
LayoutTests/inspector/elements/set-outer-html-2-expected.txt. +        * \
inspector/elements/undo-set-outer-html.html: Added. +
+2012-02-10  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt][WK2] Refactor on Qt5 Layout tests' structure
+        https://bugs.webkit.org/show_bug.cgi?id=77450
+
+        * platform/qt-4.8/Skipped: Add after r107397, because it was missing \
accidentally. +
+2012-02-10  Jesus Sanchez-Palencia  &lt;jesus.palencia@openbossa.org&gt;
+
+        [Qt][WK2] Refactor on Qt5 Layout tests' structure
+        https://bugs.webkit.org/show_bug.cgi?id=77450
+
+        Reviewed by Csaba Osztrogonác.
+
+        The folders qt-wk2 and qt-wk1 have been renamed to qt-5.0-wk2 and \
qt-5.0-wk1, respectively, +        and the skipped list from qt-wk1 has been copied \
into qt-4.8/Skipped. +
+        * platform/qt-4.8/Skipped: Copy entries from platform/qt-wk1.
+        * platform/qt-5.0-wk1/: Renamed from platform/qt-wk1.
+        * platform/qt-5.0-wk2/: Renamed from platform/qt-wk1.
+        * platform/qt-wk1/: Removed.
+        * platform/qt-wk2/: Removed.
+
+2012-02-10  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK test_expectations update.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/test_expectations.txt:
+
+2012-02-10  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline and skipping another svg test
+        presenting floating-point issues.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/editing/execCommand/insertImage-expected.txt:
+        * platform/gtk/security/block-test-expected.txt:
+
+2012-02-10  Noel Gordon  &lt;noel.gordon@gmail.com&gt;
+
+        [chromium] Increase JPEG decoding performance some more
+        https://bugs.webkit.org/show_bug.cgi?id=78323
+
+        Reviewed by Adam Barth.
+
+        * platform/chromium/test_expectations.txt: tests containing jpeg images that \
will require +        rebaselines, mostly together in a group, but some other \
expectations unattended to at the +        current time, spread changes throughout \
the file.  The following lists changed tests for +        chrome mac and win:
+
+        compositing/geometry/horizontal-scroll-composited.html
+        compositing/geometry/vertical-scroll-composited.html
+        compositing/overflow/overflow-scaled-descendant-overlapping.html
+        fast/backgrounds/size/backgroundSize17.html
+        fast/backgrounds/size/backgroundSize18.html
+        fast/backgrounds/size/backgroundSize19.html
+        fast/backgrounds/size/backgroundSize20.html
+        fast/backgrounds/size/backgroundSize21.html
+        fast/backgrounds/size/backgroundSize22.html
+        fast/block/float/014.html
+        fast/images/color-jpeg-with-color-profile.html
+        fast/images/gray-scale-jpeg-with-color-profile.html
+        fast/images/image-css3-content-data.html
+        fast/images/ycbcr-with-cmyk-color-profile.html
+        fast/repaint/backgroundSizeRepaint.html
+        fast/repaint/block-layout-inline-children-replaced.html
+        fast/repaint/clipped-relative.html
+        fast/repaint/selected-replaced.html
+        fast/replaced/absolute-image-sizing.html
+        fast/replaced/image-onload.html
+        fast/replaced/image-sizing.html
+        fast/replaced/image-tag.html
+        fast/replaced/width100percent-image.html
+        fast/writing-mode/background-horizontal-bt.html
+        fast/writing-mode/background-vertical-lr.html
+        fast/writing-mode/background-vertical-rl.html
+        platform/chromium/compositing/img-layer-grow.html
+        svg/W3C-SVG-1.1/animate-elem-30-t.svg
+        svg/W3C-SVG-1.1/animate-elem-36-t.svg
+        svg/W3C-SVG-1.1/animate-elem-39-t.svg
+        svg/W3C-SVG-1.1/animate-elem-40-t.svg
+        svg/W3C-SVG-1.1/coords-viewattr-02-b.svg
+        svg/W3C-SVG-1.1/filters-image-01-b.svg
+        svg/W3C-SVG-1.1/struct-image-01-t.svg
+        svg/W3C-SVG-1.1/struct-image-02-b.svg
+        svg/W3C-SVG-1.1/struct-image-04-t.svg
+        svg/carto.net/scrollbar.svg
+        svg/carto.net/selectionlist.svg
+        svg/custom/image-rescale-clip.html
+        svg/custom/image-rescale-scroll.html
+        svg/custom/image-rescale.svg
+        svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr.html
+        svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop.html
+        tables/mozilla/bugs/bug101674.html
+        tables/mozilla/bugs/bug10565.html
+        tables/mozilla/bugs/bug11026.html
+        tables/mozilla/bugs/bug1188.html
+        tables/mozilla/bugs/bug120107.html
+        tables/mozilla/bugs/bug1271.html
+        tables/mozilla/bugs/bug12908-1.html
+        tables/mozilla/bugs/bug12908-2.html
+        tables/mozilla/bugs/bug1296.html
+        tables/mozilla/bugs/bug13169.html
+        tables/mozilla/bugs/bug1430.html
+        tables/mozilla/bugs/bug15544.html
+        tables/mozilla/bugs/bug17138.html
+        tables/mozilla/bugs/bug196870.html
+        tables/mozilla/bugs/bug29314.html
+        tables/mozilla/bugs/bug2981-2.html
+        tables/mozilla/bugs/bug4093.html
+        tables/mozilla/bugs/bug4284.html
+        tables/mozilla/bugs/bug4427.html
+        tables/mozilla/bugs/bug50695-2.html
+        tables/mozilla/bugs/bug56563.html
+        tables/mozilla/bugs/bug5797.html
+        tables/mozilla/bugs/bug625.html
+        tables/mozilla/bugs/bug6404.html
+        tables/mozilla/bugs/bug82946-2.html
+        tables/mozilla/bugs/bug86708.html
+        tables/mozilla/core/bloomberg.html
+        tables/mozilla/core/col_widths_auto_autoFix.html
+        tables/mozilla/core/misc.html
+        tables/mozilla/core/row_span.html
+        tables/mozilla/marvin/tbody_valign_baseline.html
+        tables/mozilla/marvin/tbody_valign_bottom.html
+        tables/mozilla/marvin/tbody_valign_middle.html
+        tables/mozilla/marvin/tbody_valign_top.html
+        tables/mozilla/marvin/td_valign_baseline.html
+        tables/mozilla/marvin/td_valign_bottom.html
+        tables/mozilla/marvin/td_valign_middle.html
+        tables/mozilla/marvin/td_valign_top.html
+        tables/mozilla/marvin/tfoot_valign_baseline.html
+        tables/mozilla/marvin/tfoot_valign_bottom.html
+        tables/mozilla/marvin/tfoot_valign_middle.html
+        tables/mozilla/marvin/tfoot_valign_top.html
+        tables/mozilla/marvin/th_valign_baseline.html
+        tables/mozilla/marvin/th_valign_bottom.html
+        tables/mozilla/marvin/th_valign_middle.html
+        tables/mozilla/marvin/th_valign_top.html
+        tables/mozilla/marvin/thead_valign_baseline.html
+        tables/mozilla/marvin/thead_valign_bottom.html
+        tables/mozilla/marvin/thead_valign_middle.html
+        tables/mozilla/marvin/thead_valign_top.html
+        tables/mozilla/marvin/tr_valign_baseline.html
+        tables/mozilla/marvin/tr_valign_bottom.html
+        tables/mozilla/marvin/tr_valign_middle.html
+        tables/mozilla/marvin/tr_valign_top.html
+        tables/mozilla/other/cell_widths.html
+        tables/mozilla_expected_failures/bugs/bug6933.html
+        tables/mozilla_expected_failures/bugs/bug85016.html
+        tables/mozilla_expected_failures/other/test4.html
+
+2012-02-10  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, rebaseline svg/carto.net/selectionlist.svg.
+
+        * platform/chromium-mac-leopard/svg/carto.net/selectionlist-expected.png:
+        * platform/chromium-mac-snowleopard/svg/carto.net/selectionlist-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/carto.net/selectionlist-expected.txt: \
Removed. +        * platform/chromium-win-xp/svg/carto.net/selectionlist-expected.png: \
Removed. +        * platform/chromium-win-xp/svg/carto.net/selectionlist-expected.txt: \
Removed. +
+2012-02-10  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, rebaseline svg/carto.net/scrollbar-expected.png on chromium mac.
+
+        * platform/chromium-mac-leopard/svg/carto.net/scrollbar-expected.png:
+        * platform/chromium-mac-leopard/svg/carto.net/scrollbar-expected.txt:
+        * platform/chromium-mac-snowleopard/svg/carto.net/scrollbar-expected.png:
+        * platform/chromium-mac-snowleopard/svg/carto.net/scrollbar-expected.txt: \
Copied from LayoutTests/platform/chromium-mac-leopard/svg/carto.net/scrollbar-expected.txt.
 +        * platform/mac/svg/carto.net/scrollbar-expected.png: Removed.
+
+2012-02-10  Andrey Kosyakov  &lt;caseq@chromium.org&gt;
+
+        Unreviewed test fix following r107373.
+        https://bugs.webkit.org/show_bug.cgi?id=78254
+
+        This also resolves https://bugs.webkit.org/show_bug.cgi?id=77416.
+
+        * inspector/timeline/timeline-receive-response-event.html:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  MORITA Hajime  &lt;morrita@google.com&gt;
+
+        Unreviewed attempt to fix the test failure.
+
+        * editing/spelling/spelling-marker-description.html:
+
+2012-02-10  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, fix error in test_expectations.txt.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        [Qt] REGRESSION(r107242): It made 5 inspector tests crash in debug mode
+        https://bugs.webkit.org/show_bug.cgi?id=78330
+
+        Reviewed by Yury Semikhatsky.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        * platform/chromium-mac/storage/domstorage/quota-expected.txt: Removed.
+        * platform/chromium-win/storage/domstorage/quota-expected.txt: Removed.
+            - These baselines are wrong.  Removing them shows that we pass this
+              test now.
+        * platform/chromium/test_expectations.txt:
+            - According to the flakiness dashboard, these tests always pass now.
+
+2012-02-10  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening. Skip new asserting tests to paint the debug bot \
green. +
+        * platform/qt/Skipped:
+
+2012-02-10  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Update a large number of baselines for svg/custom.  These baselines all
+        appear to be correct (or at least no less correct than the previous
+        baselines).  There are a number of svg/custom tests that appear to be
+        actually failing, which I haven't rebaselined.
+
+        This patch does not update the test_expectations.txt file.  Once this
+        patch has cycled through the bots, I'll clean up the expectations file
+        as appropriate.
+
+        * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-linux-x86/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/SVGPoint-matrixTransform-expected.png:
 +        * platform/chromium-linux/svg/custom/absolute-root-position-masking-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/absolute-sized-content-with-resources-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/getTransformToElement-expected.png:
 +        * platform/chromium-linux/svg/custom/gradient-stroke-width-expected.png:
+        * platform/chromium-linux/svg/custom/js-update-style-expected.txt: Removed.
+        * platform/chromium-linux/svg/custom/marker-changes-expected.png: Added.
+        * platform/chromium-linux/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/pattern-with-transformation-expected.png:
 +        * platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.png:
+        * platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.png:
 +        * platform/chromium-linux/svg/custom/svg-fonts-without-missing-glyph-expected.png:
 +        * platform/chromium-linux/svg/custom/text-ctm-expected.png:
+        * platform/chromium-linux/svg/custom/text-hit-test-expected.png:
+        * platform/chromium-linux/svg/custom/use-crash-in-non-wellformed-document-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/use-font-face-crash-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/use-property-changes-through-svg-dom-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/absolute-sized-content-with-resources-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/createImageElement2-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/feComponentTransfer-Discrete-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/feComponentTransfer-Gamma-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/feComponentTransfer-Linear-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/feComponentTransfer-Table-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/getTransformToElement-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/path-bad-data-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/path-bad-data-expected.txt: \
Added. +        * platform/chromium-mac-leopard/svg/custom/pattern-with-transformation-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/svg-fonts-fallback-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/svg-fonts-in-html-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/use-font-face-crash-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/use-font-face-crash-expected.txt: \
Added. +        * platform/chromium-mac-leopard/svg/custom/use-invalid-pattern-expected.txt: \
Added. +        * platform/chromium-mac-leopard/svg/custom/use-invalid-style-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/absolute-root-position-masking-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/absolute-sized-content-with-resources-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/createImageElement2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/feComponentTransfer-Discrete-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/feComponentTransfer-Gamma-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/feComponentTransfer-Linear-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/feComponentTransfer-Table-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/getTransformToElement-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/gradient-stroke-width-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/grayscale-gradient-mask-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/grayscale-gradient-mask-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/nested-pattern-boundingBoxModeContent-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/path-bad-data-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/pattern-with-transformation-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/pointer-events-image-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/pointer-events-text-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/repaint-on-image-bounds-change-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/svg-fonts-fallback-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/svg-fonts-with-no-element-reference-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/svg-fonts-without-missing-glyph-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/use-font-face-crash-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/use-forward-refs-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/use-on-g-containing-foreignObject-and-image-expected.png: \
Added. +        * platform/chromium-mac/svg/custom/gradient-stroke-width-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/pattern-with-transformation-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/pointer-events-image-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/pointer-events-text-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/svg-fonts-fallback-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/svg-fonts-without-missing-glyph-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/use-font-face-crash-expected.png: \
Removed. +        * platform/chromium-mac/svg/custom/use-forward-refs-expected.png: \
Removed. +        * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-win-vista/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-win-xp/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-win-xp/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: \
Added. +        * platform/chromium-win/svg/custom/SVGPoint-matrixTransform-expected.png:
 +        * platform/chromium-win/svg/custom/SVGPoint-matrixTransform-expected.txt:
+        * platform/chromium-win/svg/custom/absolute-root-position-masking-expected.png: \
Added. +        * platform/chromium-win/svg/custom/absolute-sized-content-with-resources-expected.png: \
Added. +        * platform/chromium-win/svg/custom/absolute-sized-content-with-resources-expected.txt:
 +        * platform/chromium-win/svg/custom/feComponentTransfer-Discrete-expected.png:
 +        * platform/chromium-win/svg/custom/feComponentTransfer-Gamma-expected.png:
+        * platform/chromium-win/svg/custom/feComponentTransfer-Linear-expected.png:
+        * platform/chromium-win/svg/custom/feComponentTransfer-Table-expected.png:
+        * platform/chromium-win/svg/custom/getTransformToElement-expected.png:
+        * platform/chromium-win/svg/custom/getTransformToElement-expected.txt:
+        * platform/chromium-win/svg/custom/gradient-stroke-width-expected.png:
+        * platform/chromium-win/svg/custom/grayscale-gradient-mask-2-expected.png: \
Added. +        * platform/chromium-win/svg/custom/grayscale-gradient-mask-expected.png:
 +        * platform/chromium-win/svg/custom/linking-uri-01-b-expected.png:
+        * platform/chromium-win/svg/custom/marker-changes-expected.png: Added.
+        * platform/chromium-win/svg/custom/nested-pattern-boundingBoxModeContent-expected.png:
 +        * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png:
 +        * platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt:
 +        * platform/chromium-win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png:
 +        * platform/chromium-win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt:
 +        * platform/chromium-win/svg/custom/pattern-with-transformation-expected.png:
 +        * platform/chromium-win/svg/custom/pointer-events-image-css-transform-expected.txt:
 +        * platform/chromium-win/svg/custom/pointer-events-image-expected.txt:
+        * platform/chromium-win/svg/custom/pointer-events-text-expected.txt:
+        * platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
+        * platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.png:
 +        * platform/chromium-win/svg/custom/text-ctm-expected.png:
+        * platform/chromium-win/svg/custom/text-ctm-expected.txt:
+        * platform/chromium-win/svg/custom/text-hit-test-expected.png:
+        * platform/chromium-win/svg/custom/text-hit-test-expected.txt:
+        * platform/chromium-win/svg/custom/use-crash-in-non-wellformed-document-expected.txt: \
Removed. +        * platform/chromium-win/svg/custom/use-font-face-crash-expected.png: \
Added. +        * platform/chromium-win/svg/custom/use-font-face-crash-expected.txt: \
Added. +        * platform/chromium-win/svg/custom/use-forward-refs-expected.png:
+        * platform/chromium/svg/custom/js-update-style-expected.txt: Removed.
+        * platform/gtk/svg/custom/absolute-root-position-masking-expected.txt: \
Removed. +        * platform/gtk/svg/custom/gradient-stroke-width-expected.txt: \
Removed. +        * platform/gtk/svg/custom/grayscale-gradient-mask-2-expected.txt: \
Removed. +        * platform/gtk/svg/custom/repaint-on-image-bounds-change-expected.txt: \
Removed. +        * platform/gtk/svg/custom/svg-fonts-with-no-element-reference-expected.txt: \
Removed. +        * platform/gtk/svg/custom/use-forward-refs-expected.txt: Removed.
+        * platform/gtk/svg/custom/use-invalid-style-expected.txt: Removed.
+        * platform/gtk/svg/custom/use-on-g-containing-foreignObject-and-image-expected.txt: \
Removed. +        * platform/mac/svg/custom/absolute-root-position-masking-expected.png: \
Removed. +        * platform/mac/svg/custom/absolute-root-position-masking-expected.txt: \
Removed. +        * platform/mac/svg/custom/gradient-stroke-width-expected.txt: \
Removed. +        * platform/mac/svg/custom/grayscale-gradient-mask-2-expected.txt: \
Removed. +        * platform/mac/svg/custom/repaint-on-image-bounds-change-expected.txt: \
Removed. +        * platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt: \
Removed. +        * platform/mac/svg/custom/use-forward-refs-expected.txt: Removed.
+        * platform/mac/svg/custom/use-invalid-style-expected.txt: Removed.
+        * platform/mac/svg/custom/use-on-g-containing-foreignObject-and-image-expected.txt: \
Removed. +        * platform/qt/svg/custom/absolute-root-position-masking-expected.png: \
Removed. +        * platform/qt/svg/custom/absolute-root-position-masking-expected.txt: \
Removed. +        * platform/qt/svg/custom/gradient-stroke-width-expected.txt: \
Removed. +        * platform/qt/svg/custom/grayscale-gradient-mask-2-expected.txt: \
Removed. +        * platform/qt/svg/custom/repaint-on-image-bounds-change-expected.txt: \
Removed. +        * platform/qt/svg/custom/use-forward-refs-expected.txt: Removed.
+        * platform/qt/svg/custom/use-on-g-containing-foreignObject-and-image-expected.txt: \
Removed. +        * svg/custom/absolute-root-position-masking-expected.png: Added.
+        * svg/custom/absolute-root-position-masking-expected.txt: Added.
+        * svg/custom/gradient-stroke-width-expected.txt: Added.
+        * svg/custom/grayscale-gradient-mask-2-expected.txt: Added.
+        * svg/custom/repaint-on-image-bounds-change-expected.txt: Added.
+        * svg/custom/svg-fonts-with-no-element-reference-expected.txt: Added.
+        * svg/custom/use-forward-refs-expected.txt: Added.
+        * svg/custom/use-invalid-style-expected.txt: Added.
+        * svg/custom/use-on-g-containing-foreignObject-and-image-expected.txt: \
Added. +
+2012-02-10  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, gardening, mark \
editing/spelling/spelling-marker-description.html as failing. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-10  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Update baselines for svg/batik.  These baselines either look quite
+        similar to the previous baselines or look like improvements (e.g., text
+        masking seems to work now).
+
+        * platform/chromium-linux/svg/batik/masking/maskRegions-expected.png: Added.
+        * platform/chromium-linux/svg/batik/text/textEffect-expected.png:
+        * platform/chromium-linux/svg/batik/text/textEffect3-expected.png:
+        * platform/chromium-linux/svg/batik/text/textOnPath-expected.png:
+        * platform/chromium-linux/svg/batik/text/xmlSpace-expected.png:
+        * platform/chromium-linux/svg/batik/text/xmlSpace-expected.txt: Added.
+        * platform/chromium-mac-leopard/svg/batik/filters/feTile-expected.png:
+        * platform/chromium-mac-leopard/svg/batik/text/textEffect-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/batik/text/textEffect3-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/batik/text/textProperties-expected.png:
 +        * platform/chromium-mac-leopard/svg/batik/text/xmlSpace-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/batik/filters/feTile-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/batik/masking/maskRegions-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/batik/text/textEffect-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/batik/text/textEffect3-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/batik/text/textProperties-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/batik/text/xmlSpace-expected.png: \
Added. +        * platform/chromium-mac/svg/batik/filters: Removed.
+        * platform/chromium-mac/svg/batik/filters/feTile-expected.png: Removed.
+        * platform/chromium-mac/svg/batik/text/textStyles-expected.png: Removed.
+        * platform/chromium-mac/svg/batik/text/verticalText-expected.png: Removed.
+        * platform/chromium-mac/svg/batik/text/xmlSpace-expected.png: Removed.
+        * platform/chromium-win-xp/svg/batik/masking: Removed.
+        * platform/chromium-win-xp/svg/batik/text/verticalText-expected.png:
+        * platform/chromium-win/svg/batik/filters/feTile-expected.png:
+        * platform/chromium-win/svg/batik/filters/filterRegions-expected.png:
+        * platform/chromium-win/svg/batik/masking/maskRegions-expected.png:
+        * platform/chromium-win/svg/batik/masking/maskRegions-expected.txt:
+        * platform/chromium-win/svg/batik/text/longTextOnPath-expected.png:
+        * platform/chromium-win/svg/batik/text/textAnchor-expected.png:
+        * platform/chromium-win/svg/batik/text/textEffect-expected.png:
+        * platform/chromium-win/svg/batik/text/textEffect-expected.txt:
+        * platform/chromium-win/svg/batik/text/textEffect3-expected.png:
+        * platform/chromium-win/svg/batik/text/textEffect3-expected.txt:
+        * platform/chromium-win/svg/batik/text/textFeatures-expected.png:
+        * platform/chromium-win/svg/batik/text/textLayout-expected.png:
+        * platform/chromium-win/svg/batik/text/textPCDATA-expected.png:
+        * platform/chromium-win/svg/batik/text/textProperties-expected.png:
+        * platform/chromium-win/svg/batik/text/textProperties2-expected.png:
+        * platform/chromium-win/svg/batik/text/textStyles-expected.png:
+        * platform/chromium-win/svg/batik/text/verticalText-expected.png:
+        * platform/chromium-win/svg/batik/text/xmlSpace-expected.png:
+        * platform/chromium-win/svg/batik/text/xmlSpace-expected.txt:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Unreviewed gardening after r107289.
+
+        * fast/css/getComputedStyle/computed-style-expected.txt:
+        * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
+        * svg/css/getComputedStyle-basic-expected.txt:
+
+2012-02-09  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Update baselines for W3C-SVG-1.1-SE.  These new baselines all appear to
+        be correct.
+
+        * platform/chromium-linux/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: \
Added. +        * platform/chromium-linux/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
 +        * platform/chromium-linux/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png:
+        * platform/chromium-linux/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png:
 +        * platform/chromium-linux/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png:
+        * platform/chromium-linux/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png:
+        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png: \
Added. +        * platform/chromium-mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: \
Removed. +        * platform/chromium-mac/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: \
Removed. +        * platform/chromium-mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: \
Removed. +        * platform/chromium-mac/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png: \
Removed. +        * platform/chromium-mac/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png: \
Removed. +        * platform/chromium-win/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: \
Added. +        * platform/chromium-win/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
 +        * platform/chromium-win/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png:
+        * platform/chromium-win/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png:
 +        * platform/chromium-win/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png:
+        * platform/chromium-win/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png:
+        * platform/chromium/test_expectations.txt:
+        * platform/gtk/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt: Removed.
+        * platform/gtk/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Removed.
+        * platform/gtk/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: \
Removed. +        * platform/gtk/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt: \
Removed. +        * platform/gtk/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt: \
Removed. +        * platform/mac/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt: \
Removed. +        * platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: \
Removed. +        * platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: \
Removed. +        * platform/mac/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt: \
Removed. +        * platform/mac/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt: \
Removed. +        * svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.txt: Added.
+        * svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Added.
+        * svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: Added.
+        * svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt: Added.
+        * svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt: Added.
+
+2012-02-09  Zoltan Herczeg  &lt;zherczeg@webkit.org&gt;
+
+        Heap-buffer-overflow in WebCore::CSSParser::lex
+        https://bugs.webkit.org/show_bug.cgi?id=77402
+
+        Reviewed by Antti Koivisto.
+
+        Test various comment types.
+
+        * fast/css/parsing-css-comment-expected.txt: Added.
+        * fast/css/parsing-css-comment.html: Added.
+
+2012-02-09  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Add WebSocket extension support
+        https://bugs.webkit.org/show_bug.cgi?id=78079
+
+        Reviewed by Kent Tamura.
+
+        * http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header-expected.txt: \
Rebaselined. +
+2012-02-09  Xianzhu Wang  &lt;wangxianzhu@chromium.org&gt;
+
+        Avoid compositing invisible fixed positioned elements
+        https://bugs.webkit.org/show_bug.cgi?id=78186
+
+        Reviewed by James Robinson.
+
+        * compositing/layer-creation/fixed-position-out-of-view-expected.txt: Added.
+        * compositing/layer-creation/fixed-position-out-of-view.html: Added.
+
+2012-02-09  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Update compositing test baselines for mock scrollbars
+
+        * platform/chromium-mac-snowleopard/compositing/direct-image-compositing-expected.png: \
Removed. +        * platform/chromium-mac-snowleopard/platform/chromium/compositing/layout-width-change-expected.png:
 +        * platform/chromium-mac/compositing/direct-image-compositing-expected.png: \
Added. +        * platform/chromium-mac/compositing/geometry/fixed-in-composited-expected.png:
 +        * platform/chromium-mac/compositing/iframes/iframe-copy-on-scroll-expected.png:
 +        * platform/chromium-mac/compositing/masks/multiple-masks-expected.png:
+        * platform/chromium-mac/compositing/masks/simple-composited-mask-expected.png:
 +        * platform/chromium-mac/compositing/overflow/overflow-scroll-expected.png:
+        * platform/chromium-mac/compositing/overflow/scrollbar-painting-expected.png:
 +        * platform/chromium-win/compositing/direct-image-compositing-expected.png:
+        * platform/chromium-win/compositing/geometry/fixed-in-composited-expected.png:
 +        * platform/chromium-win/compositing/iframes/iframe-copy-on-scroll-expected.png:
 +        * platform/chromium-win/compositing/masks/multiple-masks-expected.png:
+        * platform/chromium-win/compositing/masks/simple-composited-mask-expected.png:
 +        * platform/chromium-win/compositing/overflow/overflow-scroll-expected.png:
+        * platform/chromium-win/compositing/overflow/scrollbar-painting-expected.png:
 +        * platform/chromium-win/platform/chromium/compositing/layout-width-change-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Zan Dobersek  &lt;zandobersek@gmail.com&gt;
+
+        [Gtk] http/tests/workers/terminate-during-sync-operation.html fails locally
+        https://bugs.webkit.org/show_bug.cgi?id=78270
+
+        Reviewed by Martin Robinson.
+
+        Skip a workers http test that utilizes not-yet-supported File System API.
+
+        * platform/gtk/Skipped:
+
+2012-02-09  Tom Sepez  &lt;tsepez@chromium.org&gt;
+
+        [chromium] skip tests affected by deprecation of in-url identities.
+        https://bugs.webkit.org/show_bug.cgi?id=78259
+
+        Reviewed by Adam Barth.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Zan Dobersek  &lt;zandobersek@gmail.com&gt;
+
+        [GTK] Add DRT support for modal dialogs
+        https://bugs.webkit.org/show_bug.cgi?id=53600
+
+        Reviewed by Martin Robinson.
+
+        Unskip the passing modal dialogs tests and log the remaining skipped test.
+
+        * platform/gtk/Skipped:
+
+2012-02-09  Zan Dobersek  &lt;zandobersek@gmail.com&gt;
+
+        [Gtk] security/set-form-autocomplete-attribute.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=78261
+
+        Reviewed by Martin Robinson.
+
+        Unskip the newly-passing test
+
+        * platform/gtk/Skipped:
+
+2012-02-09  MORITA Hajime  &lt;morrita@google.com&gt;
+
+        Unreviewed attempt to fix a test flakiness.
+
+        * editing/spelling/spelling-marker-description.html:
+
+2012-02-09  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Unreviewed expectation followup for r107329
+
+        * platform/chromium-linux/platform/chromium/compositing/layout-width-change-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-09  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Enable mock scrollbars for compositing layout tests
+        https://bugs.webkit.org/show_bug.cgi?id=78299
+
+        Reviewed by Dirk Pranke.
+
+        * platform/chromium-linux/compositing/direct-image-compositing-expected.png:
+        * platform/chromium-linux/compositing/geometry/ancestor-overflow-change-expected.png: \
Removed. +        * platform/chromium-linux/compositing/geometry/fixed-in-composited-expected.png:
 +        * platform/chromium-linux/compositing/geometry/tall-page-composited-expected.png: \
Removed. +        * platform/chromium-linux/compositing/iframes/iframe-copy-on-scroll-expected.png:
 +        * platform/chromium-linux/compositing/iframes/iframe-in-composited-layer-expected.png: \
Removed. +        * platform/chromium-linux/compositing/masks/masked-ancestor-expected.png:
 +        * platform/chromium-linux/compositing/masks/multiple-masks-expected.png:
+        * platform/chromium-linux/compositing/masks/simple-composited-mask-expected.png:
 +        * platform/chromium-linux/compositing/overflow/overflow-scroll-expected.png:
 +        * platform/chromium-linux/compositing/overflow/scrollbar-painting-expected.png:
 +        * platform/chromium-mac/compositing/geometry/tall-page-composited-expected.png: \
Removed. +        * platform/chromium-mac/compositing/iframes/iframe-in-composited-layer-expected.png: \
Removed. +        * platform/chromium-win/compositing/geometry/ancestor-overflow-change-expected.png: \
Removed. +        * platform/chromium-win/compositing/geometry/tall-page-composited-expected.png: \
Removed. +        * platform/chromium-win/compositing/iframes/iframe-in-composited-layer-expected.png: \
Removed. +        * platform/chromium-win/compositing/scaling/tiled-layer-recursion-expected.png: \
Removed. +        * platform/chromium/compositing/geometry/ancestor-overflow-change-expected.png:
 +        * platform/chromium/compositing/geometry/tall-page-composited-expected.png: \
Renamed from LayoutTests/platform/chromium-linux/compositing/scaling/tiled-layer-recursion-expected.png.
 +        * platform/chromium/compositing/iframes/iframe-in-composited-layer-expected.png: \
Added. +        * platform/chromium/compositing/scaling/tiled-layer-recursion-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Another unreviewed massive SVG rebaseline (all our windows bots that I \
missed). +
+        * platform/chromium-linux/svg/custom/animate-target-id-changed-expected.png: \
Removed. +        * platform/chromium-linux/svg/custom/animate-target-id-changed-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/clip-path-href-changes-expected.png: \
Removed. +        * platform/chromium-linux/svg/custom/clip-path-href-changes-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/fill-opacity-update-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/js-late-clipPath-and-object-creation-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/js-update-container-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/js-update-gradient-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/marker-child-changes-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/marker-strokeWidth-changes-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/prevent-default-expected.png: \
Removed. +        * platform/chromium-linux/svg/custom/prevent-default-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/repaint-stroke-width-changes-expected.png: \
Removed. +        * platform/chromium-linux/svg/custom/repaint-stroke-width-changes-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/stroke-opacity-update-expected.txt: \
Removed. +        * platform/chromium-linux/svg/custom/use-elementInstance-event-target-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/use-setAttribute-crash-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/repaint-stroke-width-changes-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/use-elementInstance-event-target-expected.txt: \
Removed. +        * platform/chromium-mac-snowleopard/svg/custom/use-setAttribute-crash-expected.txt:
 +        * platform/chromium-win-vista/svg/custom/use-setAttribute-crash-expected.txt: \
Added. +        * platform/chromium-win-xp/svg/custom/use-setAttribute-crash-expected.txt: \
Added. +        * platform/chromium-win/svg/custom/animate-target-id-changed-expected.png:
 +        * platform/chromium-win/svg/custom/animate-target-id-changed-expected.txt: \
Removed. +        * platform/chromium-win/svg/custom/clip-path-href-changes-expected.png:
 +        * platform/chromium-win/svg/custom/js-late-clipPath-and-object-creation-expected.txt:
 +        * platform/chromium-win/svg/custom/prevent-default-expected.png:
+        * platform/chromium-win/svg/custom/repaint-stroke-width-changes-expected.png:
 +        * platform/chromium-win/svg/custom/use-elementInstance-event-target-expected.txt:
 +        * platform/chromium-win/svg/custom/use-setAttribute-crash-expected.txt:
+        * platform/chromium/svg/custom/clip-path-href-changes-expected.txt: Removed.
+        * platform/chromium/svg/custom/fill-opacity-update-expected.txt: Removed.
+        * platform/chromium/svg/custom/js-update-container-expected.txt: Removed.
+        * platform/chromium/svg/custom/js-update-gradient-expected.txt: Removed.
+        * platform/chromium/svg/custom/marker-child-changes-expected.txt: Removed.
+        * platform/chromium/svg/custom/marker-strokeWidth-changes-expected.txt: \
Removed. +        * platform/chromium/svg/custom/prevent-default-expected.txt: \
Removed. +        * platform/chromium/svg/custom/repaint-stroke-width-changes-expected.txt: \
Removed. +        * platform/chromium/svg/custom/stroke-opacity-update-expected.txt: \
Removed. +
+        * platform/chromium/test_expectations.txt:
+        Marked the really fishy rebaseline here.
+
+2012-02-09  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Split one MutationObserver layout test into two
+        https://bugs.webkit.org/show_bug.cgi?id=78285
+
+        Reviewed by Ojan Vafai.
+
+        Rather than a single non-event-delivery.html test,
+        created seperate tests for SQL database and FileSystem,
+        making it easy to skip them separately if the underlying
+        feature isn't supported by a particular platform.
+
+        * fast/mutation/database-callback-delivery-expected.txt: Added.
+        * fast/mutation/database-callback-delivery.html: Added.
+        * fast/mutation/filesystem-callback-delivery-expected.txt: Added.
+        * fast/mutation/filesystem-callback-delivery.html: Added.
+        * fast/mutation/non-event-delivery-expected.txt: Removed.
+        * fast/mutation/non-event-delivery.html: Removed.
+
+2012-02-09  Matthew Delaney  &lt;mdelaney@apple.com&gt;
+
+        getComputedStyle() returns different values for different zoom levels
+        https://bugs.webkit.org/show_bug.cgi?id=32230
+
+        Reviewed by Beth Dakin.
+
+        * fast/css/getComputedStyle/getComputedStyle-zoom-and-background-size-expected.txt: \
Added. +        * fast/css/getComputedStyle/getComputedStyle-zoom-and-background-size.html: \
Added. +
+2012-02-09  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: \
Replaced. +        * \
platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt: \
Removed. +        * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
 +        * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
 +        * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
+        * platform/gtk/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: \
Removed. +        * platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: \
Removed. +        Updated those baseline for line-grid-snap to line-snap renaming.
+
+        * platform/chromium/test_expectations.txt:
+        Added another crasher following r107242.
+
+2012-02-09  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Update baselines for \
compositing/iframes/iframe-content-flipping.html +
+        * platform/chromium-mac-snowleopard/compositing/iframes/iframe-content-flipping-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/compositing/iframes/iframe-content-flipping-expected.png.
 +        * platform/chromium-win/compositing/iframes/iframe-content-flipping-expected.png:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-09  David Hyatt  &lt;hyatt@apple.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=78256
+        
+        Rename line-grid-snap to line-snap so that it matches the draft proposal for \
the +        property.
+        
+        Reviewed by Dan Bernstein.
+
+        * fast/line-grid/line-grid-contains-value.html:
+        * fast/line-grid/line-grid-floating.html:
+        * fast/line-grid/line-grid-inside-columns.html:
+        * fast/line-grid/line-grid-into-columns.html:
+        * fast/line-grid/line-grid-into-floats.html:
+        * fast/line-grid/line-grid-nested.html:
+        * fast/line-grid/line-grid-positioned.html:
+        * fast/line-grid/line-grid-snap-parsing.html: Removed.
+        * fast/line-grid/line-snap-parsing-expected.txt: Added.
+        * fast/line-grid/line-snap-parsing.html: Added.
+        * fast/line-grid/script-tests/line-grid-snap-parsing.js: Removed.
+        * fast/line-grid/script-tests/line-snap-parsing.js: Added.
+
+2012-02-09  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed rebaseline, yet another small font difference.
+
+        * platform/chromium-mac-leopard/svg/carto.net/selectionlist-expected.png:
+        * platform/chromium-win-xp/svg/carto.net/selectionlist-expected.png: Added.
+        * platform/chromium-win-xp/svg/carto.net/selectionlist-expected.txt: Added.
+
+2012-02-09  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        [Chromium] IndexedDB: IDBVersionChangeRequest V8 wrapper not generated as \
ActiveDOMObject +        https://bugs.webkit.org/show_bug.cgi?id=78167
+
+        Reviewed by Adam Barth.
+
+        * storage/indexeddb/versionchangerequest-activedomobject-expected.txt: \
Added. +        * storage/indexeddb/versionchangerequest-activedomobject.html: Added.
+
+2012-02-09  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium/test_expectations.txt:
+        Mark fast/workers/storage/interrupt-database.html as slow to see if it helps \
with the flakiness. +        Mark a new animation test as flaky (already know issue \
in the animation testing framework). +
+2012-02-09  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r107035.
+        http://trac.webkit.org/changeset/107035
+        https://bugs.webkit.org/show_bug.cgi?id=78253
+
+        Regressed DOMDivWalk (Requested by arv on #webkit).
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Another unreviewed svg rebaselining after r107207.
+
+        * platform/chromium-mac-leopard/svg/custom/animate-path-discrete-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/circle-move-invalidation-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/js-late-clipPath-creation-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/js-late-gradient-and-object-creation-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/js-late-gradient-creation-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/js-late-pattern-and-object-creation-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-content-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-deep-shadow-tree-content-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-image-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-inner-svg-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-shadow-tree-content-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-use-on-symbol-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/text-xy-updates-SVGList-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/use-disappears-after-style-update-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/use-elementInstance-methods-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/use-event-handler-on-referenced-element-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/use-event-handler-on-use-element-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/use-instanceRoot-event-bubbling-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/use-instanceRoot-event-listeners-expected.png: \
Added. +
+2012-02-09  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-mac-snowleopard/svg/carto.net/selectionlist-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/carto.net/selectionlist-expected.txt: \
Added. +        New baseline (font issue).
+
+        * platform/chromium/test_expectations.txt:
+        Added 2 tests that started asserting on one bot.
+
+2012-02-09  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        CSS3 calc() - remove mod
+        https://bugs.webkit.org/show_bug.cgi?id=78226
+
+        Reviewed by Ojan Vafai.
+
+        * css3/calc/simple-calcs-expected.txt:
+        * css3/calc/simple-calcs.html:
+
+2012-02-09  Jochen Eisinger  &lt;jochen@chromium.org&gt;
+
+        Add missing file for fast/events/scroll-event-during-modal-dialog.html
+        https://bugs.webkit.org/show_bug.cgi?id=78234
+
+        Reviewed by Mihai Parparita.
+
+        * fast/events/resources/scroll-event-modal-dialog.html: Added.
+
+2012-02-09  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, gardening, more svg fixes.
+
+        Mark svg/custom/absolute-sized-content-with-resources.xhtml as IMAGE+TEXT \
and +        rebaseline svg/carto.net/slider-expected.png.
+
+        * platform/chromium-linux/svg/carto.net/slider-expected.png:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, update chromium svg expectations after r107207.
+
+        * platform/chromium-linux-x86/svg/custom/repaint-stroke-width-changes-expected.png: \
Removed. +        * platform/chromium-linux/svg/custom/animate-target-id-changed-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/animate-target-id-changed-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/clip-path-href-changes-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/clip-path-href-changes-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/fill-opacity-update-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/glyph-selection-arabic-forms-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/glyph-selection-bidi-mirror-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/glyph-selection-non-bmp-expected.png: \
Copied from LayoutTests/platform/chromium-linux/svg/custom/repaint-stroke-width-changes-expected.png.
 +        * platform/chromium-linux/svg/custom/hit-test-with-br-expected.png:
+        * platform/chromium-linux/svg/custom/js-late-clipPath-and-object-creation-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/js-update-container-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/js-update-gradient-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/js-update-style-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/marker-child-changes-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/marker-strokeWidth-changes-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/prevent-default-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/prevent-default-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/repaint-on-constant-size-change-expected.png: \
Copied from LayoutTests/platform/chromium-linux/svg/custom/repaint-stroke-width-changes-expected.png.
 +        * platform/chromium-linux/svg/custom/repaint-stroke-width-changes-expected.png:
 +        * platform/chromium-linux/svg/custom/repaint-stroke-width-changes-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/stroke-opacity-update-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/use-crash-in-non-wellformed-document-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/use-elementInstance-event-target-expected.txt: \
Added. +        * platform/chromium-linux/svg/custom/use-setAttribute-crash-expected.txt: \
Added. +        * platform/chromium-mac-leopard/svg/custom/clip-path-href-changes-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/fill-opacity-update-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/glyph-selection-arabic-forms-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/glyph-selection-arabic-forms-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/glyph-selection-non-bmp-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/hit-test-with-br-expected.png:
+        * platform/chromium-mac-leopard/svg/custom/js-late-clipPath-and-object-creation-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/js-update-container-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/js-update-gradient-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/js-update-style-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/marker-child-changes-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/marker-strokeWidth-changes-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/prevent-default-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/stroke-opacity-update-expected.png: \
Removed. +        * platform/chromium-mac-leopard/svg/custom/use-elementInstance-event-target-expected.png:
 +        * platform/chromium-mac-leopard/svg/custom/use-setAttribute-crash-expected.png: \
Removed. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-arabic-forms-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-arabic-forms-expected.txt: \
Removed. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-bidi-mirror-expected.txt: \
Removed. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-non-bmp-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-non-bmp-expected.txt: \
Removed. +        * platform/chromium-win/svg/custom/glyph-selection-arabic-forms-expected.png:
 +        * platform/chromium-win/svg/custom/glyph-selection-bidi-mirror-expected.txt: \
Added. +        * platform/chromium-win/svg/custom/glyph-selection-non-bmp-expected.png:
 +        * platform/chromium-win/svg/custom/glyph-selection-non-bmp-expected.txt: \
Removed. +        * platform/chromium-win/svg/custom/hit-test-with-br-expected.png:
+        * platform/chromium-win/svg/custom/hit-test-with-br-expected.txt:
+
+2012-02-09  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt-5.0/fast/images/embed-image-expected.txt: Add after Qt5 \
update. +        * platform/qt-wk2/ [...] .png: Remove obsolete png files.
+        * platform/qt/Skipped: Skip new tests without expected files.
+
+2012-02-09  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        update CSS3 calc() color tests to use pre/post js
+        https://bugs.webkit.org/show_bug.cgi?id=77596
+
+        Note that these tests are intended to 'fail' as calc() functionality
+        had not yet landed (see http://webkit.org/b/16662)
+
+        Reviewed by Kent Tamura.
+
+        * css3/calc/color-hsl-expected.txt:
+        * css3/calc/color-hsl.html:
+        * css3/calc/color-rgb-expected.txt:
+        * css3/calc/color-rgb.html:
+
+2012-02-09  Arun Patole  &lt;arun.patole@motorola.com&gt;
+
+        Setting media element 'src' attribute to &quot;&quot; should trigger load
+        https://bugs.webkit.org/show_bug.cgi?id=47907
+
+        Reviewed by Eric Carlson.
+
+        * media/video-src-empty-expected.txt: Added, test for &lt;video&gt; with \
empty src. +        * media/video-src-empty.html: Added.
+        * media/video-src-none-expected.txt:
+        * media/video-src-none.html: removed &quot;empty src&quot; test as it is \
handled in separate test: video-src-empty.html. +        * \
platform/chromium/test_expectations.txt: media/video-empty-source.html needs a \
rebaseline. +
+2012-02-09  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: fix setOuterHTML for the case that adds / removes duplicate.
+        https://bugs.webkit.org/show_bug.cgi?id=78235
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/elements/set-outer-html-2-expected.txt:
+        * inspector/elements/set-outer-html-2.html:
+        * inspector/elements/set-outer-html-expected.txt:
+        * inspector/elements/set-outer-html.html:
+
+2012-02-09  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, update chromium svg expectations after r107207.
+
+        * 400 platform/chromium*/svg/custom/* files
+
+2012-02-09  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt][Mac] Skip new failing tests to paint the bot green.
+
+        * platform/qt-mac/Skipped:
+
+2012-02-09  Allan Sandfeld Jensen  &lt;allan.jensen@nokia.com&gt;
+
+        Test that timers do not fire from subframes of suspended documents.
+        https://bugs.webkit.org/show_bug.cgi?id=53733
+
+        Reviewed by Mihai Parparita.
+
+        * fast/events/resources/suspend-subframe-1.html: Added.
+        * fast/events/resources/suspend-subframe-2.html: Added.
+        * fast/events/suspend-timers-expected.txt: Added.
+        * fast/events/suspend-timers.html: Added.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Update expectations. svg/custom/nested-embedded-svg-size-changes.html no \
longer timeouts. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Make the hit-test-with-br.xhtml work on non-Mac platforms.
+        it was skipped on Chromium Win/Linux before, as the click on the \
&lt;rect&gt; never suceeeded. +        On  Mac the coordinate 10x70, was the upper \
left corner of the rectangle, so if the font +        size is just slightly larger, \
or the size of the &lt;br/&gt;, then we failed to fire the click +        event - so \
just click at 50x80, to be on the safe side. +
+        * svg/custom/hit-test-with-br.xhtml:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        [Chromium] Layout Test svg/as-object/nested-embedded-svg-size-changes.html \
times out +        https://bugs.webkit.org/show_bug.cgi?id=77183
+
+        Reviewed by Zoltan Herczeg.
+
+        Another attempt at fixing \
svg/as-object/nested-embedded-svg-size-changes.html, +        by guessing from the JS \
trace, where it might happened. +
+        * svg/as-object/nested-embedded-svg-size-changes.html:
+
+2012-02-09  Zan Dobersek  &lt;zandobersek@gmail.com&gt;
+
+        LayoutTests/fast/harness/resources/modal-dialog.html is missing the opening \
html tag +        https://bugs.webkit.org/show_bug.cgi?id=78217
+
+        Reviewed by Andreas Kling.
+
+        Add the missing opening &lt;html&gt; tag.
+
+        * fast/harness/resources/modal-dialog.html:
+
+2012-02-09  Alexei Filippov  &lt;alexeif@chromium.org&gt;
+
+        WebInspector: Show percentage by default in heap profiler.
+        https://bugs.webkit.org/show_bug.cgi?id=78103
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/profiler/detailed-heapshots-test.js:
+
+2012-02-09  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [WK2] SVG animation pause API missing
+        https://bugs.webkit.org/show_bug.cgi?id=63396
+
+        Unreviewed gardening, skip svg/animations/animate-color-fill-from-by.html \
because of this bug. +
+        * platform/wk2/Skipped:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Move platform dependant results where they belong, and add Qt \
specific ones. +
+        * platform/mac/svg/custom/glyph-selection-arabic-forms-expected.png: Renamed \
from LayoutTests/svg/custom/glyph-selection-arabic-forms-expected.png. +        * \
platform/mac/svg/custom/glyph-selection-arabic-forms-expected.txt: Renamed from \
LayoutTests/svg/custom/glyph-selection-arabic-forms-expected.txt. +        * \
platform/mac/svg/custom/glyph-selection-bidi-mirror-expected.png: Renamed from \
LayoutTests/svg/custom/glyph-selection-bidi-mirror-expected.png. +        * \
platform/mac/svg/custom/glyph-selection-bidi-mirror-expected.txt: Renamed from \
LayoutTests/svg/custom/glyph-selection-bidi-mirror-expected.txt. +        * \
platform/mac/svg/custom/glyph-selection-non-bmp-expected.png: Renamed from \
LayoutTests/svg/custom/glyph-selection-non-bmp-expected.png. +        * \
platform/mac/svg/custom/glyph-selection-non-bmp-expected.txt: Renamed from \
LayoutTests/svg/custom/glyph-selection-non-bmp-expected.txt. +        * \
platform/qt/svg/custom/glyph-selection-arabic-forms-expected.txt: Added. +        * \
platform/qt/svg/custom/glyph-selection-bidi-mirror-expected.txt: Added. +        * \
platform/qt/svg/custom/glyph-selection-non-bmp-expected.txt: Added. +
+2012-02-09  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: Update protocol and UI to follow bug 77204 (Kill \
per-Attribute style declarations) +        \
https://bugs.webkit.org/show_bug.cgi?id=77962 +
+        Reviewed by Pavel Feldman.
+
+        * inspector/elements/elements-panel-styles-expected.txt:
+        * inspector/styles/styles-computed-trace-expected.txt:
+        * inspector/styles/styles-new-API-expected.txt:
+        * inspector/styles/styles-new-API.html:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Add missing Mac/Lion result.
+
+        * platform/mac/svg/carto.net/scrollbar-expected.png: Added.
+        * svg/custom/glyph-selection-bidi-mirror-expected.txt:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Switch svg/custom tests to repaint harness
+        https://bugs.webkit.org/show_bug.cgi?id=78115
+
+        Not reviewed. Fix last minute typo, in \
nested-embedded-svg-size-changes.html, that may lead to flakiness. +
+        * svg/as-object/nested-embedded-svg-size-changes.html:
+
+2012-02-08  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: toggle Edit as HTML on F2, drag nodes up / down upon \
Ctrl(Cmd) Up / Down. +        https://bugs.webkit.org/show_bug.cgi?id=78123
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/elements/move-node.html:
+        * inspector/elements/undo-dom-edits-expected.txt:
+        * inspector/elements/undo-dom-edits.html:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Rebaseline some Qt svg results.
+
+        * platform/qt/svg/custom/absolute-sized-content-with-resources-expected.txt:
+        * platform/qt/svg/custom/foreignObject-crash-on-hover-expected.txt:
+        * platform/qt/svg/custom/hit-test-unclosed-subpaths-expected.txt:
+        * platform/qt/svg/custom/js-update-bounce-expected.txt:
+        * platform/qt/svg/custom/js-update-stop-linked-gradient-expected.txt:
+        * platform/qt/svg/custom/js-update-style-expected.txt:
+        * platform/qt/svg/custom/mask-invalidation-expected.txt:
+        * platform/qt/svg/custom/relative-sized-content-with-resources-expected.txt:
+        * platform/qt/svg/custom/text-repaint-including-stroke-expected.txt:
+        * platform/qt/svg/custom/use-clipped-hit-expected.txt:
+
+2012-02-09  Kenichi Ishibashi  &lt;bashi@chromium.org&gt;
+
+        Unreviewed test expectation update.
+
+        * platform/chromium-linux/platform/chromium/compositing/layout-width-change-expected.png:
 +        * platform/chromium-mac-snowleopard/platform/chromium/compositing/layout-width-change-expected.png: \
Renamed from LayoutTests/platform/chromium/platform/chromium/compositing/layout-width-change-expected.png.
 +
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        [Qt] REGRESSION(r106918): It made \
svg/as-object/nested-embedded-svg-size-changes.html fail in debug mode +        \
https://bugs.webkit.org/show_bug.cgi?id=78026 +
+        [Chromium] Layout Test svg/as-object/nested-embedded-svg-size-changes.html \
times out +        https://bugs.webkit.org/show_bug.cgi?id=77183
+
+        Reviewed by Andreas Kling.
+
+        Rework testcases, to wait for the embedded SVG of the embedded HTML that \
we're loading. +        Should fix the flakiness for both Qt/Chromium.
+
+        * platform/qt/Skipped: Unskip test.
+        * svg/as-object/nested-embedded-svg-size-changes.html: Wait for the embedded \
SVG to load, before trying to access it. +        * \
svg/as-object/resources/nested-embedded-svg-size-changes-target.html: +
+2012-02-09  Philip Rogers  &lt;pdr@google.com&gt;
+
+        Fix mirroring with SVG fonts
+        https://bugs.webkit.org/show_bug.cgi?id=77067
+
+        Reviewed by Nikolas Zimmermann.
+
+        SVG fonts were incorrectly handling mirrored characters in bidi text.
+        In this change I added the function createStringWithMirroredCharacters
+        which handles mirroring the characters when selecting glyphs for SVG
+        fonts. I also made a small cosmetic change in the function
+        charactersWithArabicForm, changing the bool parameter &quot;mirror&quot; to \
&quot;rtl&quot; +        which better reflects what it actually does.
+
+        Several new tests were added to test mirroring with SVG fonts in the
+        presence of Arabic forms and non-BMP characters.
+
+        * platform/gtk/test_expectations.txt:
+        * platform/win/test_expectations.txt:
+        * svg/custom/glyph-selection-arabic-forms-expected.txt: Added.
+        * svg/custom/glyph-selection-arabic-forms.svg: Added.
+        * svg/custom/glyph-selection-bidi-mirror-expected.txt: Added.
+        * svg/custom/glyph-selection-bidi-mirror.svg: Added.
+        * svg/custom/glyph-selection-non-bmp-expected.png: Added.
+        * svg/custom/glyph-selection-non-bmp-expected.txt: Added.
+        * svg/custom/glyph-selection-non-bmp.svg: Added.
+
+2012-02-09  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r107207.
+
+        * platform/gtk/svg/custom/absolute-sized-content-with-resources-expected.txt:
 +        * platform/gtk/svg/custom/foreignObject-crash-on-hover-expected.txt:
+        * platform/gtk/svg/custom/hit-test-unclosed-subpaths-expected.txt:
+        * platform/gtk/svg/custom/js-update-bounce-expected.txt:
+        * platform/gtk/svg/custom/js-update-stop-linked-gradient-expected.txt:
+        * platform/gtk/svg/custom/js-update-style-expected.txt:
+        * platform/gtk/svg/custom/mask-invalidation-expected.txt:
+        * platform/gtk/svg/custom/relative-sized-content-with-resources-expected.txt:
 +        * platform/gtk/svg/custom/text-repaint-including-stroke-expected.txt:
+        * platform/gtk/svg/custom/use-clipped-hit-expected.txt:
+
+2012-02-09  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Switch svg/custom tests to repaint harness
+        https://bugs.webkit.org/show_bug.cgi?id=78115
+
+        Reviewed by Andreas Kling.
+
+        Make all tests that exercise repainting use the \
fast/repaint/resources/repaint.js harness. +
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/svg/custom/absolute-sized-content-with-resources-expected.png:
 +        * platform/mac/svg/custom/absolute-sized-content-with-resources-expected.txt:
 +        * platform/mac/svg/custom/animate-path-discrete-expected.png:
+        * platform/mac/svg/custom/animate-path-morphing-expected.png:
+        * platform/mac/svg/custom/animate-target-id-changed-expected.png:
+        * platform/mac/svg/custom/animate-target-removed-from-document-expected.png:
+        * platform/mac/svg/custom/circle-move-invalidation-expected.png:
+        * platform/mac/svg/custom/clip-path-child-changes-expected.png:
+        * platform/mac/svg/custom/clip-path-href-changes-expected.png:
+        * platform/mac/svg/custom/clip-path-id-changes-expected.png:
+        * platform/mac/svg/custom/clip-path-units-changes-expected.png:
+        * platform/mac/svg/custom/deep-dynamic-updates-expected.png:
+        * platform/mac/svg/custom/fill-opacity-update-expected.png:
+        * platform/mac/svg/custom/foreignObject-crash-on-hover-expected.png:
+        * platform/mac/svg/custom/foreignObject-crash-on-hover-expected.txt:
+        * platform/mac/svg/custom/gradient-add-stops-expected.png:
+        * platform/mac/svg/custom/gradient-stop-style-change-expected.png:
+        * platform/mac/svg/custom/hit-test-unclosed-subpaths-expected.png:
+        * platform/mac/svg/custom/hit-test-unclosed-subpaths-expected.txt:
+        * platform/mac/svg/custom/hit-test-with-br-expected.png:
+        * platform/mac/svg/custom/js-late-clipPath-and-object-creation-expected.png:
+        * platform/mac/svg/custom/js-late-clipPath-creation-expected.png:
+        * platform/mac/svg/custom/js-late-gradient-and-object-creation-expected.png:
+        * platform/mac/svg/custom/js-late-gradient-creation-expected.png:
+        * platform/mac/svg/custom/js-late-marker-and-object-creation-expected.png:
+        * platform/mac/svg/custom/js-late-marker-creation-expected.png:
+        * platform/mac/svg/custom/js-late-mask-and-object-creation-expected.png:
+        * platform/mac/svg/custom/js-late-mask-creation-expected.png:
+        * platform/mac/svg/custom/js-late-pattern-and-object-creation-expected.png:
+        * platform/mac/svg/custom/js-late-pattern-creation-expected.png:
+        * platform/mac/svg/custom/js-repaint-rect-on-path-with-stroke-expected.png:
+        * platform/mac/svg/custom/js-update-bounce-expected.png:
+        * platform/mac/svg/custom/js-update-bounce-expected.txt:
+        * platform/mac/svg/custom/js-update-container-expected.png:
+        * platform/mac/svg/custom/js-update-container2-expected.png:
+        * platform/mac/svg/custom/js-update-gradient-expected.png:
+        * platform/mac/svg/custom/js-update-image-expected.png:
+        * platform/mac/svg/custom/js-update-path-changes-expected.png:
+        * platform/mac/svg/custom/js-update-path-removal-expected.png:
+        * platform/mac/svg/custom/js-update-pattern-child-expected.png:
+        * platform/mac/svg/custom/js-update-pattern-expected.png:
+        * platform/mac/svg/custom/js-update-polygon-changes-expected.png:
+        * platform/mac/svg/custom/js-update-polygon-removal-expected.png:
+        * platform/mac/svg/custom/js-update-stop-expected.png:
+        * platform/mac/svg/custom/js-update-stop-linked-gradient-expected.png:
+        * platform/mac/svg/custom/js-update-stop-linked-gradient-expected.txt:
+        * platform/mac/svg/custom/js-update-style-expected.png:
+        * platform/mac/svg/custom/js-update-style-expected.txt:
+        * platform/mac/svg/custom/js-update-transform-addition-expected.png:
+        * platform/mac/svg/custom/js-update-transform-changes-expected.png:
+        * platform/mac/svg/custom/marker-child-changes-css-expected.png:
+        * platform/mac/svg/custom/marker-child-changes-expected.png:
+        * platform/mac/svg/custom/marker-strokeWidth-changes-expected.png:
+        * platform/mac/svg/custom/marker-viewBox-changes-expected.png:
+        * platform/mac/svg/custom/mask-child-changes-expected.png:
+        * platform/mac/svg/custom/mask-invalidation-expected.png:
+        * platform/mac/svg/custom/mask-invalidation-expected.txt:
+        * platform/mac/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png:
 +        * platform/mac/svg/custom/prevent-default-expected.png:
+        * platform/mac/svg/custom/relative-sized-content-expected.png:
+        * platform/mac/svg/custom/relative-sized-content-with-resources-expected.png:
 +        * platform/mac/svg/custom/relative-sized-content-with-resources-expected.txt:
 +        * platform/mac/svg/custom/relative-sized-deep-shadow-tree-content-expected.png:
 +        * platform/mac/svg/custom/relative-sized-image-expected.png:
+        * platform/mac/svg/custom/relative-sized-inner-svg-expected.png:
+        * platform/mac/svg/custom/relative-sized-shadow-tree-content-expected.png:
+        * platform/mac/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png:
 +        * platform/mac/svg/custom/relative-sized-use-on-symbol-expected.png:
+        * platform/mac/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
 +        * platform/mac/svg/custom/repaint-moving-svg-and-div-expected.png:
+        * platform/mac/svg/custom/repaint-on-image-bounds-change-expected.png:
+        * platform/mac/svg/custom/resource-client-removal-expected.png:
+        * platform/mac/svg/custom/resource-invalidate-on-target-update-expected.png:
+        * platform/mac/svg/custom/scroll-hit-test-expected.png:
+        * platform/mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
 +        * platform/mac/svg/custom/stroke-opacity-update-expected.png:
+        * platform/mac/svg/custom/svg-absolute-children-expected.png:
+        * platform/mac/svg/custom/text-dom-removal-expected.png:
+        * platform/mac/svg/custom/text-repaint-including-stroke-expected.png:
+        * platform/mac/svg/custom/text-repaint-including-stroke-expected.txt:
+        * platform/mac/svg/custom/text-xy-updates-SVGList-expected.png:
+        * platform/mac/svg/custom/use-clipped-hit-expected.png:
+        * platform/mac/svg/custom/use-clipped-hit-expected.txt:
+        * platform/mac/svg/custom/use-detach-expected.png:
+        * platform/mac/svg/custom/use-disappears-after-style-update-expected.png:
+        * platform/mac/svg/custom/use-elementInstance-event-target-expected.png:
+        * platform/mac/svg/custom/use-elementInstance-methods-expected.png:
+        * platform/mac/svg/custom/use-event-handler-on-referenced-element-expected.png:
 +        * platform/mac/svg/custom/use-event-handler-on-use-element-expected.png:
+        * platform/mac/svg/custom/use-inherit-style-expected.png:
+        * platform/mac/svg/custom/use-instanceRoot-as-event-target-expected.png: \
Removed. +        * platform/mac/svg/custom/use-instanceRoot-event-bubbling-expected.png:
 +        * platform/mac/svg/custom/use-instanceRoot-event-listeners-expected.png:
+        * platform/mac/svg/custom/use-setAttribute-crash-expected.png:
+        * svg/custom/absolute-sized-content-with-resources.xhtml:
+        * svg/custom/animate-path-discrete.svg:
+        * svg/custom/animate-path-morphing.svg:
+        * svg/custom/animate-target-id-changed.svg:
+        * svg/custom/animate-target-removed-from-document.svg:
+        * svg/custom/circle-move-invalidation.svg:
+        * svg/custom/clip-path-child-changes.svg:
+        * svg/custom/clip-path-href-changes.svg:
+        * svg/custom/clip-path-id-changes.svg:
+        * svg/custom/clip-path-units-changes.svg:
+        * svg/custom/deep-dynamic-updates.svg:
+        * svg/custom/fill-opacity-update.svg:
+        * svg/custom/foreignObject-crash-on-hover.xml:
+        * svg/custom/gradient-add-stops.svg:
+        * svg/custom/gradient-stop-style-change.svg:
+        * svg/custom/hit-test-path-stroke.svg:
+        * svg/custom/hit-test-path.svg:
+        * svg/custom/hit-test-unclosed-subpaths.svg:
+        * svg/custom/hit-test-with-br.xhtml:
+        * svg/custom/js-late-clipPath-and-object-creation.svg:
+        * svg/custom/js-late-clipPath-creation.svg:
+        * svg/custom/js-late-gradient-and-object-creation.svg:
+        * svg/custom/js-late-gradient-creation.svg:
+        * svg/custom/js-late-marker-and-object-creation.svg:
+        * svg/custom/js-late-marker-creation.svg:
+        * svg/custom/js-late-mask-and-object-creation.svg:
+        * svg/custom/js-late-mask-creation.svg:
+        * svg/custom/js-late-pattern-and-object-creation.svg:
+        * svg/custom/js-late-pattern-creation.svg:
+        * svg/custom/js-repaint-rect-on-path-with-stroke.svg:
+        * svg/custom/js-update-bounce.svg:
+        * svg/custom/js-update-container.svg:
+        * svg/custom/js-update-container2.svg:
+        * svg/custom/js-update-gradient.svg:
+        * svg/custom/js-update-image.svg:
+        * svg/custom/js-update-path-changes.svg:
+        * svg/custom/js-update-path-removal.svg:
+        * svg/custom/js-update-pattern-child.svg:
+        * svg/custom/js-update-pattern.svg:
+        * svg/custom/js-update-polygon-changes.svg:
+        * svg/custom/js-update-polygon-removal.svg:
+        * svg/custom/js-update-stop-linked-gradient.svg:
+        * svg/custom/js-update-stop.svg:
+        * svg/custom/js-update-style.svg:
+        * svg/custom/js-update-transform-addition.svg:
+        * svg/custom/js-update-transform-changes.svg:
+        * svg/custom/linking-a-03-b-all.svg:
+        * svg/custom/linking-a-03-b-preserveAspectRatio.svg:
+        * svg/custom/linking-a-03-b-transform.svg:
+        * svg/custom/linking-a-03-b-viewBox-transform.svg:
+        * svg/custom/linking-a-03-b-viewBox.svg:
+        * svg/custom/linking-a-03-b-viewTarget.svg:
+        * svg/custom/linking-a-03-b-zoomAndPan.svg:
+        * svg/custom/marker-child-changes-css.svg:
+        * svg/custom/marker-child-changes.svg:
+        * svg/custom/marker-strokeWidth-changes.svg:
+        * svg/custom/marker-viewBox-changes.svg:
+        * svg/custom/mask-child-changes.svg:
+        * svg/custom/mask-invalidation.svg:
+        * svg/custom/object-sizing-no-width-height-change-content-box-size.xhtml:
+        * svg/custom/pending-resource-after-removal-expected.png:
+        * svg/custom/pending-resource-after-removal.xhtml:
+        * svg/custom/pending-resource-leak-2.svg:
+        * svg/custom/pending-resource-leak-3.svg:
+        * svg/custom/prevent-default.svg:
+        * svg/custom/relative-sized-content-with-resources.xhtml:
+        * svg/custom/relative-sized-content.xhtml:
+        * svg/custom/relative-sized-deep-shadow-tree-content.xhtml:
+        * svg/custom/relative-sized-image.xhtml:
+        * svg/custom/relative-sized-inner-svg.xhtml:
+        * svg/custom/relative-sized-shadow-tree-content-with-symbol.xhtml:
+        * svg/custom/relative-sized-shadow-tree-content.xhtml:
+        * svg/custom/relative-sized-use-on-symbol.xhtml:
+        * svg/custom/relative-sized-use-without-attributes-on-symbol.xhtml:
+        * svg/custom/repaint-moving-svg-and-div.xhtml:
+        * svg/custom/repaint-on-constant-size-change.svg:
+        * svg/custom/repaint-on-image-bounds-change.svg:
+        * svg/custom/repaint-shadow.svg:
+        * svg/custom/repaint-stroke-width-changes.svg:
+        * svg/custom/resource-client-removal.svg:
+        * svg/custom/resource-invalidate-on-target-update.svg:
+        * svg/custom/resources/use-instanceRoot-event-bubbling.js:
+        (repaintTest):
+        * svg/custom/resources/use-instanceRoot-event-listeners.js:
+        (repaintTest):
+        * svg/custom/scroll-hit-test.xhtml:
+        * svg/custom/scroll-to-anchor-in-symbol.svg:
+        * svg/custom/scrolling-embedded-svg-file-image-repaint-problem.html:
+        * svg/custom/stroke-opacity-update.svg:
+        * svg/custom/svg-absolute-children.svg:
+        * svg/custom/svg-disallowed-in-dashboard-object.html:
+        * svg/custom/svg-fonts-in-html-linebreaks.html:
+        * svg/custom/text-dom-removal.svg:
+        * svg/custom/text-repaint-including-stroke.svg:
+        * svg/custom/text-xy-updates-SVGList.xhtml:
+        * svg/custom/use-animation-in-fill.html:
+        * svg/custom/use-clipped-hit.svg:
+        * svg/custom/use-crash-in-non-wellformed-document.svg:
+        * svg/custom/use-crash-when-href-change.svg:
+        * svg/custom/use-detach.svg:
+        * svg/custom/use-disappears-after-style-update.svg:
+        * svg/custom/use-elementInstance-event-target.svg:
+        * svg/custom/use-elementInstance-methods.svg:
+        * svg/custom/use-event-handler-on-referenced-element.svg:
+        * svg/custom/use-event-handler-on-use-element.svg:
+        * svg/custom/use-inherit-style.svg:
+        * svg/custom/use-instanceRoot-as-event-target.xhtml:
+        * svg/custom/use-instanceRoot-event-bubbling.xhtml:
+        * svg/custom/use-instanceRoot-event-listeners.xhtml:
+        * svg/custom/use-multiple-on-nested-disallowed-font.html:
+        * svg/custom/use-setAttribute-crash.svg:
+
+2012-02-09  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK baselines for new tests.
+
+        * platform/gtk/fast/line-grid/line-grid-contains-value-expected.txt: Added.
+        * platform/gtk/fast/line-grid/line-grid-into-columns-expected.txt: Added.
+        * platform/gtk/svg/clip-path/clip-in-clip-expected.txt: Added.
+        * platform/gtk/svg/clip-path/clip-path-tspan-and-stroke-expected.txt: Added.
+        * platform/gtk/svg/clip-path/clipper-placement-issue-expected.txt: Added.
+        * platform/gtk/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-change-target-id-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-filterUnits-objectBoundingBox-primitiveUnits-objectBoundingBox-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-filterUnits-objectBoundingBox-primitiveUnits-userSpaceOnUse-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-objectBoundingBox-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-userSpaceOnUse-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-late-indirect-update-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-multiple-targets-id-change-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-position-expected.txt: Added.
+        * platform/gtk/svg/filters/feImage-remove-target-expected.txt: Added.
+        * platform/gtk/svg/filters/feImage-subregions-expected.txt: Added.
+        * platform/gtk/svg/filters/feImage-subregions-preseveAspectRatio-none-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-subregions-preseveAspectRatio-none-with-viewBox-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-add-to-document-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-attribute-change-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-changes-id-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-id-change-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-inline-style-change-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-property-change-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-reappend-to-document-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-remove-from-document-expected.txt: \
Added. +        * platform/gtk/svg/filters/feImage-target-style-change-expected.txt: \
Added. +        * platform/gtk/svg/filters/filter-placement-issue-expected.txt: \
Added. +        * platform/gtk/svg/stroke/zero-length-path-linecap-rendering-expected.txt: \
Added. +        * platform/gtk/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: \
Added. +        * platform/gtk/svg/wicd/sizing-flakiness-expected.txt: Added.
+
+2012-02-09  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, add chromium expectations for new tests added in r107160.
+
+        * platform/chromium-linux/fast/line-grid/line-grid-inside-columns-expected.png:
 +        * platform/chromium-linux/fast/line-grid/line-grid-into-columns-expected.png: \
Added. +        * platform/chromium-mac-leopard/fast/line-grid/line-grid-into-columns-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/line-grid/line-grid-into-columns-expected.png: \
Added. +        * platform/chromium-win/fast/line-grid/line-grid-inside-columns-expected.png:
 +        * platform/chromium-win/fast/line-grid/line-grid-inside-columns-expected.txt:
 +        * platform/chromium-win/fast/line-grid/line-grid-into-columns-expected.png: \
Added. +        * platform/chromium-win/fast/line-grid/line-grid-into-columns-expected.txt: \
Added. +
+2012-02-09  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        Disable adding a shadow root to elements having a dynamic built-in shadow \
root. +        https://bugs.webkit.org/show_bug.cgi?id=77935
+
+        Reviewed by Hajime Morita.
+
+        * fast/dom/shadow/shadow-disable-expected.txt: Added.
+        * fast/dom/shadow/shadow-disable.html: Added.
+        * platform/efl/Skipped:
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * platform/wincairo/Skipped:
+
+2012-02-08  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: hovering over element with :hover style halts inspector
+        https://bugs.webkit.org/show_bug.cgi?id=78086
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/styles/updates-throttled-expected.txt: Added.
+        * inspector/styles/updates-throttled.html: Added.
+
+2012-02-09  Matt Falkenhagen  &lt;falken@chromium.org&gt;
+
+        Improve http-equiv content-language parsing
+        https://bugs.webkit.org/show_bug.cgi?id=77724
+
+        Reviewed by Alexey Proskuryakov.
+
+        Add tests for mapping http-equiv content-language to -webkit-locale to cover \
dynamic changes to the meta +        element and a comma-separated list of languages. \
The desired behavior of some of these is not yet decided, so +        some of the \
tests currently fail and the expectations may change. See comments in bug and in the \
tests. +
+        * fast/text/content-language-comma-separated-list-expected.txt: Added.
+        * fast/text/content-language-comma-separated-list.html: Added.
+        * fast/text/content-language-dynamically-added-expected.txt: Added.
+        * fast/text/content-language-dynamically-added.html: Added.
+        * fast/text/content-language-dynamically-changed-expected.txt: Added.
+        * fast/text/content-language-dynamically-changed.html: Added.
+        * fast/text/content-language-dynamically-removed-expected.txt: Added.
+        * fast/text/content-language-dynamically-removed.html: Added.
+        * fast/text/content-language-multiple.html: Fix to actually test http-equiv \
content-language. +
+2012-02-09  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, gardening, remove stale chromium expectations for \
synthetic-bold-transformed. +
+        * platform/chromium-linux/fast/text/synthetic-bold-transformed-expected.png: \
Removed. +        * platform/chromium-mac-snowleopard/fast/text/synthetic-bold-transformed-expected.png: \
Removed. +        * platform/chromium-win/fast/text/synthetic-bold-transformed-expected.png: \
Removed. +
+2012-02-09  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        Unreviewed test_expectations change.
+
+        [chromium] remove expectation for \
css3/calc/block-mask-overlay-image-outset.html +        \
https://bugs.webkit.org/show_bug.cgi?id=78183 +
+        http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=css3%2Fcalc%2Fblock-mask-overlay
 +        shows this test has not failed as far back as its history is recorded.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-08  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline.
+
+        * platform/gtk/fast/dom/constructed-objects-prototypes-expected.txt:
+        * platform/gtk/fast/forms/select-overflow-scroll-expected.txt:
+        * platform/gtk/fast/forms/select-overflow-scroll-inherited-expected.txt:
+        * platform/gtk/fast/line-grid/line-grid-inside-columns-expected.txt:
+
+2012-02-07  MORITA Hajime  &lt;morrita@google.com&gt;
+
+        Replacement text should be available from the marker.
+        https://bugs.webkit.org/show_bug.cgi?id=77934
+
+        Reviewed by Kent Tamura.
+
+        * editing/spelling/spelling-marker-description-expected.txt: Added.
+        * editing/spelling/spelling-marker-description.html: Added.
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+
+2012-02-08  Igor Oliveira  &lt;igor.o@sisa.samsung.com&gt;
+
+        Implement reverse animation direction
+        https://bugs.webkit.org/show_bug.cgi?id=60525
+
+        Add test for the new animation-direction values.
+
+        Reviewed by Dean Jackson.
+
+        * animations/animation-direction-alternate-reverse-expected.txt: Added.
+        * animations/animation-direction-alternate-reverse.html: Added.
+        * animations/animation-direction-reverse-expected.txt: Added.
+        * animations/animation-direction-reverse.html: Added.
+        * animations/fill-mode-reverse-expected.txt: Added.
+        * animations/fill-mode-reverse.html: Added.
+
+2012-02-08  David Hyatt  &lt;hyatt@apple.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=78157
+        
+        Make multi-column layout work with line grids that are outside of the \
multi-column +        block.
+ 
+        Reviewed by Dan Bernstein.
+
+        * fast/line-grid/line-grid-into-columns.html: Added.
+        * platform/mac/fast/line-grid/line-grid-into-columns-expected.png: Added.
+        * platform/mac/fast/line-grid/line-grid-into-columns-expected.txt: Added.
+
+2012-02-08  Matt Falkenhagen  &lt;falken@chromium.org&gt;
+
+        Improve http-equiv content-language parsing
+        https://bugs.webkit.org/show_bug.cgi?id=77724
+
+        Reviewed by Alexey Proskuryakov.
+
+        Add more tests for mapping http-equiv content-language to -webkit-locale. \
The desired behavior of some +        of these is not yet decided, so some of the \
tests currently fail and the expectations may change. See comments in bug and in the \
tests. +
+        * fast/text/content-language-case-insensitivity-expected.txt:
+        * fast/text/content-language-case-insensitivity.html: Style fixes.
+        * fast/text/content-language-empty-expected.txt: Added.
+        * fast/text/content-language-empty.html: Added.
+        * fast/text/content-language-late-expected.txt: Added.
+        * fast/text/content-language-late.html: Added.
+        * fast/text/content-language-mapped-to-webkit-locale-expected.txt: 
+        * fast/text/content-language-mapped-to-webkit-locale.html: Style fixes.
+        * fast/text/content-language-multiple-expected.txt: Added.
+        * fast/text/content-language-multiple.html: Added.
+        * fast/text/content-language-no-content-expected.txt: Added.
+        * fast/text/content-language-no-content.html: Added.
+        * fast/text/content-language-only-whitespace-expected.txt: Added.
+        * fast/text/content-language-only-whitespace.html: Added.
+        * fast/text/content-language-with-whitespace-expected.txt: Added.
+        * fast/text/content-language-with-whitespace.html: Added.
+
+2012-02-08  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/mac-future/svg/carto.net: Added.
+        * platform/mac-future/svg/carto.net/scrollbar-expected.png: Added.
+        * platform/mac/svg/carto.net/scrollbar-expected.png: Removed.
+        * platform/chromium-mac-leopard/svg/carto.net/scrollbar-expected.png:
+        * platform/chromium-mac-leopard/svg/carto.net/scrollbar-expected.txt: Added.
+        Updated the baseline here, thanks to the text on the button...
+
+        * platform/chromium/test_expectations.txt:
+        Marked one test as failing as some output don't make much sense.
+
+2012-02-08  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [Chromium] Fix opaque tracking for box shadows and non-composited child \
elements +        https://bugs.webkit.org/show_bug.cgi?id=78073
+
+        Reviewed by Stephen White.
+
+        * compositing/culling/scrolled-within-boxshadow-expected.png: Added.
+        * compositing/culling/scrolled-within-boxshadow-expected.txt: Added.
+        * compositing/culling/scrolled-within-boxshadow.html: Added.
+        * compositing/culling/translated-boxshadow-expected.png: Added.
+        * compositing/culling/translated-boxshadow-expected.txt: Added.
+        * compositing/culling/translated-boxshadow.html: Added.
+
+2012-02-08  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-mac-snowleopard/platform/chromium/compositing/lost-compositor-context-with-video-expected.png: \
Added. +        Updated this baseline. It looks like an opacity difference of 1 that \
we could't really explain. +
+        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug120364-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug22019-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug23151-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46480-1-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46480-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug56405-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_nowrap-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: \
Added. +        * platform/chromium/tables/mozilla/bugs/bug56405-expected.txt: \
Removed. +        Rebaselined those tests on snowleopard as we started taking up the \
new snow-leopard baselines from r107122. +
+        * platform/chromium/test_expectations.txt:
+        Mark compositing/iframes/scrolling-iframe.html as flaky as seen on a \
snow-leopard or windows (debug) bot near you. +
+2012-02-08  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-mac-leopard/svg/repaint/inner-svg-change-viewBox-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/repaint/inner-svg-change-viewBox-expected.png: \
Added. +        Add those 2 new baselines.
+
+2012-02-08  James Robinson  &lt;jamesr@chromium.org&gt;
+
+        [chromium] Add a layout test for losing the compositor context with a video \
playing +        https://bugs.webkit.org/show_bug.cgi?id=78060
+
+        Reviewed by Eric Carlson.
+
+        Adds a test to prevent regressions with video playback when we lose the \
compositor context. This test loads up a +        video, forces a frame to be \
displayed, simulates a lost context, then finishes the test (which causes another +   \
frame to be displayed). +
+        Prior to r106610 this test times out in debug and crashes in ASAN.
+
+        * platform/chromium/compositing/lost-compositor-context-with-video-expected.png: \
Added. +        * platform/chromium/compositing/lost-compositor-context-with-video-expected.txt: \
Added. +        * platform/chromium/compositing/lost-compositor-context-with-video.html: \
Added. +
+2012-02-08  Emil A Eklund  &lt;eae@chromium.org&gt;
+
+        Update pixel table test expectations for mac to match new DRT scrollbars
+        https://bugs.webkit.org/show_bug.cgi?id=76938
+
+        Rubber stamped by Eric Seidel.
+
+        * platform/mac/tables/mozilla/bugs/bug101674-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug10296-1-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug113235-1-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug113235-3-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug11944-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug120364-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug131020-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug131020_iframe-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug137388-2-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug149275-1-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug22019-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug23151-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug27038-2-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug29314-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug32205-2-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug38916-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug43039-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug43854-1-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug44505-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug46480-1-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug46480-2-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug50695-1-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug56405-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug67915-1-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug73321-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug92143-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug96334-expected.png:
+        * platform/mac/tables/mozilla/bugs/bug96343-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_td_height-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_th_height-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png:
+        * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/bugs/bug19526-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug220653-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug89315-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/core/columns-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.png:
+        * platform/mac/tables/mozilla_expected_failures/core/standards1-expected.png:
 +        * platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.png:
 +
+2012-02-08  Jonathan Backer  &lt;backer@chromium.org&gt;
+
+        [chromium] Disable root layer clears on release builds.
+        https://bugs.webkit.org/show_bug.cgi?id=77478
+
+        Reviewed by James Robinson.
+
+        * platform/chromium-gpu-linux/fast/canvas/canvas-text-alignment-expected.png:
 +        * platform/chromium-gpu-linux/media/video-zoom-expected.png:
+        * platform/chromium-linux/compositing/direct-image-compositing-expected.png:
+        * platform/chromium-linux/compositing/geometry/ancestor-overflow-change-expected.png:
 +        * platform/chromium-linux/compositing/geometry/fixed-in-composited-expected.png:
 +        * platform/chromium-linux/compositing/geometry/tall-page-composited-expected.png:
 +        * platform/chromium-linux/compositing/masks/masked-ancestor-expected.png:
+        * platform/chromium-linux/compositing/masks/multiple-masks-expected.png:
+        * platform/chromium-linux/compositing/masks/simple-composited-mask-expected.png:
 +        * platform/chromium-linux/compositing/scaling/tiled-layer-recursion-expected.png:
 +        * platform/chromium-linux/platform/chromium/compositing/layout-width-change-expected.png:
 +
+2012-02-07  Andy Estes  &lt;aestes@apple.com&gt;
+
+        REGRESSION (r102983): ClicktoFlash drawing of old style youtube embeds \
missing until resize +        https://bugs.webkit.org/show_bug.cgi?id=77167
+
+        Reviewed by Eric Seidel.
+
+        * plugins/layout-in-beforeload-listener-affects-plugin-loading-expected.txt: \
Added. +        * plugins/layout-in-beforeload-listener-affects-plugin-loading.html: \
Added. +
+2012-02-08  Cary Clark  &lt;caryclark@google.com&gt;
+
+        Unreviewed rebaselines for vertical text tests.
+        See https://bugs.webkit.org/show_bug.cgi?id=78120
+
+        * platform/chromium-mac-leopard/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png:
 +        [...]
+        * platform/chromium-mac-snowleopard/fast/writing-mode/vertical-font-fallback-expected.png: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-07  Ojan Vafai  &lt;ojan@chromium.org&gt;
+
+        Floated flexboxes render as regular RenderBlocks
+        https://bugs.webkit.org/show_bug.cgi?id=77909
+
+        Reviewed by Eric Seidel.
+
+        * css3/flexbox/floated-flexbox-expected.txt: Added.
+        * css3/flexbox/floated-flexbox.html: Added.
+
+2012-02-08  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-linux/fast/line-grid/line-grid-contains-value-expected.txt: \
Removed. +        * platform/chromium-mac-leopard/fast/line-grid/line-grid-contains-value-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/line-grid/line-grid-contains-value-expected.png: \
Added. +        * platform/chromium-win/fast/line-grid/line-grid-contains-value-expected.png: \
Added. +        * platform/chromium-win/fast/line-grid/line-grid-contains-value-expected.txt: \
Added. +        More rebaseline of those (I pulled the trigger too early).
+
+        * platform/chromium/rubberbanding/custom-scrollbars-ne-expected.png:
+        * platform/chromium/rubberbanding/custom-scrollbars-nw-expected.png:
+        * platform/chromium/rubberbanding/custom-scrollbars-se-expected.png:
+        * platform/chromium/rubberbanding/custom-scrollbars-sw-expected.png:
+        Update the expected files. I don't know how we ended up with a blue color \
when the html specifies +        an orange.
+
+        * platform/chromium/test_expectations.txt:
+        Mark a test as timing out as it has been raising an exception on the bots \
fairly regularly. +
+2012-02-08  Dirk Schulze  &lt;krit@webkit.org&gt;
+
+        viewBox on nested SVG causes wrong content size for relative values
+        https://bugs.webkit.org/show_bug.cgi?id=69459
+
+        Reviewed by Nikolas.
+
+        Test relayout of content of inner SVG on change of relative length values.
+
+        * svg/repaint/inner-svg-change-viewBox-expected.png: Added.
+        * svg/repaint/inner-svg-change-viewBox-expected.txt: Added.
+        * svg/repaint/inner-svg-change-viewBox.svg: Added.
+
+2012-02-08  Gregg Tavares  &lt;gman@chromium.org&gt;
+
+        Implement new WEBGL compressed texture extensions
+        https://bugs.webkit.org/show_bug.cgi?id=77066
+
+        Reviewed by Kenneth Russell.
+
+        * fast/canvas/webgl/constants.html:
+        * fast/canvas/webgl/gl-get-calls-expected.txt:
+        * fast/canvas/webgl/gl-get-calls.html:
+
+2012-02-08  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] svg/zoom/page/zoom-coords-viewattr-01-b.svg fails
+        https://bugs.webkit.org/show_bug.cgi?id=78128
+
+        * platform/qt/Skipped: Skip it until fix.
+
+2012-02-08  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed morning gardening.
+
+        * platform/chromium-linux/fast/line-grid/line-grid-contains-value-expected.png: \
Added. +        * platform/chromium-linux/fast/line-grid/line-grid-contains-value-expected.txt: \
Added. +        Rebaselined this file (font difference).
+
+        * platform/chromium/test_expectations.txt: Marked one test as SLOW on \
Window. +
+2012-02-08  David Hyatt  &lt;hyatt@apple.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=78122
+        
+        Add a new test that shows the &quot;contains&quot; value in action.
+
+        Reviewed by Adam Roben.
+
+        * fast/line-grid/line-grid-contains-value.html: Added.
+        * platform/mac/fast/line-grid/line-grid-contains-value-expected.png: Added.
+        * platform/mac/fast/line-grid/line-grid-contains-value-expected.txt: Added.
+
+2012-02-08  Dan Bernstein  &lt;mitz@apple.com&gt;
+
+        Moved a Mac-specific test to platform/mac.
+
+        * fast/text/synthetic-bold-transformed-expected.html: Removed.
+        * fast/text/synthetic-bold-transformed.html: Removed.
+        * platform/mac/fast/text/synthetic-bold-transformed-expected.html: Copied \
from fast/text/synthetic-bold-transformed-expected.html. +        * \
platform/mac/fast/text/synthetic-bold-transformed.html: Copied from \
fast/text/synthetic-bold-transformed.html. +
+2012-02-08  Alexei Svitkine  &lt;asvitkine@chromium.org&gt;
+
+        Chromium: Fix Mac rubber band overhang drawing on composited pages and \
re-enable tests. +        https://bugs.webkit.org/show_bug.cgi?id=78007
+
+        This got broken by: http://trac.webkit.org/changeset/105470
+        And the tests were accidentally(?) disabled in: \
http://trac.webkit.org/changeset/95191 +
+        There is still three tests that fail from the set, but the cause for these \
is different, +        which I'm still investigating.
+
+        Reviewed by James Robinson.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-08  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: bind entire subtree upon childNodeInserted so that text node \
were accounted. +        https://bugs.webkit.org/show_bug.cgi?id=78116
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/elements/insert-node-expected.txt:
+        * inspector/elements/insert-node.html:
+
+2012-02-08  Michael Brüning  &lt;michael.bruning@nokia.com&gt;
+
+        [Qt][WK2] Compute and set cache capacities using the current CacheModel
+        https://bugs.webkit.org/show_bug.cgi?id=73918
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * platform/qt-wk2/Skipped: Unskip tests skipped for regression from r106920.
+
+2012-02-08  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, add chromium expectations for fast/forms/select-overflow-scroll* \
tests. +
+        * platform/chromium-linux/fast/forms/select-overflow-scroll-expected.png: \
Added. +        * platform/chromium-linux/fast/forms/select-overflow-scroll-expected.txt: \
Added. +        * platform/chromium-linux/fast/forms/select-overflow-scroll-inherited-expected.png: \
Added. +        * platform/chromium-linux/fast/forms/select-overflow-scroll-inherited-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/forms/select-overflow-scroll-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/forms/select-overflow-scroll-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/forms/select-overflow-scroll-inherited-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/fast/forms/select-overflow-scroll-inherited-expected.txt: \
Added. +        * platform/chromium-win/fast/forms/select-overflow-scroll-expected.png: \
Added. +        * platform/chromium-win/fast/forms/select-overflow-scroll-expected.txt: \
Added. +        * platform/chromium-win/fast/forms/select-overflow-scroll-inherited-expected.png: \
Added. +        * platform/chromium-win/fast/forms/select-overflow-scroll-inherited-expected.txt: \
Added. +
+2012-02-08  Kaustubh Atrawalkar  &lt;kaustubh@motorola.com&gt;
+
+        Migrate createObjectURL &amp; revokeObjectURL to static (Class) methods.
+        https://bugs.webkit.org/show_bug.cgi?id=74386
+
+        Reviewed by Kentaro Hara.
+
+        Added test to check if createObjectURL &amp; revokeObjectURL are static \
functions. +
+        * fast/dom/DOMURL/check-instanceof-domurl-functions-expected.txt: Added.
+        * fast/dom/DOMURL/check-instanceof-domurl-functions.html: Added.
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt: GTK \
Rebaseline. +        * platform/gtk/fast/js/global-constructors-expected.txt: ditto.
+        * platform/qt/fast/dom/constructed-objects-prototypes-expected.txt: Qt \
Rebaseline. +        * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: \
ditto. +        * platform/qt/fast/js/global-constructors-expected.txt: ditto.
+
+2012-02-08  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, chromium expectations update: mark \
repaint-on-image-bounds-change.svg as IMAGE+TEXT IMAGE. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-08  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, update chromium svg expectations after r107067.
+
+        * platform/chromium-linux/svg/filters/feImage-late-indirect-update-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-animated-transform-on-target-rect-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-change-target-id-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-late-indirect-update-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-multiple-targets-id-change-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-remove-target-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-target-attribute-change-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-target-inline-style-change-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-target-property-change-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/feImage-target-style-change-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-animated-transform-on-target-rect-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-late-indirect-update-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-multiple-targets-id-change-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-target-attribute-change-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-target-inline-style-change-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-target-property-change-expected.png: \
Added. +        * platform/chromium-win/svg/filters/feImage-target-style-change-expected.png: \
Added. +
+2012-02-08  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, repaint-on-image-bounds-change.svg still has wrong image in \
chromium. +        https://bugs.webkit.org/show_bug.cgi?id=78084
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-08  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline and skipping 2 new failing tests.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+
+2012-02-08  Ádám Kallai  &lt;Kallai.Adam@stud.u-szeged.hu&gt;
+
+        [Qt] New http/tests/security/ introduced r107046 fail
+        https://bugs.webkit.org/show_bug.cgi?id=78093
+
+        Unskip these tests and rebaselines for Qt and GTK.
+
+        Reviewed by Csaba Osztrogonác.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/http/tests/security/cross-frame-access-put-expected.txt:
+        * platform/qt/Skipped:
+        * platform/qt/http/tests/security/cross-frame-access-put-expected.txt:
+
+2012-02-08  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening after r107057. Update Qt specific expected \
results. +
+        * platform/qt/svg/custom/SVGPoint-matrixTransform-expected.png:
+        * platform/qt/svg/custom/SVGPoint-matrixTransform-expected.txt:
+        * platform/qt/svg/custom/getTransformToElement-expected.png:
+        * platform/qt/svg/custom/getTransformToElement-expected.txt:
+        * platform/qt/svg/custom/pointer-events-text-css-transform-expected.png:
+        * platform/qt/svg/custom/pointer-events-text-css-transform-expected.txt:
+        * platform/qt/svg/custom/polyline-setattribute-points-null-expected.png:
+        * platform/qt/svg/custom/polyline-setattribute-points-null-expected.txt:
+        * platform/qt/svg/custom/text-ctm-expected.png:
+        * platform/qt/svg/custom/text-ctm-expected.txt:
+        * platform/qt/svg/custom/text-hit-test-expected.png:
+        * platform/qt/svg/custom/text-hit-test-expected.txt:
+
+2012-02-08  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Rebaseline Gtk/SVG results.
+
+        * platform/gtk/svg/carto.net/scrollbar-expected.txt:
+        * platform/gtk/svg/custom/polyline-setattribute-points-null-expected.txt:
+
+2012-02-08  Antaryami Pandia  &lt;antaryami.pandia@motorola.com&gt;
+
+        CSS2 overflow: scrollbar not visible on SELECT elements when overflow: \
scroll is set. +        https://bugs.webkit.org/show_bug.cgi?id=69993
+
+        Reviewed by Simon Fraser.
+
+        * fast/css/getComputedStyle/computed-style-select-overflow-expected.txt: \
Added. +        * fast/css/getComputedStyle/computed-style-select-overflow.html: \
Added. +        * fast/forms/select-overflow-scroll-inherited.html: Added.
+        * fast/forms/select-overflow-scroll.html: Added.
+        * platform/gtk/fast/forms/select-overflow-scroll-expected.txt: Added.
+        * platform/gtk/fast/forms/select-overflow-scroll-inherited-expected.txt: \
Added. +
+2012-02-08  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Rebaseline Qt/SVG results.
+
+        * platform/qt/svg/custom/SVGPoint-matrixTransform-expected.txt:
+        * platform/qt/svg/custom/getTransformToElement-expected.txt:
+        * platform/qt/svg/custom/pointer-events-text-css-transform-expected.txt:
+        * platform/qt/svg/custom/polyline-setattribute-points-null-expected.txt:
+        * platform/qt/svg/custom/text-ctm-expected.txt:
+        * platform/qt/svg/custom/text-hit-test-expected.txt:
+
+2012-02-08  Kentaro Hara  &lt;haraken@chromium.org&gt;
+
+        Unreviewed. Rebaselined the test that has been failing since r107046.
+
+        * http/tests/security/cross-frame-access-put-expected.txt:
+
+2012-02-08  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        feImage doesn't invalidate when its target SVG element is animated
+        https://bugs.webkit.org/show_bug.cgi?id=73860
+
+        Reviewed by Dirk Schulze.
+
+        Add lots of new testcases covering &lt;feImage&gt; invalidation, when the \
referenced target changes. +        Thanks to the repaint harness, it uncovered a bug \
with feImage-late-indirect-update.svg - there no gray +        overlay rects are \
visible, as the whole screen gets repainted, which is a bug! +
+        * platform/mac/svg/filters/feImage-animated-transform-on-target-rect-expected.png: \
Added. +        * platform/mac/svg/filters/feImage-change-target-id-expected.png: \
Added. +        * platform/mac/svg/filters/feImage-change-target-id-expected.txt: \
Added. +        * platform/mac/svg/filters/feImage-late-indirect-update-expected.png: \
Added. +        * platform/mac/svg/filters/feImage-late-indirect-update-expected.txt: \
Added. +        * platform/mac/svg/filters/feImage-multiple-targets-id-change-expected.png: \
Added. +        * platform/mac/svg/filters/feImage-multiple-targets-id-change-expected.txt: \
Added. +        * platform/mac/svg/filters/feImage-remove-target-expected.png: Added.
+        * platform/mac/svg/filters/feImage-remove-target-expected.txt: Added.
+        * platform/mac/svg/filters/feImage-target-add-to-document-expected.png: \
Renamed from LayoutTests/svg/filters/feImage-target-add-to-document-expected.png. +   \
* platform/mac/svg/filters/feImage-target-add-to-document-expected.txt: Copied from \
LayoutTests/svg/filters/feImage-target-add-to-document-expected.txt. +        * \
platform/mac/svg/filters/feImage-target-attribute-change-expected.png: Added. +       \
* platform/mac/svg/filters/feImage-target-attribute-change-expected.txt: Copied from \
LayoutTests/svg/filters/feImage-target-changes-id-expected.txt. +        * \
platform/mac/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.png: \
Added. +        * platform/mac/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.txt: \
Added. +        * platform/mac/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.png: \
Added. +        * platform/mac/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.txt: \
Added. +        * platform/mac/svg/filters/feImage-target-changes-id-expected.png: \
Renamed from LayoutTests/svg/filters/feImage-target-changes-id-expected.png. +        \
* platform/mac/svg/filters/feImage-target-changes-id-expected.txt: Copied from \
LayoutTests/svg/filters/feImage-target-changes-id-expected.txt. +        * \
platform/mac/svg/filters/feImage-target-id-change-expected.png: Renamed from \
LayoutTests/svg/filters/feImage-target-id-change-expected.png. +        * \
platform/mac/svg/filters/feImage-target-id-change-expected.txt: Renamed from \
LayoutTests/svg/filters/feImage-target-id-change-expected.txt. +        * \
platform/mac/svg/filters/feImage-target-inline-style-change-expected.png: Added. +    \
* platform/mac/svg/filters/feImage-target-inline-style-change-expected.txt: Copied \
from LayoutTests/svg/filters/feImage-target-changes-id-expected.txt. +        * \
platform/mac/svg/filters/feImage-target-property-change-expected.png: Added. +        \
* platform/mac/svg/filters/feImage-target-property-change-expected.txt: Copied from \
LayoutTests/svg/filters/feImage-target-changes-id-expected.txt. +        * \
platform/mac/svg/filters/feImage-target-reappend-to-document-expected.png: Renamed \
from LayoutTests/svg/filters/feImage-target-reappend-to-document-expected.png. +      \
* platform/mac/svg/filters/feImage-target-reappend-to-document-expected.txt: Renamed \
from LayoutTests/svg/filters/feImage-target-reappend-to-document-expected.txt. +      \
* platform/mac/svg/filters/feImage-target-remove-from-document-expected.png: Renamed \
from LayoutTests/svg/filters/feImage-target-remove-from-document-expected.png. +      \
* platform/mac/svg/filters/feImage-target-remove-from-document-expected.txt: Renamed \
from LayoutTests/svg/filters/feImage-target-remove-from-document-expected.txt. +      \
* platform/mac/svg/filters/feImage-target-style-change-expected.png: Added. +        \
* platform/mac/svg/filters/feImage-target-style-change-expected.txt: Renamed from \
LayoutTests/svg/filters/feImage-target-changes-id-expected.txt. +        * \
svg/filters/feImage-animated-transform-on-target-rect-expected.txt: Added. +        * \
svg/filters/feImage-animated-transform-on-target-rect.svg: Added. +        * \
svg/filters/feImage-change-target-id.svg: Added. +        * \
svg/filters/feImage-late-indirect-update.svg: Added. +        * \
svg/filters/feImage-multiple-targets-id-change.svg: Added. +        * \
svg/filters/feImage-remove-target.svg: Added. +        * \
svg/filters/feImage-target-attribute-change-with-use-indirection-2.svg: Added. +      \
* svg/filters/feImage-target-attribute-change-with-use-indirection.svg: Added. +      \
* svg/filters/feImage-target-attribute-change.svg: Added. +        * \
svg/filters/feImage-target-inline-style-change.svg: Added. +        * \
svg/filters/feImage-target-property-change.svg: Added. +        * \
svg/filters/feImage-target-style-change.svg: Added. +
+2012-02-08  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening. Unskip now passing tests, skip failing tests and \
one update. +
+        * platform/qt/Skipped:
+        * platform/qt/fast/dom/Window/window-properties-expected.txt:
+
+2012-02-08  Kentaro Hara  &lt;haraken@chromium.org&gt;
+
+        Unreviewed. Skip http/tests/security/cross-frame-access-put.html in qt and \
gtk. +        The test needs rebaselining.
+
+        * platform/gtk/Skipped:
+        * platform/qt/Skipped:
+
+2012-02-08  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: Touch event emulation fails for iframes
+        https://bugs.webkit.org/show_bug.cgi?id=77987
+
+        Reviewed by Pavel Feldman.
+
+        * fast/events/touch/emulated-touch-iframe-expected.txt: Added.
+        * fast/events/touch/emulated-touch-iframe.html: Added.
+        * fast/events/touch/resources/emulated-touch-iframe2.html: Added.
+
+2012-02-08  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        [Qt] REGRESSION(r106918): It made svg/zoom/page/zoom-foreignObject.svg crash \
with Qt5-WK1 +        https://bugs.webkit.org/show_bug.cgi?id=77995
+
+        Reviewed by Csaba Osztrogonác.
+
+        * platform/qt/Skipped: Unskip previously skipped tests.
+
+2012-02-08  Pablo Flouret  &lt;pablof@motorola.com&gt;
+
+        Add state attribute to history's dom interface.
+        https://bugs.webkit.org/show_bug.cgi?id=76035
+
+        Reviewed by Kentaro Hara.
+
+        * fast/dom/Window/window-appendages-cleared-expected.txt:
+        * fast/loader/stateobjects/state-attribute-object-types-expected.txt: Added.
+        * fast/loader/stateobjects/state-attribute-object-types.html: Added.
+        * fast/loader/stateobjects/state-attribute-only-one-deserialization-expected.txt: \
Added. +        * fast/loader/stateobjects/state-attribute-only-one-deserialization.html: \
Added. +
+2012-02-08  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        SVGLoad event fires too early
+        https://bugs.webkit.org/show_bug.cgi?id=78084
+
+        Reviewed by Hajime Morita.
+
+        Remove runSVGRepaintTest() from repaint.js again, and convert all *.svg \
tests to use runRepaintTest() directly. +        This is now possible as the \
outermost &lt;svg&gt; elements load event timing as aligned with HTML. +
+        * fast/repaint/resources/repaint.js: Remove runSVGRepaintTest(), it's no \
longer needed. +        (runRepaintTest): \
s/document.rootElement/document.documentElement/ to make it work for all HTML/XHTML \
and SVG documents (XHTML was broken). +        * \
platform/chromium/test_expectations.txt: +        * \
platform/mac/svg/custom/SVGPoint-matrixTransform-expected.png: +        * \
platform/mac/svg/custom/SVGPoint-matrixTransform-expected.txt: +        * \
platform/mac/svg/custom/getTransformToElement-expected.png: +        * \
platform/mac/svg/custom/getTransformToElement-expected.txt: +        * \
platform/mac/svg/custom/polyline-setattribute-points-null-expected.png: +        * \
platform/mac/svg/custom/polyline-setattribute-points-null-expected.txt: +        * \
platform/mac/svg/custom/text-ctm-expected.png: +        * \
platform/mac/svg/custom/text-ctm-expected.txt: +        * \
platform/mac/svg/custom/text-hit-test-expected.png: +        * \
platform/mac/svg/custom/text-hit-test-expected.txt: +        * \
platform/mac/svg/filters/filter-refresh-expected.png: +        * \
svg/carto.net/tabgroup.svg: +        * svg/carto.net/window.svg:
+        * svg/css/shadow-changes.svg:
+        * svg/custom/loadevents-externalresourcesrequired.svg:
+        * svg/dom/SVGPathSegList-segment-modification.svg:
+        * svg/dom/SVGPathSegList-xml-dom-synchronization2.xhtml:
+        * svg/dom/SVGRectElement/rect-modify-rx.svg:
+        * svg/filters/animate-fill.svg:
+        * svg/filters/feImage-reference-invalidation.svg:
+        * svg/filters/feImage-target-add-to-document.svg:
+        * svg/filters/feImage-target-changes-id.svg:
+        * svg/filters/feImage-target-id-change.svg:
+        * svg/filters/feImage-target-reappend-to-document.svg:
+        * svg/filters/feImage-target-remove-from-document.svg:
+        * svg/filters/filter-refresh.svg:
+        * svg/filters/filter-width-update.svg:
+        * svg/filters/invalidate-on-child-layout.svg:
+        * svg/hixie/perf/001.xml:
+        * svg/hixie/perf/002.xml:
+        * svg/hixie/perf/003.xml:
+        * svg/hixie/perf/004.xml:
+        * svg/hixie/perf/005.xml:
+        * svg/hixie/perf/006.xml:
+        * svg/hixie/perf/007.xml:
+        * svg/repaint/container-repaint.svg:
+        * svg/repaint/filter-child-repaint.svg:
+        * svg/repaint/image-href-change.svg:
+        * svg/repaint/image-with-clip-path.svg:
+        * svg/text/text-text-05-t.svg:
+        * svg/zoom/page/absolute-sized-document-no-scrollbars.svg:
+        * svg/zoom/page/absolute-sized-document-scrollbars.svg:
+        * svg/zoom/page/relative-sized-document-scrollbars.svg:
+        * svg/zoom/page/zoom-coords-viewattr-01-b.svg:
+        * svg/zoom/page/zoom-foreignObject.svg:
+        * svg/zoom/page/zoom-mask-with-percentages.svg:
+        * svg/zoom/resources/testPageZoom.js:
+        (repaintTest):
+        * svg/zoom/text/absolute-sized-document-no-scrollbars.svg:
+        * svg/zoom/text/absolute-sized-document-scrollbars.svg:
+        * svg/zoom/text/relative-sized-document-scrollbars.svg:
+        * svg/zoom/text/zoom-coords-viewattr-01-b.svg:
+        * svg/zoom/text/zoom-foreignObject.svg:
+
+2012-02-07  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: Closed computed style sidebar pane rebuilds, resulting in \
slowness +        https://bugs.webkit.org/show_bug.cgi?id=77865
+
+        Reviewed by Pavel Feldman.
+
+        * http/tests/inspector/elements-test.js:
+        (initialize_ElementTest.InspectorTest.selectNodeAndWaitForStylesWithComputed.stylesCallback):
 +        (initialize_ElementTest.InspectorTest.selectNodeAndWaitForStylesWithComputed):
 +        * inspector/elements/elements-panel-styles.html:
+        * inspector/styles/css-live-edit.html:
+        * inspector/styles/lazy-computed-style-expected.txt: Added.
+        * inspector/styles/lazy-computed-style.html: Added.
+        * inspector/styles/styles-computed-trace.html:
+
+2012-02-08  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Unreviewed gardening after r106982.
+        Skip a new test because of missing AuthenticationChallenges support.
+
+        * platform/qt/Skipped:
+        * platform/wk2/Skipped:
+
+2012-02-08  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        Stop calling Element::ensureShadowRoot() if it is used in construction \
phase. +        https://bugs.webkit.org/show_bug.cgi?id=77929
+
+        Reviewed by Hajime Morita.
+
+        ShadowRoot's life cycle can be consufing If Element::ensureShadowRoot() is \
used. +        So we want to remove Element::ensureShadowRoot().
+        This patch replaces Element::ensureShadowRoot() if it is used in object \
construction phase. +
+        No new tests, no change in behavior.
+
+        * html/HTMLDetailsElement.cpp:
+        (WebCore::HTMLDetailsElement::createShadowSubtree):
+        * html/HTMLKeygenElement.cpp:
+        (WebCore::HTMLKeygenElement::HTMLKeygenElement):
+        * html/HTMLMeterElement.cpp:
+        (WebCore::HTMLMeterElement::createShadowSubtree):
+        * html/HTMLProgressElement.cpp:
+        (WebCore::HTMLProgressElement::createShadowSubtree):
+        * html/HTMLSummaryElement.cpp:
+        (WebCore::HTMLSummaryElement::createShadowSubtree):
+        * html/HTMLTextAreaElement.cpp:
+        (WebCore::HTMLTextAreaElement::createShadowSubtree):
+
+2012-02-08  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Add missing results for a new SVG test.
+
+        * platform/mac/svg/custom/use-disappears-after-style-update-expected.png: \
Added. +        * platform/mac/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +
+2012-02-08  Pavel Podivilov  &lt;podivilov@chromium.org&gt;
+
+        Unreviewed, remove deleted touch-gesture-scroll.html test from \
test_expectations.txt. +
+        * platform/chromium/test_expectations.txt:
+
+2012-02-08  Dominic Mazzoni  &lt;dmazzoni@google.com&gt;
+
+        Unreviewed, skipping test that times out or crashes on most platforms.
+        https://bugs.webkit.org/show_bug.cgi?id=73912
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-08  Kentaro Hara  &lt;haraken@chromium.org&gt;
+
+        Replace [CheckNodeSecurity] with [CheckAccessToNode]
+        https://bugs.webkit.org/show_bug.cgi?id=77971
+
+        Reviewed by Adam Barth.
+
+        The added test checks if frameElement is accessible from the same or cross \
origin iframe. +
+        * http/tests/security/cross-frame-access-frameelement-expected.txt: Added.
+        * http/tests/security/cross-frame-access-frameelement.html: Added.
+        * http/tests/security/resources/cross-frame-access-frameelement-from-iframe.html: \
Added. +        * platform/chromium/http/tests/security/cross-frame-access-put-expected.txt: \
Updated the test result. +
+2012-02-07  Robert Kroeger  &lt;rjkroege@chromium.org&gt;
+
+        [chromium] Remove unnecessary Chromium gesture recognizer tests.
+        https://bugs.webkit.org/show_bug.cgi?id=77492
+
+        Reviewed by Adam Barth.
+
+        * fast/events/touch/page-scaled-touch-gesture-click-expected.txt:
+        * fast/events/touch/page-scaled-touch-gesture-click.html:
+        * fast/events/touch/touch-gesture-click-expected.txt: Removed.
+        * fast/events/touch/touch-gesture-click.html: Removed.
+        * fast/events/touch/touch-gesture-scroll-expected.txt: Removed.
+        * fast/events/touch/touch-gesture-scroll.html: Removed.
+        * platform/chromium/fast/events/touch/touch-gesture-click-expected.txt: \
Removed. +        * platform/chromium/fast/events/touch/touch-gesture-scroll-expected.txt: \
Removed. +
+2012-02-07  Erik Arvidsson  &lt;arv@chromium.org&gt;
+
+        [V8] Allow bindings for attributes on DOM nodes to also set a named hidden \
reference +        https://bugs.webkit.org/show_bug.cgi?id=78052
+
+        Reviewed by Nate Chapin.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-07  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        Add / update the baselines for fast/text/synthetic-bold-transformed.html and \
svg/custom/use-disappears-after-style-update.svg. +
+        * platform/chromium-linux-x86/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +        * platform/chromium-linux/fast/text/synthetic-bold-transformed-expected.png: \
Added. +        * platform/chromium-linux/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/fast/text/synthetic-bold-transformed-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.png: \
Added. +        * platform/chromium-win-vista/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +        * platform/chromium-win-xp/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +        * platform/chromium-win/fast/text/synthetic-bold-transformed-expected.png: \
Added. +        * platform/chromium-win/svg/custom/use-disappears-after-style-update-expected.png: \
Added. +        * platform/chromium-win/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +
+2012-02-07  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        CSS3 calc() - simple parse time evaluation
+        https://bugs.webkit.org/show_bug.cgi?id=77960
+
+        Reviewed by Ojan Vafai.
+
+        * css3/calc/color-hsl-expected.txt:
+        * css3/calc/color-rgb-expected.txt:
+
+2012-02-07  Chris Palmer  &lt;palmer@google.com&gt;
+
+        Resolve crash in FrameLoader::checkTimerFired.
+        https://bugs.webkit.org/show_bug.cgi?id=77907
+
+        Reviewed by Eric Seidel.
+
+        * http/tests/appcache/deferred-events-delete-while-raising-timer-expected.txt: \
Added. +        * http/tests/appcache/deferred-events-delete-while-raising-timer.html: \
Added. +        * http/tests/appcache/resources/deferred-events-delete-while-raising-timer-1.html: \
Added. +        * http/tests/appcache/resources/deferred-events-delete-while-raising-timer-2.html: \
Added. +
+2012-02-07  David Barton  &lt;dbarton@mathscribe.com&gt;
+
+        Remove extraneous MathML code before bug 52444 fix
+        https://bugs.webkit.org/show_bug.cgi?id=78034
+
+        Reviewed by Eric Seidel.
+        
+        The rendering of the scrollbar in row-expected.png was flaky, presumably due \
to a test +        environment timing issue, so I removed it.
+
+        * mathml/presentation/row.xhtml:
+        * platform/mac/mathml/presentation/row-expected.png:
+        * platform/mac/mathml/presentation/row-expected.txt:
+
+2012-02-07  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        Override expected-failure \
mac-leopard/media/media-blocked-by-beforeload-expected.txt with copy of \
expected-success expectation, for chromium-mac-leopard. +        \
https://bugs.webkit.org/show_bug.cgi?id=78030 +
+        Unreviewed.
+
+        * platform/chromium-mac-leopard/media/media-blocked-by-beforeload-expected.txt: \
Added. +
+2012-02-07  Dan Bernstein  &lt;mitz@apple.com&gt;
+
+        &lt;rdar://problem/10475450&gt; Synthetic bold is illegible under some \
scaling transforms +        https://bugs.webkit.org/show_bug.cgi?id=78044
+
+        Reviewed by Beth Dakin.
+
+        * fast/text/synthetic-bold-transformed-expected.html: Added.
+        * fast/text/synthetic-bold-transformed.html: Added.
+
+2012-02-07  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        Add JSC support for delivering mutations when the outermost script context \
exits +        https://bugs.webkit.org/show_bug.cgi?id=70289
+
+        Reviewed by Eric Seidel.
+
+        With the various fixes in this change, 8/10 tests in fast/mutation
+        pass under WebKit/Mac. Of the failing tests, only one is due to
+        a deficiency in the Mac port's code (end-of-task-delivery.html);
+        the other is due to lack of support for a feature (FILE_SYSTEM)
+        exercised by the test (non-event-delivery.html).
+
+        * fast/mutation/non-event-delivery.html: Made it fail fast if FileSystem \
support isn't available. +        * fast/mutation/observe-attributes.html: Fixed \
calls to removeEventListener. +        * fast/mutation/observe-characterdata.html: \
ditto. +
+2012-02-07  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        [SVG] Use element disappears after scripted change
+        https://bugs.webkit.org/show_bug.cgi?id=74392
+
+        Reviewed by Eric Seidel.
+
+        * platform/mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.png: \
Added. +        * platform/mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.txt: \
Added. +        * svg/custom/use-disappears-after-style-update.svg: Added.
+
+2012-02-07  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        unicode-bidi:plaintext is supposed to be effective on display:inline \
elements too +        https://bugs.webkit.org/show_bug.cgi?id=73310
+
+        Reviewed by Eric Seidel.
+
+        Ref tests for unicode-bidi: plaintext on inlines.
+
+        * fast/text/international/inline-plaintext-is-isolated-expected.html: Added.
+        * fast/text/international/inline-plaintext-is-isolated.html: Added.
+        * fast/text/international/inline-plaintext-relayout-with-leading-neutrals-expected.html: \
Added. +        * fast/text/international/inline-plaintext-relayout-with-leading-neutrals.html: \
Added. +        * fast/text/international/inline-plaintext-with-generated-content-expected.html: \
Added. +        * fast/text/international/inline-plaintext-with-generated-content.html: \
Added. +
+2012-02-07  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening after r106982.
+
+        * platform/chromium/test_expectations.txt:
+        We don't have at least one of the layoutTestController
+        functions used in this test so we are receiving an
+        exception and timing out.
+
+2012-02-07  Eugene Girard  &lt;girard@chromium.org&gt;
+
+        IndexedDB createIndex should fail if options arg is invalid
+        https://bugs.webkit.org/show_bug.cgi?id=58467
+
+        Reviewed by Tony Chang.
+
+        This ticket was fixed as part of \
https://bugs.webkit.org/show_bug.cgi?id=58471 +        Adding unit tests to verify \
correct operation. +
+        * storage/indexeddb/index-basics-expected.txt:
+        * storage/indexeddb/index-basics-workers-expected.txt:
+        * storage/indexeddb/resources/index-basics.js:
+        (deleteExisting):
+
+2012-02-07  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium/test_expectations.txt:
+        Mark those 2 tests as crashing in Debug as they seem
+        to be hitting an ASSERT.
+
+2012-02-07  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening, paint the bots green.
+
+        * platform/qt/Skipped: Skip failing/crashing tests, because we like \
regressions in trunk. +
+2012-02-07  Brady Eidson  &lt;beidson@apple.com&gt;
+
+        &lt;rdar://problem/9567286&gt; and \
https://bugs.webkit.org/show_bug.cgi?id=78003 +        WebKit associates credentials \
with the wrong site if the authentication challenge takes place after a redirect \
chain +
+        Reviewed by Alexey Proskuryakov.
+
+        * http/tests/loading/authentication-after-redirect-stores-wrong-credentials/authentication-after-redirect-stores-wrong-credentials-expected.txt: \
Added. +        * http/tests/loading/authentication-after-redirect-stores-wrong-credentials/authentication-after-redirect-stores-wrong-credentials.html: \
Added. +        * http/tests/loading/authentication-after-redirect-stores-wrong-credentials/resources/wrong-credential-1-redirect-to-auth.php: \
Added. +        * http/tests/loading/authentication-after-redirect-stores-wrong-credentials/resources/wrong-credential-2-auth-then-redirect-to-finish.php: \
Added. +        * http/tests/loading/authentication-after-redirect-stores-wrong-credentials/resources/wrong-credential-3-output-credentials-then-finish.php: \
Added. +
+2012-02-07  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Revert r106958.
+
+        * platform/chromium/test_expectations.txt:
+        It was a mistake as the test is really flaky not slow,
+        so now it is taking way longer to fail (see http://webkit.org/b/77997).
+
+2012-02-07  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-linux/fast/forms/tabbing-input-iframe-expected.png:
+        * platform/chromium-win/fast/events/frame-tab-focus-expected.txt: Removed.
+        * platform/chromium/fast/events/frame-tab-focus-expected.txt: Added.
+        * platform/chromium/test_expectations.txt:
+        Rebaseline some old entries in test_expectations.
+
+2012-02-07  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        createImpulseBuffer uses incorrect length
+        https://bugs.webkit.org/show_bug.cgi?id=77665
+
+        Reviewed by Kenneth Russell.
+
+        * webaudio/resources/audio-testing.js:
+        (createImpulseBuffer):  Fix bug so the buffer has the correct
+        length. 
+
+2012-02-07  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash in ContainerNode functions due to mutation events.
+        https://bugs.webkit.org/show_bug.cgi?id=77999
+
+        Reviewed by Ryosuke Niwa.
+
+        * fast/dom/remove-body-during-body-replacement-expected.txt: Added.
+        * fast/dom/remove-body-during-body-replacement.html: Added.
+        * fast/dom/remove-body-during-body-replacement2-expected.txt: Added.
+        * fast/dom/remove-body-during-body-replacement2.html: Added.
+
+2012-02-07  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        [Chromium] storage/indexeddb/index-cursor.html timeouts on Mac Debug
+        https://bugs.webkit.org/show_bug.cgi?id=65862
+
+        Unreviewed test expectations change. Removed this expectation in r106857
+        but it's still timing out so restoring it for now.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-07  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash due to column style not updated on post block
+        in splitInlines. 
+        https://bugs.webkit.org/show_bug.cgi?id=77939
+
+        Reviewed by Julien Chaffraix.
+
+        * fast/multicol/span/split-inline-wrong-post-block-crash-expected.txt: \
Added. +        * fast/multicol/span/split-inline-wrong-post-block-crash.html: Added.
+
+2012-02-07  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-mac-snowleopard/svg/carto.net/window-expected.txt: \
Removed. +        * platform/chromium/test_expectations.txt: Added a TEXT output to a \
test as seen +        on the bots.
+
+2012-02-07  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [chromium] re-enable fast/repaint/block-selection-gap-in-composited-layer \
for win/mac +        https://bugs.webkit.org/show_bug.cgi?id=77896
+
+        Reviewed by Kenneth Russell.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-07  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        composited mask test for CSS3 calc
+        https://bugs.webkit.org/show_bug.cgi?id=76006
+
+        Reviewed by Ojan Vafai.
+
+        Tests for future implementation of CSS3 calc() (see \
http://webkit.org/b/16662) +
+        These tests are expected to 'fail', and will pass once calc() functionality \
is landed. +        For now, they serve to demonstrate that the current code doesn't \
crash on these tests. +
+        * css3/calc/resources/alpha-gradient.png: Added.
+        * css3/calc/simple-composited-mask-expected-mismatch.html: Added.
+        * css3/calc/simple-composited-mask.html: Added.
+
+2012-02-07  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        [Chromium] media/track/track-cue-nothing-to-render.html fails intermittently \
on Mac +        https://bugs.webkit.org/show_bug.cgi?id=75132
+
+        Unreviewed, chromium expectations update.
+        Fixed with http://crrev.com/120714.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-07  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        Unreviewed, chromium expectations update.
+        [Chromium] Layout Test media/media-blocked-by-beforeload.html fails for \
LEOPARD +        https://bugs.webkit.org/show_bug.cgi?id=77412
+
+        Fixed with http://crrev.com/120714.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-07  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium/test_expectations.txt:
+        Mark an SVG test as SLOW.
+
+2012-02-07  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        [Chromium] Layout Test media/controls-drag-timebar.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=77531
+
+        No more flakiness.
+
+        Reviewed by Eric Carlson.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-07  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt][WK2] Unreviewed gardening.
+
+        * platform/qt-wk2/Skipped: Skip failing tests, because we like regressions \
in trunk. +
+2012-02-07  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: add generic support for undo-ing DOM edits.
+        https://bugs.webkit.org/show_bug.cgi?id=77875
+
+        Reviewed by Yury Semikhatsky.
+
+        * http/tests/inspector/elements-test.js:
+        (initialize_ElementTest.InspectorTest.rangeText):
+        (initialize_ElementTest.InspectorTest.generateUndoTest):
+        * inspector/elements/undo-dom-edits-2-expected.txt: Added.
+        * inspector/elements/undo-dom-edits-2.html: Added.
+        * inspector/elements/undo-dom-edits-expected.txt: Added.
+        * inspector/elements/undo-dom-edits.html: Added.
+        * inspector/styles/undo-add-property-expected.txt: Added.
+        * inspector/styles/undo-add-property.html: Added.
+        * inspector/styles/undo-change-property-expected.txt: Added.
+        * inspector/styles/undo-change-property.html: Added.
+        * inspector/styles/undo-property-toggle-expected.txt: Added.
+        * inspector/styles/undo-property-toggle.html: Added.
+
+2012-02-07  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        Unreviewed, more svg rebaselines following change in r106918.
+
+        * platform/chromium-linux/svg/text/text-text-05-t-expected.png:
+
+2012-02-07  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Couple of tests have different results on 64 bit and/or in debug mode \
compared to 32 bit and/or release mode +        \
https://bugs.webkit.org/show_bug.cgi?id=52810 +
+        * platform/qt/Skipped: Skip one more test because of this bug.
+
+2012-02-07  Ádám Kallai  &lt;Kallai.Adam@stud.u-szeged.hu&gt;
+
+        Unreviewed gardening after r106898. Update platform specific expected \
results +
+        * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
+
+2012-02-07  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106932.
+        http://trac.webkit.org/changeset/106932
+        https://bugs.webkit.org/show_bug.cgi?id=77988
+
+        Breaks Mac bots (Requested by pfeldman on #webkit).
+
+        * http/tests/inspector/elements-test.js:
+        (initialize_ElementTest.InspectorTest.rangeText):
+        * inspector/elements/undo-dom-edits-2-expected.txt: Removed.
+        * inspector/elements/undo-dom-edits-2.html: Removed.
+        * inspector/elements/undo-dom-edits-expected.txt: Removed.
+        * inspector/elements/undo-dom-edits.html: Removed.
+        * inspector/styles/undo-add-property-expected.txt: Removed.
+        * inspector/styles/undo-add-property.html: Removed.
+        * inspector/styles/undo-change-property-expected.txt: Removed.
+        * inspector/styles/undo-change-property.html: Removed.
+        * inspector/styles/undo-property-toggle-expected.txt: Removed.
+        * inspector/styles/undo-property-toggle.html: Removed.
+
+2012-02-07  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        Unreviewed, a couple more chromium rebaselines after r106918.
+
+        * platform/chromium-mac-leopard/svg/hixie/perf/006-expected.png: Removed.
+        * platform/chromium-mac-snowleopard/svg/hixie/perf/006-expected.png: Added.
+
+2012-02-07  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        Unreviewed, more chromium rebaselines as a result of change in r106918.
+
+        * platform/chromium-mac-leopard/svg/carto.net/tabgroup-expected.png: Added.
+        * platform/chromium-mac-leopard/svg/dom/SVGPathSegList-segment-modification-expected.png:
 +        * platform/chromium-mac-leopard/svg/filters/filter-width-update-expected.png:
 +        * platform/chromium-mac-leopard/svg/hixie/perf/003-expected.png:
+        * platform/chromium-mac-leopard/svg/hixie/perf/004-expected.png: Removed.
+        * platform/chromium-mac-leopard/svg/hixie/perf/005-expected.png: Removed.
+        * platform/chromium-mac-leopard/svg/hixie/perf/007-expected.txt: Added.
+        * platform/chromium-mac-snowleopard/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/carto.net/tabgroup-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/dom/SVGPathSegList-segment-modification-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/filters/filter-width-update-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/hixie/perf/003-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/hixie/perf/004-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/hixie/perf/005-expected.png: \
Added. +        * platform/chromium-mac/svg/dom/SVGPathSegList-segment-modification-expected.png: \
Removed. +        * platform/chromium-mac/svg/filters/filter-width-update-expected.png: \
Removed. +        * platform/mac/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.txt: \
Removed. +        * platform/mac/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt: \
Removed. +        * platform/mac/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt: \
Removed. +        * platform/qt/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.txt: \
Removed. +        * platform/qt/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt: \
Removed. +        * platform/qt/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt: \
Removed. +        * svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.txt: \
Renamed from LayoutTests/platform/gtk/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.txt.
 +        * svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt: \
Renamed from LayoutTests/platform/gtk/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt.
 +        * svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt: \
Renamed from LayoutTests/platform/gtk/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt.
 +
+2012-02-07  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        Unreviewed chromium rebaseline to account for change in r106918.
+
+        * platform/chromium-linux/svg/text/append-text-node-to-tspan-expected.png: \
Added. +        * platform/chromium-linux/svg/text/remove-text-node-from-tspan-expected.png: \
Added. +        * platform/chromium-linux/svg/zoom/page/zoom-background-images-expected.png:
 +        * platform/chromium-linux/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png:
 +        * platform/chromium-mac-leopard/svg/carto.net/window-expected.png:
+        * platform/chromium-mac-leopard/svg/hixie/perf/001-expected.png: Added.
+        * platform/chromium-mac-leopard/svg/hixie/perf/002-expected.png: Added.
+        * platform/chromium-mac-leopard/svg/text/text-text-05-t-expected.png: Added.
+        * platform/chromium-mac-leopard/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/carto.net/window-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/carto.net/window-expected.txt: \
Copied from LayoutTests/platform/chromium-win/svg/carto.net/window-expected.txt. +    \
* platform/chromium-mac-snowleopard/svg/hixie/perf/001-expected.png: Added. +        \
* platform/chromium-mac-snowleopard/svg/hixie/perf/001-expected.txt: Copied from \
LayoutTests/platform/chromium-mac-snowleopard/svg/hixie/perf/002-expected.txt. +      \
* platform/chromium-mac-snowleopard/svg/hixie/perf/002-expected.png: +        * \
platform/chromium-mac-snowleopard/svg/hixie/perf/002-expected.txt: +        * \
platform/chromium-mac-snowleopard/svg/text/text-text-05-t-expected.png: Added. +      \
* platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-008-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/svg/zoom/page/zoom-hixie-mixed-008-expected.png.
 +        * platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png.
 +        * platform/chromium-mac-snowleopard/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png:
 +        * platform/chromium-mac-snowleopard/svg/zoom/text/zoom-hixie-mixed-008-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/svg/zoom/text/zoom-hixie-mixed-008-expected.png.
 +        * platform/chromium-mac-snowleopard/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png: \
Renamed from LayoutTests/platform/chromium-mac/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png.
 +        * platform/chromium-win/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png: \
Added. +        * platform/chromium-win/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png: \
Added. +        * platform/chromium-win/svg/carto.net/window-expected.png:
+        * platform/chromium-win/svg/carto.net/window-expected.txt:
+        * platform/chromium-win/svg/hixie/perf/001-expected.png:
+        * platform/chromium-win/svg/hixie/perf/001-expected.txt:
+        * platform/chromium-win/svg/hixie/perf/002-expected.png:
+        * platform/chromium-win/svg/hixie/perf/002-expected.txt:
+        * platform/chromium-win/svg/text/append-text-node-to-tspan-expected.png: \
Added. +        * platform/chromium-win/svg/text/append-text-node-to-tspan-expected.txt: \
Added. +        * platform/chromium-win/svg/text/remove-text-node-from-tspan-expected.png: \
Added. +        * platform/chromium-win/svg/text/remove-text-node-from-tspan-expected.txt: \
Added. +        * platform/chromium-win/svg/text/text-text-05-t-expected.png:
+        * platform/chromium-win/svg/text/text-text-05-t-expected.txt:
+        * platform/chromium-win/svg/zoom/page/zoom-background-images-expected.png:
+        * platform/chromium-win/svg/zoom/page/zoom-background-images-expected.txt:
+        * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
+        * platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
+        * platform/chromium-win/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt:
 +        * platform/chromium-win/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png:
 +        * platform/chromium-win/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
+        * platform/chromium-win/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt:
 +        * platform/mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-008-expected.png: \
Removed. +        * platform/mac/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt: \
Removed. +        * platform/mac/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt: \
Removed. +        * platform/qt/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt: \
Removed. +        * platform/qt/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt: \
Removed. +        * svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt: \
Renamed from LayoutTests/platform/gtk/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt.
 +        * svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt: \
Renamed from LayoutTests/platform/gtk/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt.
 +
+2012-02-07  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening. Update platform specific expected files after \
r106918. +
+        * platform/qt/Skipped: Unskip non-existing tests.
+        * platform/qt/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt:
 +        * platform/qt/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt:
 +        * platform/qt/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.txt:
 +        * platform/qt/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt:
 +        * platform/qt/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt:
 +        * platform/qt/svg/carto.net/tabgroup-expected.png:
+        * platform/qt/svg/carto.net/tabgroup-expected.txt:
+        * platform/qt/svg/carto.net/window-expected.png:
+        * platform/qt/svg/carto.net/window-expected.txt:
+        * platform/qt/svg/dom/SVGPathSegList-segment-modification-expected.png:
+        * platform/qt/svg/dom/SVGPathSegList-segment-modification-expected.txt:
+        * platform/qt/svg/filters/filter-width-update-expected.png:
+        * platform/qt/svg/filters/filter-width-update-expected.txt:
+        * platform/qt/svg/hixie/perf/003-expected.png:
+        * platform/qt/svg/hixie/perf/003-expected.txt:
+        * platform/qt/svg/hixie/perf/004-expected.png:
+        * platform/qt/svg/hixie/perf/004-expected.txt:
+        * platform/qt/svg/hixie/perf/005-expected.png:
+        * platform/qt/svg/hixie/perf/005-expected.txt:
+        * platform/qt/svg/hixie/perf/006-expected.png:
+        * platform/qt/svg/hixie/perf/006-expected.txt:
+        * platform/qt/svg/zoom/page/zoom-background-images-expected.png:
+        * platform/qt/svg/zoom/page/zoom-background-images-expected.txt:
+        * platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
+        * platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
+        * platform/qt/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png: \
Added. +        * platform/qt/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt:
 +        * platform/qt/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt:
 +        * platform/qt/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt:
 +        * platform/qt/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
+        * platform/qt/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
+        * platform/qt/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png:
+        * platform/qt/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt:
+
+2012-02-07  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-mac-leopard/fast/canvas/check-stale-putImageData-expected.png: \
Added. Pixel results for platform font. +
+2012-02-07  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: add generic support for undo-ing DOM edits.
+        https://bugs.webkit.org/show_bug.cgi?id=77875
+
+        Reviewed by Yury Semikhatsky.
+
+        * http/tests/inspector/elements-test.js:
+        (initialize_ElementTest.InspectorTest.rangeText):
+        (initialize_ElementTest.InspectorTest.generateUndoTest):
+        * inspector/elements/undo-dom-edits-2-expected.txt: Added.
+        * inspector/elements/undo-dom-edits-2.html: Added.
+        * inspector/elements/undo-dom-edits-expected.txt: Added.
+        * inspector/elements/undo-dom-edits.html: Added.
+        * inspector/styles/undo-add-property-expected.txt: Added.
+        * inspector/styles/undo-add-property.html: Added.
+        * inspector/styles/undo-change-property-expected.txt: Added.
+        * inspector/styles/undo-change-property.html: Added.
+        * inspector/styles/undo-property-toggle-expected.txt: Added.
+        * inspector/styles/undo-property-toggle.html: Added.
+
+2012-02-06  Yury Semikhatsky  &lt;yurys@chromium.org&gt;
+
+        Web Inspector: don't mark object is queriable if it is only reachable by \
internal reference +        https://bugs.webkit.org/show_bug.cgi?id=77877
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/profiler/heap-snapshot.html:
+
+2012-02-07  Ádám Kallai  &lt;Kallai.Adam@stud.u-szeged.hu&gt;
+
+        [Qt] New svg/hittest tests introduced in r106882 fail
+        https://bugs.webkit.org/show_bug.cgi?id=77964
+
+        Reviewed by Csaba Osztrogonác.
+
+        * platform/qt/Skipped: Skip failing tests until fix.
+
+2012-02-07  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK svg rebaseline after r106918.
+
+        * platform/gtk/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt:
 +        * platform/gtk/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt:
 +        * platform/gtk/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.txt:
 +        * platform/gtk/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt:
 +        * platform/gtk/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt:
 +        * platform/gtk/svg/carto.net/tabgroup-expected.txt:
+        * platform/gtk/svg/carto.net/window-expected.txt:
+        * platform/gtk/svg/dom/SVGPathSegList-segment-modification-expected.txt:
+        * platform/gtk/svg/filters/filter-width-update-expected.txt:
+        * platform/gtk/svg/text/text-text-05-t-expected.txt:
+        * platform/gtk/svg/zoom/page/zoom-background-images-expected.txt:
+        * platform/gtk/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
+        * platform/gtk/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt:
+        * platform/gtk/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
+        * platform/gtk/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt:
+
+2012-02-07  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106915.
+        http://trac.webkit.org/changeset/106915
+        https://bugs.webkit.org/show_bug.cgi?id=77961
+
+        because 106912 was rolled out (Requested by Ossy on #webkit).
+
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+        * platform/qt/fast/dom/constructed-objects-prototypes-expected.txt:
+        * platform/qt/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/qt/fast/js/global-constructors-expected.txt:
+
+2012-02-05  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Rewrite SVG tests to make extensive use of display() in repaint tests
+        https://bugs.webkit.org/show_bug.cgi?id=77736
+
+        Reviewed by Andreas Kling.
+
+        Convert all tests in svg/ (except svg/custom &amp; svg/dynamic-updates) that \
exercise repainting to use the +        fast/repaint/resources/repaint.js harness, \
which forces a layout, and calls layoutTestController.display() +        before \
executing the actual repaint test, so that repaint rectangles are properly tracked \
and shown (white +        areas that are redrawn, on top of the gray background, \
painted over the web view after the initial painting). +
+        Previously SVG tests used to work like this: (using an HTML example, but it \
doesn't matter) +        \
&lt;html&gt;&lt;body&gt;&lt;svg&gt;&lt;rect/&gt;&lt;script&gt;function change() { \
rect.setAttribute(...); layoutTestController.notifyDone(); } setTimeout(change, 0); \
&lt;/script&gt;&lt;/svg&gt;&lt;/body&gt;&lt;/html&gt; +
+        We expected that the initial painting was done, before change() as called. \
This is unreliable for various reasons: +        - the timeout is not guaranteed to \
fire after the document loaded, it may happen inbetween on eg. a slow connection. +   \
- nor is it guaranteed that the document has painted initially before we enter \
change(). +          This leads to the current regressions -- if we break repainting, \
we can't see it in the current layout tests, as the +          initial painting \
always happens after change() executed in trunk, at least on a fast machine. +
+        In order to make repaint testing reliable we have to use following scheme:
+        &lt;html&gt;&lt;body \
onload=&quot;runRepaintTest()&quot;&gt;&lt;svg&gt;&lt;rect/&gt;&lt;script&gt;function \
repaintTest() { rect.setAttribute(...); \
}&lt;/script&gt;&lt;/svg&gt;&lt;/body&gt;&lt;/html&gt; +
+        runRepaintTest() is provided by the repaint.js harness and does:
+        if (window.layoutTestController) {
+            document.body.offsetTop;
+            layoutTestController.display();
+            repaintTest();
+        } else {
+            setTimeout(repaintTest, 100);
+        }
+
+        Using this harness outside of DRT allows to test SVG repainting tests in the \
browser as well, as the repainting changes +        aren't immediately fired (0ms \
timer) but instead delayed by 100ms, so a visual &quot;flash&quot; is visible, if \
something changes. +        For DRT it does two things. First it forces \
Document::updateLayout() to be called, and then forces the web view to paint +        \
immediately, and then it starts tracking any repaint rects, that are fired _after_ \
the initial painting, which are then +        highlighted in the pixel test dump \
later on. Using display() is the only way to get reliable painting results across +   \
DRT/WebKitTestRunner, and to get rid of the flakiness. +
+        All *.xml/*.html/*.htm/*.xhtml tests which excersise repainting can be moved \
to use runRepaintTest() from repaint.js. +        &lt;body&gt; needs to be changed to \
&lt;body onload=&quot;runRepaintTest()&quot;&gt;, and the timeouts &amp; \
waitUntilDone/notifyDone calls can +        be removed from the tests, leading to \
much nicer testcases, removing lots of boilerplate. +
+        Pure *.svg tests unfortunately can't use &lt;svg \
onload=&quot;runRepaintTest()&quot;&gt; at the moment, due timing differences between \
+        the HTML load and the SVGLoad event, that's out of scope for this bug \
report. To remove any hacks from the testcases +        themselves, I centralized \
following work-around in a new function in repaint.js, and let all *.svg tests use \
it. +
+        function runSVGRepaintTest() {
+            if (window.layoutTestController) {
+                layoutTestController.waitUntilDone();
+                setTimeout(runRepaintTest, 0);
+            } else
+                runRepaintTest();
+        }
+
+        runRepaintTest() has to be called from a timer at the moment, as the SVGLoad \
event fires earlier as HTML load event. +        Before that is fixed, we have to use \
&lt;svg onload=&quot;runSVGRepaintTest()&quot;&gt; instead of &lt;svg \
onload=&quot;runRepaintTest()&quot;&gt; +        and append: \
layoutTestController.notifyDone() to the repaintTest() functions in the testcases. \
That should explain +        the testcase differences between pure-SVG and \
non-pure-SVG tests, and why I treated them differently. This approach +        is \
unfortunately as flakey as the old, so to make pure *.svg tests test repainting \
reliable, the bug needs to be fixed. +
+        Note that svg/custom, and svg/dynamic-updates will be fixed in another \
chunk, as they also require large amounts +        of rebaselines.
+
+        * fast/repaint/resources/repaint.js:
+        (runRepaintTest):
+        (runSVGRepaintTest):
+        * platform/chromium/test_expectations.txt:
+        * platform/mac/svg/as-background-image/animated-svg-as-background-expected.png:
 +        * platform/mac/svg/as-image/animated-svg-as-image-expected.png:
+        * platform/mac/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png:
 +        * platform/mac/svg/as-image/animated-svg-as-image-same-image-expected.png:
+        * platform/mac/svg/as-image/svg-image-change-content-size-expected.png:
+        * platform/mac/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png:
 +        * platform/mac/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt:
 +        * platform/mac/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png:
 +        * platform/mac/svg/as-object/deep-nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt:
 +        * platform/mac/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png:
 +        * platform/mac/svg/as-object/embedded-svg-size-changes-expected.png:
+        * platform/mac/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.png:
 +        * platform/mac/svg/as-object/embedded-svg-size-changes-no-layout-triggers-expected.txt:
 +        * platform/mac/svg/as-object/nested-embedded-svg-size-changes-expected.png:
+        * platform/mac/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.png:
 +        * platform/mac/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1-expected.txt:
 +        * platform/mac/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.png:
 +        * platform/mac/svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2-expected.txt:
 +        * platform/mac/svg/carto.net/tabgroup-expected.png:
+        * platform/mac/svg/carto.net/tabgroup-expected.txt:
+        * platform/mac/svg/carto.net/window-expected.png:
+        * platform/mac/svg/carto.net/window-expected.txt:
+        * platform/mac/svg/css/shadow-changes-expected.png:
+        * platform/mac/svg/dom/SVGPathSegList-segment-modification-expected.png:
+        * platform/mac/svg/dom/SVGPathSegList-segment-modification-expected.txt:
+        * platform/mac/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png:
+        * platform/mac/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png:
+        * platform/mac/svg/dom/SVGRectElement/rect-modify-rx-expected.png:
+        * platform/mac/svg/filters/filter-refresh-expected.png:
+        * platform/mac/svg/filters/filter-width-update-expected.png:
+        * platform/mac/svg/filters/filter-width-update-expected.txt:
+        * platform/mac/svg/filters/invalidate-on-child-layout-expected.png:
+        * platform/mac/svg/hixie/perf/001-expected.png:
+        * platform/mac/svg/hixie/perf/002-expected.png:
+        * platform/mac/svg/hixie/perf/003-expected.png:
+        * platform/mac/svg/hixie/perf/003-expected.txt:
+        * platform/mac/svg/hixie/perf/004-expected.png:
+        * platform/mac/svg/hixie/perf/004-expected.txt:
+        * platform/mac/svg/hixie/perf/005-expected.png:
+        * platform/mac/svg/hixie/perf/005-expected.txt:
+        * platform/mac/svg/hixie/perf/006-expected.png:
+        * platform/mac/svg/hixie/perf/006-expected.txt:
+        * platform/mac/svg/hixie/perf/007-expected.png:
+        * platform/mac/svg/hixie/perf/007-expected.txt:
+        * platform/mac/svg/repaint/filter-child-repaint-expected.png:
+        * platform/mac/svg/repaint/image-href-change-expected.png:
+        * platform/mac/svg/repaint/image-with-clip-path-expected.png:
+        * platform/mac/svg/text/append-text-node-to-tspan-expected.png:
+        * platform/mac/svg/text/modify-text-node-in-tspan-expected.png:
+        * platform/mac/svg/text/remove-text-node-from-tspan-expected.png:
+        * platform/mac/svg/text/remove-tspan-from-text-expected.png:
+        * platform/mac/svg/text/text-text-05-t-expected.png:
+        * platform/mac/svg/text/text-text-05-t-expected.txt:
+        * platform/mac/svg/transforms/animated-path-inside-transformed-html-expected.png:
 +        * platform/mac/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.png:
 +        * platform/mac/svg/zoom/page/relative-sized-document-scrollbars-expected.png:
 +        * platform/mac/svg/zoom/page/zoom-background-images-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-foreignObject-expected.png:
+        * platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png:
+        * platform/mac/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.png:
+        * platform/mac/svg/zoom/page/zoom-svg-as-background-with-relative-size-and-viewBox-expected.png:
 +        * platform/mac/svg/zoom/page/zoom-svg-as-background-with-relative-size-expected.png:
 +        * platform/mac/svg/zoom/page/zoom-svg-as-image-expected.png:
+        * platform/mac/svg/zoom/page/zoom-svg-as-object-expected.png:
+        * platform/mac/svg/zoom/page/zoom-svg-as-relative-image-expected.png:
+        * platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt:
 +        * platform/mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt:
 +        * platform/mac/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.png:
 +        * platform/mac/svg/zoom/text/absolute-sized-document-scrollbars-expected.png:
 +        * platform/mac/svg/zoom/text/relative-sized-document-scrollbars-expected.png:
 +        * platform/mac/svg/zoom/text/zoom-foreignObject-expected.png:
+        * platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
+        * platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
+        * platform/mac/svg/zoom/text/zoom-hixie-mixed-009-expected.png:
+        * platform/mac/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png:
+        * platform/mac/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt:
+        * svg/as-background-image/animated-svg-as-background.html:
+        * svg/as-background-image/resources/animated-rect-relative-size.svg:
+        * svg/as-background-image/svg-as-background-5.html:
+        * svg/as-background-image/svg-background-partial-redraw.html:
+        * svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size.html:
+        * svg/as-image/animated-svg-as-image-same-image.html:
+        * svg/as-image/animated-svg-as-image.html:
+        * svg/as-image/resources/animated-rect-fixed-size-2.svg: Copied from \
LayoutTests/svg/as-image/resources/animated-rect-same-image.svg. +        * \
svg/as-image/resources/animated-rect-fixed-size.svg: +        * \
svg/as-image/resources/animated-rect-relative-size.svg: +        * \
svg/as-image/resources/animated-rect-same-image.svg: +        * \
svg/as-image/svg-image-change-content-size.xhtml: +        * \
svg/as-object/embedded-svg-immediate-offsetWidth-query.html: +        * \
svg/as-object/embedded-svg-size-changes-no-layout-triggers.html: +        * \
svg/as-object/embedded-svg-size-changes.html: +        * \
svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1.html: +        * \
svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2.html: +        * \
svg/as-object/nested-embedded-svg-size-changes.html: +        * \
svg/as-object/resources/embedded-svg-size-changes-no-layout-triggers.svg: +        * \
svg/as-object/resources/nested-embedded-svg-size-changes-target-no-layout-triggers-1.html:
 +        * svg/carto.net/tabgroup.svg:
+        * svg/carto.net/window.svg:
+        * svg/css/shadow-changes.svg:
+        * svg/dom/SVGPathSegList-segment-modification.svg:
+        * svg/dom/SVGPathSegList-xml-dom-synchronization.xhtml:
+        * svg/dom/SVGPathSegList-xml-dom-synchronization2.xhtml:
+        * svg/dom/SVGRectElement/rect-modify-rx.svg:
+        * svg/filters/animate-fill-expected.png:
+        * svg/filters/animate-fill.svg:
+        * svg/filters/feImage-reference-invalidation-expected.png:
+        * svg/filters/feImage-reference-invalidation.svg:
+        * svg/filters/feImage-target-add-to-document-expected.png:
+        * svg/filters/feImage-target-add-to-document.svg:
+        * svg/filters/feImage-target-changes-id-expected.png:
+        * svg/filters/feImage-target-changes-id.svg:
+        * svg/filters/feImage-target-id-change-expected.png:
+        * svg/filters/feImage-target-id-change.svg:
+        * svg/filters/feImage-target-reappend-to-document-expected.png:
+        * svg/filters/feImage-target-reappend-to-document.svg:
+        * svg/filters/feImage-target-remove-from-document-expected.png:
+        * svg/filters/feImage-target-remove-from-document.svg:
+        * svg/filters/filter-refresh.svg:
+        * svg/filters/filter-width-update.svg:
+        * svg/filters/invalidate-on-child-layout.svg:
+        * svg/hixie/perf/001.xml:
+        * svg/hixie/perf/002.xml:
+        * svg/hixie/perf/003.xml:
+        * svg/hixie/perf/004.xml:
+        * svg/hixie/perf/005.xml:
+        * svg/hixie/perf/006.xml:
+        * svg/hixie/perf/007.xml:
+        * svg/hixie/perf/resources/smallcats.gif: Added.
+        * svg/repaint/container-repaint-expected.png:
+        * svg/repaint/container-repaint.svg:
+        * svg/repaint/filter-child-repaint.svg:
+        * svg/repaint/image-href-change.svg:
+        * svg/repaint/image-with-clip-path.svg:
+        * svg/text/append-text-node-to-tspan.html:
+        * svg/text/modify-text-node-in-tspan.html:
+        * svg/text/remove-text-node-from-tspan.html:
+        * svg/text/remove-tspan-from-text.html:
+        * svg/text/text-text-05-t.svg:
+        * svg/transforms/animated-path-inside-transformed-html.xhtml:
+        * svg/zoom/page/absolute-sized-document-no-scrollbars.svg:
+        * svg/zoom/page/absolute-sized-document-scrollbars.svg:
+        * svg/zoom/page/relative-sized-document-scrollbars.svg:
+        * svg/zoom/page/zoom-background-image-tiled.html:
+        * svg/zoom/page/zoom-background-images.html:
+        * svg/zoom/page/zoom-coords-viewattr-01-b.svg:
+        * svg/zoom/page/zoom-foreignObject.svg:
+        * svg/zoom/page/zoom-getBoundingClientRect.xhtml:
+        * svg/zoom/page/zoom-hixie-mixed-008.xml:
+        * svg/zoom/page/zoom-hixie-mixed-009.xml:
+        * svg/zoom/page/zoom-hixie-rendering-model-004.xhtml:
+        * svg/zoom/page/zoom-img-preserveAspectRatio-support-1.html:
+        * svg/zoom/page/zoom-mask-with-percentages.svg:
+        * svg/zoom/page/zoom-replaced-intrinsic-ratio-001.htm:
+        * svg/zoom/page/zoom-svg-as-background-with-relative-size-and-viewBox.html:
+        * svg/zoom/page/zoom-svg-as-background-with-relative-size.html:
+        * svg/zoom/page/zoom-svg-as-image.html:
+        * svg/zoom/page/zoom-svg-as-object.html:
+        * svg/zoom/page/zoom-svg-as-relative-image.html:
+        * svg/zoom/page/zoom-svg-float-border-padding.xml:
+        * svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml:
+        * svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml:
+        * svg/zoom/page/zoom-svg-through-object-with-auto-size.html:
+        * svg/zoom/page/zoom-svg-through-object-with-huge-size.xhtml:
+        * svg/zoom/page/zoom-svg-through-object-with-override-size.html:
+        * svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml:
+        * svg/zoom/page/zoom-svg-through-object-with-text.xhtml-disabled:
+        * svg/zoom/page/zoom-zoom-coords.xhtml:
+        * svg/zoom/resources/testPageZoom.js:
+        (repaintTest):
+        * svg/zoom/resources/testTextZoom.js:
+        (repaintTest):
+        * svg/zoom/text/absolute-sized-document-no-scrollbars.svg:
+        * svg/zoom/text/absolute-sized-document-scrollbars.svg:
+        * svg/zoom/text/relative-sized-document-scrollbars.svg:
+        * svg/zoom/text/zoom-coords-viewattr-01-b.svg:
+        * svg/zoom/text/zoom-foreignObject.svg:
+        * svg/zoom/text/zoom-hixie-mixed-008.xml:
+        * svg/zoom/text/zoom-hixie-mixed-009.xml:
+        * svg/zoom/text/zoom-hixie-rendering-model-004.xhtml:
+        * svg/zoom/text/zoom-svg-float-border-padding.xml:
+
+2012-02-07  Kaustubh Atrawalkar  &lt;kaustubh@motorola.com&gt;
+
+        GTK &amp; QT Rebaseline after r106912.
+        https://bugs.webkit.org/show_bug.cgi?id=77942
+
+        Reviewed by David Levin.
+
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+        * platform/qt/fast/dom/constructed-objects-prototypes-expected.txt:
+        * platform/qt/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/qt/fast/js/global-constructors-expected.txt:
+
+2012-02-07  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106912.
+        http://trac.webkit.org/changeset/106912
+        https://bugs.webkit.org/show_bug.cgi?id=77947
+
+        &quot;AppleWebKit build is broken&quot; (Requested by haraken on
+        #webkit).
+
+        * fast/dom/DOMURL/check-instanceof-domurl-functions-expected.txt: Removed.
+        * fast/dom/DOMURL/check-instanceof-domurl-functions.html: Removed.
+
+2012-02-07  Kaustubh Atrawalkar  &lt;kaustubh@motorola.com&gt;
+
+        Migrate createObjectURL &amp; revokeObjectURL to static (Class) methods.
+        https://bugs.webkit.org/show_bug.cgi?id=74386
+
+        Reviewed by David Levin.
+
+        Added test to check if createObjectURL &amp; revokeObjectURL are static \
functions. +
+        * fast/dom/DOMURL/check-instanceof-domurl-functions-expected.txt: Added.
+        * fast/dom/DOMURL/check-instanceof-domurl-functions.html: Added.
+
+2012-02-03  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        http/tests/inspector/indexeddb/database-structure.html failing on chromium \
win/linux +        https://bugs.webkit.org/show_bug.cgi?id=77661
+
+        Reviewed by Yury Semikhatsky.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        http/tests/security/xssAuditor/cookie-injection.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=77908
+
+        Reviewed by Eric Seidel.
+
+        Before this patch, the output of this test depended on the state of the
+        global cookie store.  When running tests in parallel, the cookie store
+        is shared by multiple tests, and so its state varies from run to run.
+
+        This patch changes this test to look only for the specific cookie used
+        by this test, which should make the test more reliable when run in
+        parallel with other tests.
+
+        * http/tests/security/xssAuditor/cookie-injection-expected.txt:
+        * http/tests/security/xssAuditor/resources/echo-intertag.pl:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Hayato Ito  &lt;hayato@chromium.org&gt;
+
+        Implement querySelector on ShadowRoot.
+        https://bugs.webkit.org/show_bug.cgi?id=77714
+
+        Reviewed by Dimitri Glazkov.
+
+        * fast/dom/shadow/shadow-root-js-api-expected.txt:
+        * fast/dom/shadow/shadow-root-js-api.html:
+
+2012-02-06  David Grogan  &lt;dgrogan@chromium.org&gt;
+
+        js-test-pre.js: relay calls to testPassed, testFailed, debug, etc from
+        worker to document.
+        https://bugs.webkit.org/show_bug.cgi?id=76762
+
+        Reviewed by Ojan Vafai.
+
+        * fast/filesystem/resources/async-operations.js:
+        * fast/filesystem/resources/directory-entry-to-uri.js:
+        * fast/filesystem/resources/file-entry-to-uri-sync.js:
+        * fast/filesystem/resources/file-entry-to-uri.js:
+        * fast/filesystem/resources/file-from-file-entry-sync.js:
+        * fast/filesystem/resources/file-from-file-entry.js:
+        * fast/filesystem/resources/file-writer-abort-continue.js:
+        * fast/filesystem/resources/file-writer-abort-depth.js:
+        * fast/filesystem/resources/file-writer-abort.js:
+        * fast/filesystem/resources/file-writer-events.js:
+        * fast/filesystem/resources/file-writer-gc-blob.js:
+        * fast/filesystem/resources/file-writer-sync-truncate-extend.js:
+        * fast/filesystem/resources/file-writer-sync-write-overlapped.js:
+        * fast/filesystem/resources/file-writer-truncate-extend.js:
+        * fast/filesystem/resources/file-writer-write-overlapped.js:
+        * fast/filesystem/resources/fs-worker-common.js:
+        * fast/filesystem/resources/fs-worker-test-util.js: Removed.
+        * fast/filesystem/resources/simple-persistent-sync.js:
+        * fast/filesystem/resources/simple-persistent.js:
+        * fast/filesystem/resources/simple-readonly.js:
+        * fast/filesystem/resources/simple-required-arguments-getdirectory.js:
+        * fast/filesystem/resources/simple-required-arguments-getfile.js:
+        * fast/filesystem/resources/simple-required-arguments-getmetadata.js:
+        * fast/filesystem/resources/simple-required-arguments-remove.js:
+        * fast/filesystem/resources/simple-temporary-sync.js:
+        * fast/filesystem/resources/simple-temporary.js:
+        * fast/filesystem/resources/sync-operations.js:
+        * fast/filesystem/workers/async-operations.html:
+        * fast/filesystem/workers/file-entry-to-uri-sync.html:
+        * fast/filesystem/workers/file-from-file-entry-sync.html:
+        * fast/filesystem/workers/file-from-file-entry.html:
+        * fast/filesystem/workers/file-writer-events.html:
+        * fast/filesystem/workers/file-writer-gc-blob.html:
+        * fast/filesystem/workers/file-writer-sync-truncate-extend.html:
+        * fast/filesystem/workers/file-writer-sync-write-overlapped.html:
+        * fast/filesystem/workers/file-writer-truncate-extend.html:
+        * fast/filesystem/workers/file-writer-write-overlapped.html:
+        * fast/filesystem/workers/simple-persistent-sync.html:
+        * fast/filesystem/workers/simple-persistent.html:
+        * fast/filesystem/workers/simple-temporary-sync.html:
+        * fast/filesystem/workers/simple-temporary.html:
+        * fast/filesystem/workers/sync-operations.html:
+        * fast/js/resources/js-test-pre.js:
+        (testPassed):
+        (testFailed):
+        (finishJSTest):
+        (startWorker.worker.onmessage):
+        (startWorker.worker.onerror):
+        (startWorker):
+        * storage/indexeddb/basics-workers.html:
+        * storage/indexeddb/resources/basics.js:
+
+2012-02-06  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        * platform/chromium-mac-snowleopard/fast/canvas/check-stale-putImageData-expected.png: \
Added. +        Yet another font difference.
+
+        * platform/chromium/test_expectations.txt: Added LEOPARD to the list of \
flaky platforms. +
+2012-02-06  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        http/tests/security/mixedContent/insecure-script-in-iframe.html flaky in \
chromium debug +        https://bugs.webkit.org/show_bug.cgi?id=65567
+
+        Reviewed by Eric Seidel.
+
+        My theory is that the extra log message is caused by the preload
+        scanner requesting the script, which might occur if the test is running
+        extremely slowly (as it might on a debug bot).
+
+        This patch simplifies the test in the hopes of removing the flakiness.
+
+        * http/tests/security/mixedContent/insecure-script-in-iframe-expected.txt:
+        * http/tests/security/mixedContent/insecure-script-in-iframe.html:
+        * http/tests/security/mixedContent/resources/frame-with-insecure-script.html:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        http/tests/security/mixedContent/insecure-image-in-main-frame.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=77904
+
+        Reviewed by Darin Adler.
+
+        My theory is that the extra log message is caused by the preload
+        scanner requesting the image, which might occur if the test is running
+        extremely slowly (as it might on a debug bot).
+
+        This patch simplifies the test in the hopes of removing the flakiness.
+
+        * http/tests/security/mixedContent/insecure-image-in-main-frame-expected.txt:
 +        * http/tests/security/mixedContent/insecure-image-in-main-frame.html:
+        * http/tests/security/mixedContent/resources/frame-with-insecure-image.html:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  David Grogan  &lt;dgrogan@chromium.org&gt;
+
+        Port some indexeddb layout tests to workers.
+        https://bugs.webkit.org/show_bug.cgi?id=77805
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/index-basics-workers-expected.txt: Added.
+        * storage/indexeddb/index-basics-workers.html: Added.
+        * storage/indexeddb/index-basics.html:
+        * storage/indexeddb/objectstore-basics-expected.txt:
+        * storage/indexeddb/objectstore-basics-workers-expected.txt: Added.
+        * storage/indexeddb/objectstore-basics-workers.html: Added.
+        * storage/indexeddb/objectstore-basics.html:
+        * storage/indexeddb/resources/index-basics.js: Copied from \
LayoutTests/storage/indexeddb/index-basics.html. +        (test):
+        (setVersion):
+        (deleteExisting):
+        (addData):
+        (addData2):
+        (addData3):
+        (getData):
+        (getObjectData):
+        (getObjectData2):
+        (getObjectData3):
+        (getDataFail):
+        (getObjectDataFail):
+        (getObjectData4):
+        (openKeyCursor):
+        (cursor1Continue):
+        (cursor1Continue2):
+        (cursor1Continue3):
+        (openObjectCursor):
+        (cursor2Continue):
+        (cursor2Continue2):
+        (cursor2Continue3):
+        (last.try.get testFailed):
+        (last):
+        * storage/indexeddb/resources/objectstore-basics.js: Copied from \
LayoutTests/storage/indexeddb/objectstore-basics.html. +        (test):
+        (openSuccess):
+        (setVersionSuccess):
+        (createIndex):
+        (testSetVersionAbort):
+        (createAnotherIndex):
+        (checkMetadata):
+        (addData):
+        (addDateSuccess):
+        (addSuccess):
+        (addAgainFailure):
+        (getSuccess):
+        (getSuccessDateKey):
+        (removeSuccess):
+        (removeSuccessButFalse):
+        (testPreConditions.request.onsuccess):
+        (testPreConditions):
+
+2012-02-06  Stephen Chenney  &lt;schenney@chromium.org&gt;
+
+        RenderSVGShape::strokeContains will fail for some strokes
+        https://bugs.webkit.org/show_bug.cgi?id=76931
+
+        Reviewed by Darin Adler.
+
+        New tests for hit testing against an SVG path of zero length with
+        endcaps.
+
+        * svg/hittest/zero-length-butt-cap-path-expected.txt: Added.
+        * svg/hittest/zero-length-butt-cap-path.xhtml: Added.
+        * svg/hittest/zero-length-round-cap-path-expected.txt: Added.
+        * svg/hittest/zero-length-round-cap-path.xhtml: Added.
+        * svg/hittest/zero-length-square-cap-path-expected.txt: Added.
+        * svg/hittest/zero-length-square-cap-path.xhtml: Added.
+
+2012-02-06  Philip Rogers  &lt;pdr@google.com&gt;
+
+        Fix color animations by value
+        https://bugs.webkit.org/show_bug.cgi?id=77812
+
+        Reviewed by Darin Adler.
+
+        * svg/animations/animate-color-fill-from-by-expected.txt: Added.
+        * svg/animations/animate-color-fill-from-by.html: Added.
+        * svg/animations/script-tests/animate-color-fill-from-by.js: Added.
+        (checkFillColor):
+        (sample1):
+        (sample2):
+        (sample3):
+        (executeTest):
+
+2012-02-03  Jer Noble  &lt;jer.noble@apple.com&gt;
+
+        REGRESSION (r104303): Clicking inline video controls gives the video a focus \
ring +        https://bugs.webkit.org/show_bug.cgi?id=77288
+
+        Reviewed by Darin Adler.
+
+        * media/video-mouse-focus-expected.txt: Added.
+        * media/video-mouse-focus.html: Added.
+
+2012-02-06  Ehsan Akhgari  &lt;ehsan.akhgari@gmail.com&gt;
+
+        WebGL conformance test misc/functions-returning-strings.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=77149
+
+        Imported the WebGL conformance test related to this.
+
+        Reviewed by Kenneth Russell.
+
+        * fast/canvas/webgl/functions-returning-strings-expected.txt: Added.
+        * fast/canvas/webgl/functions-returning-strings.html: Added.
+
+2012-02-06  Chris Rogers  &lt;crogers@google.com&gt;
+
+        zvmul incorrectly multiplies complex arrays on Windows.
+        https://bugs.webkit.org/show_bug.cgi?id=77900
+
+        Reviewed by Kenneth Russell.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Ami Fischman  &lt;fischman@chromium.org&gt;
+
+        Unreviewed, chromium expectations update.
+        Layout Test http/tests/media/video-served-as-text.html is flaky on cr-win
+        https://bugs.webkit.org/show_bug.cgi?id=72904
+
+        Test is not flaky on XP.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        [Chromium] storage/indexeddb/index-cursor.html timeouts on Mac Debug
+        https://bugs.webkit.org/show_bug.cgi?id=65862
+
+        No sign of this test timing out in recent history, and significant 
+        performance work has been done since it was filed. Unmarking as SLOW/PASS.
+
+        Reviewed by Tony Chang.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed gardening.
+
+        More font differences that need a rebaseline.
+
+        * platform/chromium-linux-x86/fast/canvas/check-stale-putImageData-expected.png: \
Removed. +        * platform/chromium-linux/fast/canvas/check-stale-putImageData-expected.png: \
Added. +        * platform/chromium-win/fast/canvas/check-stale-putImageData-expected.png: \
Added. +
+2012-02-06  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [Chromium] rebaseline test on win/mac after enabling paint opaque tracking \
for draw culling +        https://bugs.webkit.org/show_bug.cgi?id=77497
+
+        Reviewed by James Robinson.
+
+        * platform/chromium-win/fast/repaint/block-selection-gap-in-composited-layer-expected.png: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        http/tests/security/mixedContent/insecure-plugin-in-iframe.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=77901
+
+        Reviewed by Eric Seidel.
+
+        This test fails occationally because of the order of the frame load
+        callbacks.  Now that we log mixed content errors to the console, we
+        don't need to dump the frame load callbacks in this test.
+
+        * http/tests/security/mixedContent/insecure-plugin-in-iframe-expected.txt:
+        * http/tests/security/mixedContent/insecure-plugin-in-iframe.html:
+
+2012-02-06  Cris Neckar  &lt;cdn@chromium.org&gt;
+
+        Test for crash when counter nodes are reparented outside of tables
+        https://bugs.webkit.org/show_bug.cgi?id=75212
+
+        Reviewed by Adam Barth.
+
+        * fast/css/counters/reparent-table-children-with-counters-crash-expected.txt: \
Added. +        * fast/css/counters/reparent-table-children-with-counters-crash.html: \
Added. +
+2012-02-06  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        According to the flakiness dashboard, these tests do appear to be
+        successfully de-flaked.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        Unreviewed rebaseline after r106836.
+
+        The rebaseline is caused by a font difference.
+
+        * platform/chromium-linux-x86/fast/canvas/check-stale-putImageData-expected.png: \
Added. +
+2012-02-06  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        Unreviewed chromium test expectation change
+
+        Unmarking storage/indexeddb/data-corruption.html as TIMEOUT. Was apparently
+        bulk-marked as TIMEOUT on Snow Leopard as part of WK54322 although it is
+        not mentioned in that issue. The test hasn't failed in recent history and
+        there has been substantial rework on the IndexedDB feature since the
+        expectation was set.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Anders Carlsson  &lt;andersca@apple.com&gt;
+
+        Wheel event handler count not updated when adding handlers to the window
+        https://bugs.webkit.org/show_bug.cgi?id=77895
+
+        Reviewed by Dan Bernstein.
+
+        * fast/events/wheelevent-handler-count-expected.txt: Added.
+        * fast/events/wheelevent-handler-count.html: Added.
+
+2012-02-05  Gustavo Noronha Silva  &lt;gns@gnome.org&gt;
+
+        [GTK] Insta-crash when closing browser with inspector window opened
+        https://bugs.webkit.org/show_bug.cgi?id=50744
+
+        Reviewed by Martin Robinson.
+
+        * platform/gtk/Skipped: unskip inspector/debugger/open-close-open.html,
+        which now passes.
+
+2012-02-06  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        IndexedDB: Raise exception during add/put call if autoIncrement key \
insertion will fail +        https://bugs.webkit.org/show_bug.cgi?id=77374
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/keypath-edges-expected.txt:
+        * storage/indexeddb/keypath-edges.html:
+
+2012-02-06  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        [Chromium] Test fast/forms/listbox-clear-restore.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=77889
+
+        Unreviewed gardening.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Eugene Girard  &lt;girard@chromium.org&gt;
+
+        IndexedDB createObjectStore should throw if options arg is invalid (not an \
object). +        Added unit tests to test invalid arguments.
+        storage/indexddb/transaction-basics was modified only to correct calls that \
would  +        now throw.
+        https://bugs.webkit.org/show_bug.cgi?id=58471
+
+        Reviewed by Adam Barth.
+
+        * storage/indexeddb/create-object-store-options-expected.txt:
+        * storage/indexeddb/create-object-store-options.html:
+        * storage/indexeddb/index-basics-expected.txt:
+        * storage/indexeddb/index-basics.html:
+        * storage/indexeddb/resources/shared.js:
+        (evalAndExpectExceptionClass):
+        * storage/indexeddb/transaction-basics-expected.txt:
+        * storage/indexeddb/transaction-basics.html:
+        * storage/indexeddb/tutorial.html:
+
+2012-02-06  Jesus Sanchez-Palencia  &lt;jesus.palencia@openbossa.org&gt;
+
+        [Qt][WK2] http/tests/loading/state-object-security-exception.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=62731
+
+        Unreviewed gardening.
+
+        Skipped 3 tests because they were still failing after \
http://trac.webkit.org/changeset/106812 . +        Skipped tests were:
+        fast/history/form-submit-in-frame-via-onclick.html
+        fast/history/form-submit-in-frame.html
+        http/tests/loading/state-object-security-exception.html
+
+        * platform/qt-wk2/Skipped:
+
+2012-02-06  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106797 and r106806.
+        http://trac.webkit.org/changeset/106797
+        http://trac.webkit.org/changeset/106806
+        https://bugs.webkit.org/show_bug.cgi?id=77888
+
+        The change is still causing some crashes in webaudio/ on the
+        Chromium bots (Requested by jchaffraix on #webkit).
+
+        * fast/events/resources/suspend-subframe-1.html: Removed.
+        * fast/events/resources/suspend-subframe-2.html: Removed.
+        * fast/events/suspend-timers-expected.txt: Removed.
+        * fast/events/suspend-timers.html: Removed.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash in SubframeLoader::loadSubframe.
+        https://bugs.webkit.org/show_bug.cgi?id=77345
+
+        Reviewed by Nate Chapin.
+
+        * fast/frames/resources/subframe-load-crash.svg: Added.
+        * fast/frames/subframe-load-crash-main-expected.txt: Added.
+        * fast/frames/subframe-load-crash-main.html: Added.
+
+2012-02-06  Jesus Sanchez-Palencia  &lt;jesus.palencia@openbossa.org&gt;
+
+        [Qt][WK2] http/tests/loading/state-object-security-exception.html fails
+        https://bugs.webkit.org/show_bug.cgi?id=62731
+
+        Rubber stamped by Csaba Osztrogonác.
+
+        Unskipping tests that were kept as skipped even after
+        https://bugs.webkit.org/show_bug.cgi?id=42333 was fixed.
+
+        * platform/wk2/Skipped:
+
+2012-02-06  Alexei Filippov  &lt;alexeif@chromium.org&gt;
+
+        Web Inspector: Redesign summary view / retaining tree contents
+        https://bugs.webkit.org/show_bug.cgi?id=77870
+
+        Reviewed by Pavel Feldman.
+
+        1. Make object IDs less contrast.
+        2. Put array indices in [].
+        3. Do not write type if it's just &quot;Object&quot;.
+
+        * inspector/profiler/detailed-heapshots-test.js:
+        (initialize_DetailedHeapshotTest.):
+        (initialize_DetailedHeapshotTest):
+
+2012-02-03  Hans Wennborg  &lt;hans@chromium.org&gt;
+
+        Speech input: fix fast/speech/bubble-position.html
+        https://bugs.webkit.org/show_bug.cgi?id=77732
+
+        Reviewed by Tony Gentilcore.
+
+        There is no need for the test to check the pixel-exact position of the
+        rect, since that seems to vary a little between platforms.
+        The point of the test is to check that the rect is within the iframe,
+        so let's do that.
+
+        * fast/speech/bubble-position-expected.txt:
+        * fast/speech/bubble-position.html:
+
+2012-02-06  Allan Sandfeld Jensen  &lt;allan.jensen@nokia.com&gt;
+
+        Test that timers do not fire from subframes of suspended documents.
+        https://bugs.webkit.org/show_bug.cgi?id=53733
+
+        Reviewed by Mihai Parparita.
+
+        * fast/events/resources/suspend-subframe-1.html: Added.
+        * fast/events/resources/suspend-subframe-2.html: Added.
+        * fast/events/suspend-timers-expected.txt: Added.
+        * fast/events/suspend-timers.html: Added.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-06  Hayato Ito  &lt;hayato@chromium.org&gt;
+
+        Add &lt;shadow&gt; element, which is guarded by SHADOW_DOM flag.
+        https://bugs.webkit.org/show_bug.cgi?id=76435
+
+        Reviewed by Dimitri Glazkov.
+
+        Test: fast/dom/shadow/shadow-element.html
+
+        * fast/dom/shadow/shadow-element-expected.txt: Added.
+        * fast/dom/shadow/shadow-element.html: Added.
+
+2012-02-06  Joe Thomas  &lt;joethomas@motorola.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=76995.
+        WebKit fails IETC :indeterminate and input type=radio test.
+
+        All input types should respect indeterminate property(getter and setter). \
This is true with other browsers. +        Indeterminate appearance for radio input \
type is supported by IOS platform. Webkit need not support indeterminate appearance + \
for radio input type on other platforms. +
+        Reviewed by Kent Tamura.
+
+        * fast/forms/indeterminate-input-types-expected.txt: Added.
+        * fast/forms/indeterminate-input-types.html: Added.
+        * fast/forms/indeterminate-radio.html:
+
+2012-02-06  Nikolas Zimmermann  &lt;nzimmermann@rim.com&gt;
+
+        Not reviewed. Switch to unix file endings and at a trailing newline - \
hopefully the bots will accept my follow up patch then. +
+        * svg/filters/invalidate-on-child-layout.svg:
+
+2012-02-06  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Layout Test http/tests/security/xssAuditor/dom-write-innerHTML.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=67538
+
+        Reviewed by Kentaro Hara.
+
+        Try to fix the flakiness in this test by kicking off the &lt;img&gt; load
+        before the load event has fired for the inner frame.  That way, the
+        load event for the main frame will be delayed until the image finishes
+        loading (and its error handler has fired), removing the need for the
+        setTimeout.
+
+        * http/tests/security/xssAuditor/dom-write-innerHTML.html:
+        * http/tests/security/xssAuditor/resources/echo-dom-write-innerHTML.html:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-05  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        xss-DENIED-from-data-url-in-foreign-domain-subframe.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=77849
+
+        Reviewed by Kentaro Hara.
+
+        This test doesn't seem to be sequenced correctly w.r.t. the load events
+        of the various frames involved.  This patch re-orders some of the
+        triggers in the hopes of making the test no longer flaky.
+
+        * http/tests/security/dataURL/resources/foreign-domain-data-url-accessor-iframe.html:
 +        * http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe-expected.txt:
 +        * http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe.html:
 +        * platform/chromium/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe-expected.txt:
 +        * platform/chromium/test_expectations.txt:
+
+2012-02-05  Abhishek Arya  &lt;inferno@chromium.org&gt;
+
+        Crash in FormSubmission::create.
+        https://bugs.webkit.org/show_bug.cgi?id=77813
+
+        Reviewed by Kent Tamura.
+
+        * fast/forms/form-submission-create-crash-expected.txt: Added.
+        * fast/forms/form-submission-create-crash.xhtml: Added.
+
+2012-02-05  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Rebaseline xss-inactive-closure.html.  This test &quot;fails&quot; because \
of a +        subtle difference in how V8 and JSC do security checks.  Essentially,
+        V8 does security checks based on the current ScriptExecutionContext
+        whereas JSC does security checks based on the current DOMWindow.  I'm
+        working on fixing these differences in bugs like
+        https://bugs.webkit.org/show_bug.cgi?id=75793, but it's a long road.
+
+        In any case, the behavior indicated by this test is fine from a
+        security point of view, so it's better to rebaseline this test because
+        that will let us detect future regressions.
+
+        * platform/chromium/http/tests/security/listener/xss-inactive-closure-expected.txt: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-05  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Rebaseline xss-DENIED-defineProperty.  These V8-specific results appear
+        to also be passing, just with slightly fewer console messages.
+
+        * platform/chromium/http/tests/security/xss-DENIED-defineProperty-expected.txt: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-05  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Further cleanup of failing and flaky security LayoutTests.  This patch
+        updates the expectations to match the behavior as described by the
+        flakiness dashboard.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-05  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        This test is no longer flaky.  It appears to pass all the time.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-04  Ken Buchanan  &lt;kenrb@chromium.org&gt;
+
+        Crash when reparenting children of flexible boxes
+        https://bugs.webkit.org/show_bug.cgi?id=77458
+
+        Reviewed by Ojan Vafai.
+
+        This test case reparents a block node from under a flexible box so
+        that only anonymous blocks and floating generated blocks remain.
+        A recent patch caused these anonymous blocks to be collapsed, which
+        is incorrect.
+
+        * fast/css-generated-content/remove-div-from-flexible-box-with-floating-after-content-crash-expected.txt: \
Added +        * fast/css-generated-content/remove-div-from-flexible-box-with-floating-after-content-crash.html: \
Added +
+2012-02-03  Andreas Kling  &lt;awesomekling@apple.com&gt;
+
+        Kill per-Attribute style declarations.
+        &lt;http://webkit.org/b/77204&gt;
+
+        Reviewed by Antti Koivisto.
+
+        Rebaselined 3 inspector tests since attribute styles are no longer shown \
per-attribute. +
+        * inspector/elements/elements-panel-styles-expected.txt:
+        * inspector/styles/styles-computed-trace-expected.txt:
+        * inspector/styles/styles-new-API-expected.txt:
+
+2012-02-04  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        http/tests/security/xss-eval fails due to difference in JSC and V8 eval
+        https://bugs.webkit.org/show_bug.cgi?id=77806
+
+        Reviewed by Eric Seidel.
+
+        Both the JSC and V8 behaviors are reasonable in this case.  This patch
+        modifies the test to show that either behavior isn't a security
+        vulnerability.
+
+        * http/tests/security/xss-eval.html:
+        * platform/chromium/http/tests/security/xss-eval-expected.txt:
+        * platform/chromium/test_expectations.txt:
+
+2012-02-04  David Grogan  &lt;dgrogan@chromium.org&gt;
+
+        IndexedDB: mark quota layout test WONTFIX
+        https://bugs.webkit.org/show_bug.cgi?id=77459
+
+        Reviewed by Tony Chang.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-04  Swapna P  &lt;spottabathini@innominds.com&gt;
+
+        Reviewed by Antonio Gomes.
+        
+        Bug: iframe with scrolling=no incorrectly autoscrollable
+        https://bugs.webkit.org/show_bug.cgi?id=61558
+        
+        Did change inorder to print correct log as per the description provided in \
test case. +        
+        * fast/events/autoscroll-with-non-scrollable-parent.html:
+
+2012-02-03  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Add a Chromium-specific baseline for this test.  These results appear to be \
passing. +
+        * platform/chromium-win/http/tests/security/cross-frame-access-put-expected.txt: \
Removed. +        * platform/chromium/http/tests/security/cross-frame-access-put-expected.txt: \
Added. +        * platform/chromium/test_expectations.txt:
+
+2012-02-03  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Crash in Node::dispatchSubtreeModifiedEvent
+        https://bugs.webkit.org/show_bug.cgi?id=77449
+
+        Reviewed by Alexey Proskuryakov.
+
+        Add a regression test for the crash.
+
+        * fast/dom/remove-body-during-title-creation-expected.txt: Added.
+        * fast/dom/remove-body-during-title-creation.html: Added.
+
+2012-02-03  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        IndexedDB: Key generators not rolled back if insertion fails or is aborted
+        https://bugs.webkit.org/show_bug.cgi?id=77060
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/key-generator-expected.txt: Added.
+        * storage/indexeddb/key-generator.html: Added.
+
+2012-02-03  Tony Chang  &lt;tony@chromium.org&gt;
+
+        positive and negative flex values are not being cleared on style changes
+        https://bugs.webkit.org/show_bug.cgi?id=77771
+
+        Reviewed by Ojan Vafai.
+
+        * css3/flexbox/flex-no-flex-expected.txt: Added.
+        * css3/flexbox/flex-no-flex.html: Added.
+
+2012-02-03  Mihnea Ovidenie  &lt;mihnea@adobe.com&gt;
+
+        Crash in RenderFlowThread::setRegionBoxesRegionStyle
+        https://bugs.webkit.org/show_bug.cgi?id=77474
+
+        Reviewed by David Hyatt.
+
+        * fast/regions/flexbox-in-region-crash-expected.txt: Added.
+        * fast/regions/flexbox-in-region-crash.html: Added.
+        * fast/regions/select-in-region-crash-expected.txt: Added.
+        * fast/regions/select-in-region-crash.html: Added.
+
+2012-02-03  Elliot Poger  &lt;epoger@google.com&gt;
+
+        complete rebaseline of box-shadow-clipped-slices
+        https://bugs.webkit.org/show_bug.cgi?id=77565
+
+        Reviewed by Darin Adler.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-03  David Grogan  &lt;dgrogan@chromium.org&gt;
+
+        Make js-test-pre.js more worker friendly
+        https://bugs.webkit.org/show_bug.cgi?id=77487
+
+        Replace uses of 'window' with 'self'.
+
+        Reviewed by Ojan Vafai.
+
+        * fast/js/resources/js-test-pre.js:
+        * storage/indexeddb/resources/basics.js:
+
+2012-02-03  Jochen Eisinger  &lt;jochen@chromium.org&gt;
+
+        Remove unneccesary canExecuteScripts check from v8 bindings, and correctly \
indeicate when we're about to execute a script +        \
https://bugs.webkit.org/show_bug.cgi?id=76704 +
+        Reviewed by Adam Barth.
+
+        * http/tests/security/isolatedWorld/resources/fail.html:
+        * http/tests/security/isolatedWorld/sandboxed-iframe-expected.txt:
+        * http/tests/security/isolatedWorld/sandboxed-iframe.html:
+
+2012-02-03  Dan Bernstein  &lt;mitz@apple.com&gt;
+
+        &lt;rdar://problem/10352073&gt; Floating image leaves hole in previous \
column when wrapped to next column +        \
https://bugs.webkit.org/show_bug.cgi?id=77694 +
+        Reviewed by Darin Adler.
+
+        * fast/dynamic/float-moved-downwards-for-pagination-expected.html: Added.
+        * fast/dynamic/float-moved-downwards-for-pagination.html: Added.
+
+2012-02-03  Alexis Menard  &lt;alexis.menard@openbossa.org&gt;
+
+        REGRESSION (r105401-105403): Blue flash on css border transition
+        https://bugs.webkit.org/show_bug.cgi?id=77491
+
+        Reviewed by Simon Fraser.
+
+        * animations/animation-border-overflow-expected.txt: Added.
+        * animations/animation-border-overflow.html: Added.
+
+2012-02-03  Jesus Sanchez-Palencia  &lt;jesus.palencia@openbossa.org&gt;
+
+        [Qt][WK2] Incorrect line number dumping
+        https://bugs.webkit.org/show_bug.cgi?id=60074
+
+        Reviewed by Csaba Osztrogonác.
+
+        Test http/tests/security/contentSecurityPolicy/eval-blocked.html
+        is now passing, unskipping it.
+
+        * platform/qt-wk2/Skipped:
+
+2012-02-03  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106654.
+        http://trac.webkit.org/changeset/106654
+        https://bugs.webkit.org/show_bug.cgi?id=77742
+
+        triggers asserts on mac, win, gtk, qt debug bots (Requested by
+        philn-tp on #webkit).
+
+        * fast/events/resources/suspend-subframe-1.html: Removed.
+        * fast/events/resources/suspend-subframe-2.html: Removed.
+        * fast/events/suspend-timers-expected.txt: Removed.
+        * fast/events/suspend-timers.html: Removed.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-02  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: Introduce &quot;Copy XPath&quot; popup menu item for DOM \
elements +        https://bugs.webkit.org/show_bug.cgi?id=77619
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/elements/node-xpath-expected.txt: Added.
+        * inspector/elements/node-xpath.xhtml: Added.
+
+2012-02-03  Yury Semikhatsky  &lt;yurys@chromium.org&gt;
+
+        inspector/debugger/pause-in-inline-script.html asserts in chromium debug
+        https://bugs.webkit.org/show_bug.cgi?id=77663
+
+        Reviewed by Pavel Feldman.
+
+        * platform/chromium/test_expectations.txt: assert was fixed, remove
+          custom expectation for inspector/debugger/pause-in-inline-script.html
+
+2012-01-27  Yury Semikhatsky  &lt;yurys@chromium.org&gt;
+
+        Web Inspector: console evaluation doesn't work on breakpoint in pages with \
CSP +        https://bugs.webkit.org/show_bug.cgi?id=77203
+
+        Inspector console evaluation now works when debugger is paused in a page \
with +        content-security-policy prohibiting evals.
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/debugger/eval-on-pause-blocked-expected.txt: Added.
+        * inspector/debugger/eval-on-pause-blocked.html: Added.
+
+2012-02-03  Allan Sandfeld Jensen  &lt;allan.jensen@nokia.com&gt;
+
+        Test that timers do not fire from subframes of suspended documents.
+        https://bugs.webkit.org/show_bug.cgi?id=53733
+
+        Reviewed by Mihai Parparita.
+
+        * fast/events/resources/suspend-subframe-1.html: Added.
+        * fast/events/resources/suspend-subframe-2.html: Added.
+        * fast/events/suspend-timers-expected.txt: Added.
+        * fast/events/suspend-timers.html: Added.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-03  Zoltan Arvai  &lt;zarvai@inf.u-szeged.hu&gt;
+
+        New test introduced in r106642 failes on Qt Linux Release
+        https://bugs.webkit.org/show_bug.cgi?id=77729
+
+        Reviewed by Csaba Osztrogonác.
+
+        * platform/qt/Skipped:
+
+2012-01-27  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Implement touch event emulation in the WebCore layer
+        https://bugs.webkit.org/show_bug.cgi?id=77105
+
+        Reviewed by Ryosuke Niwa.
+
+        * fast/events/touch/emulate-touch-events-expected.txt: Added.
+        * fast/events/touch/emulate-touch-events.html: Added.
+
+2012-02-03  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        Group all the security failures together.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-03  Pavel Feldman  &lt;pfeldman@google.com&gt;
+
+        Web Inspector: preserve elements panel selection upon node drag'n'drop
+        https://bugs.webkit.org/show_bug.cgi?id=77722
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/elements/move-node-expected.txt: Added.
+        * inspector/elements/move-node.html: Added.
+
+2012-02-03  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        Reimplement DETAILS and SUMMARY using selector query.
+        https://bugs.webkit.org/show_bug.cgi?id=75930
+
+        Since the implementation of DETAILS shadow tree, the path of caret position \
is also changed. +
+        Reviewed by Hajime Morita.
+
+        * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.txt:
 +        * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.txt:
 +        * platform/gtk/fast/html/details-remove-summary-1-and-click-expected.txt:
+        * platform/gtk/fast/html/details-remove-summary-4-and-click-expected.txt:
+        * platform/mac/fast/html/details-remove-summary-1-and-click-expected.txt:
+        * platform/mac/fast/html/details-remove-summary-4-and-click-expected.txt:
+        * platform/qt/fast/html/details-remove-summary-1-and-click-expected.txt:
+        * platform/qt/fast/html/details-remove-summary-4-and-click-expected.txt:
+
+2012-02-02  Alexei Filippov  &lt;alexeif@chromium.org&gt;
+
+        Web Inspector: Always show percents together with counters in heap \
inspector. +        https://bugs.webkit.org/show_bug.cgi?id=77434
+
+        Added parseInt conversion as counters are now strings not ints.
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/profiler/detailed-heapshots-comparison-show-all.html:
+        * inspector/profiler/detailed-heapshots-comparison-show-next.html:
+        * inspector/profiler/detailed-heapshots-summary-show-all.html:
+
+2012-02-02  Matt Falkenhagen  &lt;falken@chromium.org&gt;
+
+        Use content-language from http-equiv to set document locale and font
+        https://bugs.webkit.org/show_bug.cgi?id=76701
+
+        Reviewed by Darin Adler.
+
+        Add tests that content-language from http-equiv sets document locale and is \
used in font selection. +
+        * fast/text/content-language-case-insensitivity-expected.txt: Added.
+        * fast/text/content-language-case-insensitivity.html: Added.
+        * fast/text/content-language-mapped-to-webkit-locale-expected.txt: Added.
+        * fast/text/content-language-mapped-to-webkit-locale.html: Added.
+        * fast/text/international/content-language-font-selection-expected.html: \
Added. +        * fast/text/international/content-language-font-selection.html: \
Added. +        * fast/text/international/content-language-with-subtags-expected.html: \
Added. +        * fast/text/international/content-language-with-subtags.html: Added.
+        * fast/text/lang-mapped-to-webkit-locale-expected.txt:
+        * fast/text/lang-mapped-to-webkit-locale.xhtml: Fix some style issues.
+        * fast/text/xml-lang-ignored-in-html-expected.txt:
+        * fast/text/xml-lang-ignored-in-html.html: Fix some style issues.
+        * platform/efl/Skipped: Skip tests using \
overridePreference(&quot;WebKit*FontMap&quot;...) on non-Chromium ports. +        * \
platform/gtk-wk2/Skipped: Ditto. +        * platform/gtk/Skipped: Ditto.
+        * platform/mac/Skipped: Ditto.
+        * platform/qt/Skipped: Ditto.
+        * platform/win/Skipped: Ditto.
+        * platform/wincairo/Skipped: Ditto.
+        * platform/wk2/Skipped: Ditto.
+
+2012-02-02  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening after r106554.
+
+        * platform/qt/Skipped: Skip one more failing test.
+
+2012-02-02  Mike Lawther  &lt;mikelawther@chromium.org&gt;
+
+        gradient tests for CSS3 calc
+        https://bugs.webkit.org/show_bug.cgi?id=75822
+
+        Reviewed by Hajime Morita.
+
+        Tests for future implementation of CSS3 calc() (see \
http://webkit.org/b/16662) +
+        These tests are expected to 'fail', and will pass once calc() functionality \
is landed. +        For now, they serve to demonstrate that the current code doesn't \
crash on these tests. +
+        * css3/calc/css3-radial-gradients-expected-mismatch.html: Added.
+        * css3/calc/css3-radial-gradients.html: Added.
+        * css3/calc/gradient-color-stops-expected-mismatch.html: Added.
+        * css3/calc/gradient-color-stops.html: Added.
+
+2012-02-02  Bear Travis  &lt;betravis@adobe.com&gt;
+
+        Support 'disabled' attribute on SVGStyleElement
+        https://bugs.webkit.org/show_bug.cgi?id=52130
+
+        Test the disabled property of an svg style element.
+        Based off of the patch for bug 25287.
+
+        Reviewed by Dirk Schulze.
+
+        * svg/dom/SVGStyleElement/disable-svg-style-element-expected.txt: Added.
+        * svg/dom/SVGStyleElement/disable-svg-style-element.html: Added.
+        * svg/dom/SVGStyleElement/script-tests/disable-svg-style-element.js: Added.
+        (createStyle):
+
+2012-02-02  Raymond Toy  &lt;rtoy@chromium.org&gt;
+
+        Check parameters to biquad filters
+        https://bugs.webkit.org/show_bug.cgi?id=71413
+
+        Reviewed by Kenneth Russell.
+        
+        * webaudio/biquad-allpass-expected.txt: Added
+        * webaudio/biquad-allpass.html: Added
+        * webaudio/biquad-bandpass-expected.txt: Added
+        * webaudio/biquad-bandpass.html: Added
+        * webaudio/biquad-highpass-expected.txt: Added
+        * webaudio/biquad-highpass.html: Added
+        * webaudio/biquad-highshelf-expected.txt: Added
+        * webaudio/biquad-highshelf.html: Added
+        * webaudio/biquad-lowpass-expected.txt: Added
+        * webaudio/biquad-lowpass.html: Added
+        * webaudio/biquad-lowshelf-expected.txt: Added
+        * webaudio/biquad-lowshelf.html: Added
+        * webaudio/biquad-notch-expected.txt: Added
+        * webaudio/biquad-notch.html: Added
+        * webaudio/biquad-peaking-expected.txt: Added
+        * webaudio/biquad-peaking.html: Added
+        * webaudio/resources/biquad-testing.js: Added
+
+2012-02-02  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        Refactoring: Share test drivers of shadow content tests.
+        https://bugs.webkit.org/show_bug.cgi?id=77584
+
+        Extracts shared test code from content-element-move.html and \
content-element-select-dynamic.html. +        This test framework will be used a few \
more times. +
+        Reviewed by Hajime Morita.
+
+        * fast/dom/resources/shadow-test-driver.js: Added.
+        (log):
+        (cleanUp):
+        (removeContainerLines):
+        (check):
+        (createSpanWithText):
+        (createContentWithSelect):
+        (appendShadow):
+        (appendShadowDeep):
+        (doTestIfLeft.callIfDone):
+        (doneTest):
+        (doTest):
+        * fast/dom/shadow/content-element-move.html:
+        * fast/dom/shadow/content-element-select-dynamic.html:
+
+2012-02-02  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        StyleRecalc should occur when shadow root exists and light children are \
changed. +        https://bugs.webkit.org/show_bug.cgi?id=76262
+
+        Reviewed by Hajime Morita.
+
+        Tests for dynamic content fallback.
+        Also, unnecessary RenderText objects in previous test expectations were \
removed. +
+        * fast/dom/shadow/shadow-contents-fallback-dynamic-expected.txt: Added.
+        * fast/dom/shadow/shadow-contents-fallback-dynamic.html: Added.
+        * platform/chromium-win/fast/html/details-remove-child-2-expected.txt:
+        * platform/gtk/fast/html/details-remove-child-2-expected.txt:
+        * platform/mac/fast/html/details-remove-child-2-expected.txt:
+        * platform/qt/fast/html/details-remove-child-2-expected.txt:
+
+2012-02-02  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        noteGrainOn needs more tests
+        https://bugs.webkit.org/show_bug.cgi?id=77225
+
+        Reviewed by Kenneth Russell.
+
+        * webaudio/note-grain-on-play.html: Added.
+        * webaudio/note-grain-on-play-expected.txt: Added.
+        * webaudio/note-grain-on-timing.html: Refactored to use new
+        functions in note-grain-on-testing.js.
+        * webaudio/note-grain-on-timing-expected.txt: Updated.
+        * webaudio/resources/audio-testing.js:
+        (grainLengthInSampleFrames):  Utility to compute length of a grain
+        in samples.
+        * webaudio/resources/note-grain-on-testing.js: Added.
+        (createSignalBuffer):
+        (findStartAndEndSamples):
+        (playGrain):
+        (playAllGrains):
+        (verifyStarAndtEndTimes): Common functions for note-grain-on-play and
+        note-grain-on-timing tests to use.
+
+2012-02-02  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        Typo in sample-accurate-scheduling layout test?
+        https://bugs.webkit.org/show_bug.cgi?id=75996
+
+        Reviewed by Kenneth Russell.
+
+        * webaudio/sample-accurate-scheduling-expected.txt: Updated
+        * webaudio/sample-accurate-scheduling.html: Fix typo, add test for
+        expected number of events.
+
+2012-02-02  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        Fix up test expectations for two tests that now pass.
+        https://bugs.webkit.org/show_bug.cgi?id=77256
+
+        Reviewed by Eric Seidel.
+
+        * platform/chromium/test_expectations.txt:
+        webaudio/audiobuffersource-playbackrate.html and
+        webaudio/gain.html pass on windows now after the fix for bug
+        76659. Delete these.
+
+2012-02-02  Benjamin Poulain  &lt;bpoulain@apple.com&gt;
+
+        Running a Web Worker on about:blank crashes the interpreter
+        https://bugs.webkit.org/show_bug.cgi?id=77593
+
+        Reviewed by Michael Saboff.
+
+        The Worker thread should not crash if running on an empty page.
+        The timer is necessary to give a chance for the thread to start.
+
+        * fast/workers/empty-worker-nocrash-expected.txt: Added.
+        * fast/workers/empty-worker-nocrash.html: Added.
+
+2012-02-02  Filip Pizlo  &lt;fpizlo@apple.com&gt;
+
+        retrieveCallerFromVMCode should call trueCallerFrame
+        https://bugs.webkit.org/show_bug.cgi?id=77684
+
+        Rubber stamped by Oliver Hunt.
+
+        * fast/js/dfg-inline-function-dot-caller-expected.txt: Added.
+        * fast/js/dfg-inline-function-dot-caller.html: Added.
+        * fast/js/script-tests/dfg-inline-function-dot-caller.js: Added.
+        (resultArray):
+        (object.nonInlineable.nonInlineable.if):
+        (object.nonInlineable):
+        (object.inlineable):
+        (makeInlinableCall):
+        (g):
+
+2012-02-02  Chris Marrin  &lt;cmarrin@apple.com&gt;
+
+        Turn on CSS Filters on Windows
+        https://bugs.webkit.org/show_bug.cgi?id=76667
+
+        Skipped filter test files not supported on Windows
+
+        Reviewed by Adele Peterson.
+
+        * platform/win/Skipped:
+
+2012-02-02  Oliver Hunt  &lt;oliver@apple.com&gt;
+
+        Getters and setters cause line numbers in errors/console.log to be offset \
for the whole file +        https://bugs.webkit.org/show_bug.cgi?id=77675
+
+        Reviewed by Timothy Hatcher.
+
+        Add getter and setter line number tests.
+
+        * fast/js/exception-linenums-expected.txt:
+        * fast/js/script-tests/exception-linenums.js:
+        (firstPropIsGetter.get getter):
+        (secondPropIsGetter.prop.1.get getter):
+        (firstPropIsSetter.set setter):
+        (secondPropIsSetter.prop.1.set setter):
+
+2012-02-02  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        Unreviewed, chromium expectations update.
+        Remove custom chromium-mac expectation for fast/canvas/fillPath-shadow.html,
+        since it's failing the same way as chromium win/linux.
+
+        * platform/chromium-mac/fast/canvas/canvas-fillPath-shadow-expected.txt: \
Removed. +        * platform/chromium/test_expectations.txt:
+
+2012-02-02  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106566.
+        http://trac.webkit.org/changeset/106566
+        https://bugs.webkit.org/show_bug.cgi?id=77673
+
+        Broke the Windows build (Requested by jessieberlin on
+        #webkit).
+
+        * platform/win/Skipped:
+
+2012-02-02  Andrew Scherkus  &lt;scherkus@chromium.org&gt;
+
+        Unreviewed, updating Chromium test expectations.
+        https://bugs.webkit.org/show_bug.cgi?id=73681
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-02  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        Unreviewed, chromium expectations update.
+        Mark some touch event tests as crashing, since they're
+        asserting as of r106554.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-02  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        Constant values to set &quot;distanceModel&quot; are undefined
+        https://bugs.webkit.org/show_bug.cgi?id=74273
+
+        Reviewed by Kenneth Russell.
+
+        * webaudio/distance-exponential-expected.txt: Added.
+        * webaudio/distance-exponential.html: Added.
+        * webaudio/distance-inverse-expected.txt: Added.
+        * webaudio/distance-inverse.html: Added.
+        * webaudio/distance-linear-expected.txt: Added.
+        * webaudio/distance-linear.html: Added.
+        * webaudio/resources/distance-model-testing.js: Added.
+        (createImpulseBuffer):
+        (linearDistance):
+        (exponentialDistance):
+        (inverseDistance):
+        (createGraph):
+        (startSources):
+        (equalPowerGain):
+        (checkDistanceResult.return.renderedBuffer):
+        (checkDistanceResult):
+
+2012-02-02  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        Illegal panner model values should throw an exception
+        https://bugs.webkit.org/show_bug.cgi?id=77235
+
+        Reviewed by Kenneth Russell.
+
+        * webaudio/panner-set-model-expected.txt: Updated.
+        * webaudio/panner-set-model.html: Catch the errors that are thrown
+        for invalid panning model values.
+        * platform/chromium/test_expectations.txt: Remove test that no
+        longer crashes.
+
+2012-02-02  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        Unreviewed, chromium expectations update.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-02  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Chromium rebaseline after r106543.
+
+        * platform/chromium/fast/events/remove-target-with-shadow-in-drag-expected.txt: \
Added. +
+2012-02-02  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt][WK2] Unreviewed gardening.
+        https://bugs.webkit.org/show_bug.cgi?id=67485
+
+        * platform/qt-wk2/Skipped:
+          - fast/dom/Window/window-properties.html: unskip, it needed only update
+          - fast/text/complex-preferred-logical-widths.html: unskip, it passes now
+          - http/tests/loading/empty-urls.html: unskip, it doesn't exist now
+          - http/tests/loading/progress-finished-callback.html: move to the correct \
place +        * platform/qt-wk2/fast/dom/Window/window-properties-expected.txt: \
Updated. +
+2012-02-02  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/Skipped: Unskip a now passing test.
+
+2012-02-02  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Paint the Qt Mac bot green.
+
+        * platform/qt-mac/Skipped:
+
+2012-02-02  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] One more unreviewed gardening after r106487
+        https://bugs.webkit.org/show_bug.cgi?id=77628
+
+        * platform/qt-5.0/Skipped:
+        * platform/qt-wk2/Skipped:
+        * platform/qt/Skipped: Skip new crashing tests after r106554.
+
+2012-02-02  Chris Marrin  &lt;cmarrin@apple.com&gt;
+
+        Turn on CSS Filters on Windows
+        https://bugs.webkit.org/show_bug.cgi?id=76667
+
+        Skipped filter test files not supported on Windows
+
+        Reviewed by Adele Peterson.
+
+        * platform/win/Skipped:
+
+2012-02-02  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        Unreviewed chromium baselines for new tests in r106551.
+
+        * platform/chromium-mac-leopard/svg/custom/glyph-selection-arabic-forms-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/glyph-selection-arabic-forms-expected.txt: \
Added. +        * platform/chromium-mac-leopard/svg/custom/glyph-selection-bidi-mirror-expected.png: \
Added. +        * platform/chromium-mac-leopard/svg/custom/glyph-selection-non-bmp-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-arabic-forms-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-arabic-forms-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-bidi-mirror-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-bidi-mirror-expected.txt: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-non-bmp-expected.png: \
Added. +        * platform/chromium-mac-snowleopard/svg/custom/glyph-selection-non-bmp-expected.txt: \
Added. +        * platform/chromium-win/svg/custom/glyph-selection-arabic-forms-expected.png: \
Added. +        * platform/chromium-win/svg/custom/glyph-selection-bidi-mirror-expected.png: \
Added. +        * platform/chromium-win/svg/custom/glyph-selection-non-bmp-expected.png: \
Added. +        * platform/chromium-win/svg/custom/glyph-selection-non-bmp-expected.txt: \
Added. +
+2012-02-02  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106551.
+        http://trac.webkit.org/changeset/106551
+        https://bugs.webkit.org/show_bug.cgi?id=77648
+
+        Breaking mac and gtk tests due to font differences. (Requested
+        by _pdr_ on #webkit).
+
+        * svg/custom/glyph-selection-arabic-forms-expected.png: Removed.
+        * svg/custom/glyph-selection-arabic-forms-expected.txt: Removed.
+        * svg/custom/glyph-selection-arabic-forms.svg: Removed.
+        * svg/custom/glyph-selection-bidi-mirror-expected.png: Removed.
+        * svg/custom/glyph-selection-bidi-mirror-expected.txt: Removed.
+        * svg/custom/glyph-selection-bidi-mirror.svg: Removed.
+        * svg/custom/glyph-selection-non-bmp-expected.png: Removed.
+        * svg/custom/glyph-selection-non-bmp-expected.txt: Removed.
+        * svg/custom/glyph-selection-non-bmp.svg: Removed.
+
+2012-02-02  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: [REGRESSION] Slow continuous DOM traversal with Up/Down keys
+        https://bugs.webkit.org/show_bug.cgi?id=77643
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/styles/updates-during-dom-traversal-expected.txt: Added.
+        * inspector/styles/updates-during-dom-traversal.html: Added.
+
+2012-02-02  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        fast/speech/bubble-position.html fails on mac
+        https://bugs.webkit.org/show_bug.cgi?id=77641
+
+        Unreviewed expectations update.
+
+        * platform/chromium/test_expectations.txt: Test introduced by 106438, never \
passed on mac. +
+2012-02-02  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt][Mac] Unreviewed gardening, skip new failing tests to paint the bot \
green. +
+        * platform/qt-mac/Skipped:
+
+2012-02-02  Tony Gentilcore  &lt;tonyg@chromium.org&gt;
+
+        Unreviewed rebaseline of imperceptible shadow change.
+
+        * platform/chromium-mac-snowleopard/fast/box-shadow/box-shadow-clipped-slices-expected.png:
 +
+2012-02-02  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening after r106551.
+
+        * platform/qt/Skipped: Skip new tests because of missing testfonts.
+
+2012-02-02  János Badics  &lt;dicska@gmail.com&gt;
+
+        [Qt] Unreviewed gardening after r106487
+        https://bugs.webkit.org/show_bug.cgi?id=77628
+
+        * platform/qt-wk2/Skipped: Skip the test made \
fast/events/resize-subframe.html timeout. +        * \
platform/qt/fast/events/remove-target-with-shadow-in-drag-expected.txt: Added. +
+2012-02-02  Philip Rogers  &lt;pdr@google.com&gt;
+
+        Fix mirroring with SVG fonts
+        https://bugs.webkit.org/show_bug.cgi?id=77067
+
+        Reviewed by Nikolas Zimmermann.
+
+        SVG fonts were incorrectly handling mirrored characters in bidi text.
+        In this change I added the function createStringWithMirroredCharacters
+        which handles mirroring the characters when selecting glyphs for SVG 
+        fonts. I also made a small cosmetic change in the function
+        charactersWithArabicForm, changing the bool parameter &quot;mirror&quot; to \
&quot;rtl&quot; +        which better reflects what it actually does.
+
+        Several new tests were added to test mirroring with SVG fonts in the
+        presence of Arabic forms and non-BMP characters.
+
+        * svg/custom/glyph-selection-arabic-forms-expected.txt: Added.
+        * svg/custom/glyph-selection-arabic-forms.svg: Added.
+        * svg/custom/glyph-selection-bidi-mirror-expected.txt: Added.
+        * svg/custom/glyph-selection-bidi-mirror.svg: Added.
+        * svg/custom/glyph-selection-non-bmp-expected.txt: Added.
+        * svg/custom/glyph-selection-non-bmp.svg: Added.
+
+2012-02-02  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, marking a new test as flaky on GTK.
+
+        * platform/gtk/test_expectations.txt:
+        fast/forms/radio/radio-group.html fails on and off.
+
+2012-02-02  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline and skipping 3 new test failures.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/events/remove-target-with-shadow-in-drag-expected.txt: \
Added. +
+2012-02-02  Raul Hudea  &lt;rhudea@adobe.com&gt;
+
+        Regions should ignore the saved currentRenderFlowThread during repainting
+        because if there are imbricated flow threads, it might end using the wrong \
one. +
+        [CSSRegions] Assert failure in RenderView::computeRectForRepaint
+        https://bugs.webkit.org/show_bug.cgi?id=77430
+
+        Reviewed by David Hyatt.
+
+        * fast/regions/imbricated-flow-threads-crash-expected.txt: Added.
+        * fast/regions/imbricated-flow-threads-crash.html: Added.
+
+2012-02-02  Kentaro Hara  &lt;haraken@chromium.org&gt;
+
+        The third argument of addEventListener/removeEventListener of PeerConnection \
should be optional +        https://bugs.webkit.org/show_bug.cgi?id=77606
+
+        Reviewed by Adam Barth.
+
+        The added test confirms if the third argument of addEventListener() and
+        removeEventListener() is optional.
+
+        * fast/mediastream/peerconnection-eventlistener-optional-argument-expected.txt: \
Added. +        * fast/mediastream/peerconnection-eventlistener-optional-argument.html: \
Added. +
+2012-02-01  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        [GStreamer] FFTFrame implementation
+        https://bugs.webkit.org/show_bug.cgi?id=73545
+
+        Reviewed by Chris Rogers.
+
+        * webaudio/resources/convolution-testing.js:
+        (checkTail1): Adapt convolution threshold for GStreamerFFTFrame
+        implementation, as advised by Chris Rogers.
+
+2012-02-01  Eric Carlson  &lt;eric.carlson@apple.com&gt;
+
+        Consider user's preferred language when choosing text tracks
+        https://bugs.webkit.org/show_bug.cgi?id=74121
+
+        Reviewed by Alexey Proskuryakov.
+
+        * media/track/track-language-preference-expected.txt: Added.
+        * media/track/track-language-preference.html: Added.
+        * media/track/track-prefer-captions-expected.txt: Added.
+        * media/track/track-prefer-captions.html: Added.
+        * platform/mac/Skipped:
+
+2012-02-01  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        Select attribute of HTMLContentElement should be able be changed \
dynamically. +        https://bugs.webkit.org/show_bug.cgi?id=76261
+
+        Reviewed by Hajime Morita.
+
+        Test cases for changing select attribute dynamically.
+
+        * fast/dom/shadow/content-element-select-dynamic-expected.txt: Added.
+        * fast/dom/shadow/content-element-select-dynamic.html: Added.
+
+2012-02-01  Michael Saboff  &lt;msaboff@apple.com&gt;
+
+        Yarr crash with regexp replace
+        https://bugs.webkit.org/show_bug.cgi?id=67454
+
+        Reviewed by Gavin Barraclough.
+
+        New tests to check for proper handling of back references to
+        unmatched subpatterns.
+
+        * fast/js/regexp-backreferences-expected.txt:
+        * fast/js/script-tests/regexp-backreferences.js:
+
+2012-02-01  Pablo Flouret  &lt;pablof@motorola.com&gt;
+
+        Support targetOrigin = &quot;/&quot; in postMessage for sending messages to \
same origin as source document. +        \
https://bugs.webkit.org/show_bug.cgi?id=77580 +
+        Reviewed by Adam Barth.
+
+        * http/tests/security/postMessage/target-origin-expected.txt:
+        * http/tests/security/postMessage/target-origin.html:
+
+2012-02-01  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        calling function on catch block scope containing an eval result in wrong \
this value being passed +        https://bugs.webkit.org/show_bug.cgi?id=77581
+
+        Reviewed by Oliver Hunt.
+
+        javascript:function F(){ return 'F' in this; }; try { throw F; } catch (e) { \
eval(&quot;&quot;); alert(e()); } +
+        * fast/js/eval-var-decl-expected.txt:
+        * fast/js/script-tests/eval-var-decl.js:
+        (checkThis):
+        (testEvalInCatch):
+
+2012-02-01  Florin Malita  &lt;fmalita@google.com&gt;
+
+        Backgrounds in HTML inside foreignObject don't draw
+        https://bugs.webkit.org/show_bug.cgi?id=23111
+
+        Reviewed by Eric Seidel.
+
+        * svg/foreignObject/body-background-expected.png: Added.
+        * svg/foreignObject/body-background-expected.txt: Added.
+        * svg/foreignObject/body-background.svg: Added.
+
+2012-02-01  Oliver Hunt  &lt;oliver@apple.com&gt;
+
+        Add support for inferred function names
+        https://bugs.webkit.org/show_bug.cgi?id=77579
+
+        Reviewed by Gavin Barraclough.
+
+        Update test case results.
+
+        * fast/profiler/anonymous-event-handler-expected.txt:
+        * fast/profiler/anonymous-function-called-from-different-contexts-expected.txt:
 +        * fast/profiler/anonymous-function-calls-built-in-functions-expected.txt:
+        * fast/profiler/anonymous-function-calls-eval-expected.txt:
+        * fast/profiler/built-in-function-calls-anonymous-expected.txt:
+        * fast/profiler/inline-event-handler-expected.txt:
+        * fast/profiler/many-calls-in-the-same-scope-expected.txt:
+        * fast/profiler/multiple-and-different-scoped-anonymous-function-calls-expected.txt:
 +        * fast/profiler/multiple-and-different-scoped-function-calls-expected.txt:
+        * fast/profiler/multiple-anonymous-functions-called-from-the-same-function-expected.txt:
 +        * fast/profiler/nested-anonymous-functon-expected.txt:
+        * fast/profiler/start-and-stop-profiler-multiple-times-expected.txt:
+
+2012-02-01  Mark Hahnenberg  &lt;mhahnenberg@apple.com&gt;
+
+        Replace JSArray destructor with finalizer
+        https://bugs.webkit.org/show_bug.cgi?id=77488
+
+        Reviewed by Geoffrey Garen.
+
+        * fast/js/script-tests/sparse-array.js: Added code to test oscillation \
between  +        sparse and dense arrays.
+        * fast/js/sparse-array-expected.txt:
+
+2012-02-01  Elliot Poger  &lt;epoger@google.com&gt;
+
+        rebaseline box-shadow-clipped-slices
+        https://bugs.webkit.org/show_bug.cgi?id=77565
+
+        Reviewed by Stephen White.
+
+        * platform/chromium-linux/fast/box-shadow/box-shadow-clipped-slices-expected.png:
 +        * platform/chromium-win/fast/box-shadow/box-shadow-clipped-slices-expected.png:
 +
+2012-02-01  Alexis Menard  &lt;alexis.menard@openbossa.org&gt;
+
+        CSSStyleDeclaration.getPropertyPriority() fails for CSS shorthand properties \
with 'important' priority +        https://bugs.webkit.org/show_bug.cgi?id=49058
+
+        Reviewed by Andreas Kling.
+
+        * fast/css/shorthand-priority-expected.txt: Added.
+        * fast/css/shorthand-priority.html: Added.
+
+2012-02-01  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Crash in EventHandler::updateDragAndDrop
+        https://bugs.webkit.org/show_bug.cgi?id=77569
+
+        Reviewed by Alexey Proskuryakov.
+
+        * fast/events/remove-target-with-shadow-in-drag-expected.txt: Added.
+        * fast/events/remove-target-with-shadow-in-drag.html: Added.
+
+2012-02-01  Szilard Ledan  &lt;Ledan-Muntean.Szilard@stud.u-szeged.hu&gt;
+
+        Fixed some lines in the date-constructor.js test.
+        https://bugs.webkit.org/show_bug.cgi?id=75892
+
+        Reviewed by Gavin Barraclough.
+
+        * fast/js/date-constructor-expected.txt:
+        * fast/js/script-tests/date-constructor.js:
+
+2012-02-01  Max Vujovic  &lt;mvujovic@adobe.com&gt;
+
+        Add support for min-width on the table element.
+
+        min-width is not implemented on &lt;table&gt; for table-layout: auto
+        https://bugs.webkit.org/show_bug.cgi?id=76553
+
+        Reviewed by Julien Chaffraix.
+
+        * fast/table/min-width-css-block-table.html: Added.
+        * fast/table/min-width-css-block-table-expected.txt: Added.
+        * fast/table/min-width-css-inline-table.html: Added.
+        * fast/table/min-width-css-inline-table-expected.txt: Added.
+        * fast/table/min-width-html-block-table.html: Added.
+        * fast/table/min-width-html-block-table-expected.txt: Added.
+        * fast/table/min-width-html-inline-table.html: Added.
+        * fast/table/min-width-html-inline-table-expected.txt: Added.
+        * fast/table/script-tests/min-width-css-block-table.js: Added.
+        (computeLogicalWidth):
+        * fast/table/script-tests/min-width-css-inline-table.js: Added.
+        (computeLogicalWidth):
+        * fast/table/script-tests/min-width-helpers.js: Added.
+        (runTests):
+        (createTableStyle):
+        (computeLogicalWidthHelper):
+        (createSpan):
+        * fast/table/script-tests/min-width-html-block-table.js: Added.
+        (computeLogicalWidth):
+        * fast/table/script-tests/min-width-html-inline-table.js: Added.
+        (computeLogicalWidth):
+
+2012-02-01  Brian Salomon  &lt;bsalomon@google.com&gt;
+
+        [SKIA/CHROMIUM] Perform getImageData format conversions using Skia
+        https://bugs.webkit.org/show_bug.cgi?id=77553
+
+        Reviewed by Stephen White.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-01  Nate Chapin  &lt;japhet@chromium.org&gt;
+
+        Test for https://bugs.webkit.org/show_bug.cgi?id=73097.
+        Test adapted from repro case provided by zacklloyd@google.com.
+
+        Reviewed by Darin Adler.
+
+        * fast/events/resources/subframe-with-scrollable-div.html: Added.
+        * fast/events/scroll-div-with-prevent-default-in-subframe-expected.txt: \
Added. +        * fast/events/scroll-div-with-prevent-default-in-subframe.html: \
Added. +
+2012-02-01  Mario Sanchez Prada  &lt;msanchez@igalia.com&gt;
+
+        [GTK] editing/inserting/4960120-2.html flaky crash
+        https://bugs.webkit.org/show_bug.cgi?id=76815
+
+        Reviewed by Martin Robinson.
+
+        * platform/gtk/test_expectations.txt: Unskipping tests that
+        shouldn't be crashing from now on.
+
+2012-02-01  Yury Semikhatsky  &lt;yurys@chromium.org&gt;
+
+        Web Inspector: debugger reports wrong sources when paused in inline script \
on page reload +        https://bugs.webkit.org/show_bug.cgi?id=77548
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/debugger/debugger-scripts-expected.txt:
+        * inspector/debugger/pause-in-inline-script-expected.txt: Added.
+        * inspector/debugger/pause-in-inline-script.html: Added.
+        * platform/chromium/inspector/debugger/debugger-scripts-expected.txt:
+
+2012-02-01  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        Content element should be able to be dynamically added/removed/replaced in a \
shadow tree. +        https://bugs.webkit.org/show_bug.cgi?id=76611
+
+        Reviewed by Hajime Morita
+
+        Test cases for appending/removing/replacing content element in a shadow \
tree. +
+        * fast/dom/shadow/content-element-move-expected.txt: Added.
+        * fast/dom/shadow/content-element-move.html: Added.
+
+2012-02-01  Peter Beverloo  &lt;peter@chromium.org&gt;
+
+        getIntersectionList causes transforms to be recalculated in SVG
+        https://bugs.webkit.org/show_bug.cgi?id=77179
+
+        Reviewed by Nikolas Zimmermann.
+
+        Introduce a local variable to store the element's local-to-parent
+        transformation matrix in, removing the need for the const_cast and
+        stopping us from modifying any matrices elsewhere.
+
+        * svg/custom/intersection-list-transforms-expected.png: Added.
+        * svg/custom/intersection-list-transforms-expected.txt: Added.
+        * svg/custom/intersection-list-transforms.svg: Added.
+
+2012-02-01  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: [InspectorIndexedDB] Add tests for database names and \
database structure requests. +        https://bugs.webkit.org/show_bug.cgi?id=77439
+
+        Reviewed by Pavel Feldman.
+
+        * http/tests/inspector/indexeddb/database-names-expected.txt: Added.
+        * http/tests/inspector/indexeddb/database-names.html: Added.
+        * http/tests/inspector/indexeddb/database-structure-expected.txt: Added.
+        * http/tests/inspector/indexeddb/database-structure.html: Added.
+        * http/tests/inspector/indexeddb/indexeddb-test.js: Added.
+        * platform/gtk/Skipped:
+        * platform/mac-leopard/Skipped:
+        * platform/mac-snowleopard/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+
+2012-02-01  Shawn Singh  &lt;shawnsingh@chromium.org&gt;
+
+        Fix the semantics of passing contentsVisible flag to GraphicsLayers
+        https://bugs.webkit.org/show_bug.cgi?id=76975
+
+        Reviewed by Simon Fraser.
+
+        * compositing/visibility/layer-visible-content-expected.txt: rebaselined \
expected result +        * compositing/visibility/layer-visible-content.html: fixed \
height so that result is platform-independent +        * \
platform/chromium/test_expectations.txt: removed fail expectation, it should pass \
now. +
+2012-02-01  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r106445
+
+        * platform/gtk/security/block-test-expected.txt:
+        * platform/gtk/security/block-test-no-port-expected.txt:
+        * platform/gtk/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.txt:
+
+2012-02-01  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [WK2] Unreviewed gardening after r106426.
+        Skip new failing tests because of missing \
layoutTestController.dumpResourceResponseMIMETypes(). +        \
https://bugs.webkit.org/show_bug.cgi?id=42543 +
+        * platform/qt-wk2/Skipped: Remove a test also skipped in wk2/Skipped.
+        * platform/wk2/Skipped:
+
+2012-02-01  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectaion change.
+        plugins/createScriptableObject-before-start.html is flaky on LINUX.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-01  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Implement Error.stack
+        https://bugs.webkit.org/show_bug.cgi?id=66994
+
+        Unreviewed, rolling out r106407.
+
+        * fast/js/exception-properties-expected.txt:
+        * fast/js/script-tests/exception-properties.js:
+        * fast/js/script-tests/stack-trace.js: Removed.
+        * fast/js/stack-trace-expected.txt: Removed.
+        * fast/js/stack-trace.html: Removed.
+        * platform/chromium/test_expectations.txt:
+
+2012-02-01  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectaion change.
+        media/controls-drag-timebar.html passes or times out on WIN and LINUX.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-01  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106432.
+        http://trac.webkit.org/changeset/106432
+        https://bugs.webkit.org/show_bug.cgi?id=77529
+
+        it breaks tests (Requested by shinyak on #webkit).
+
+        * fast/dom/shadow/content-element-move-expected.txt: Removed.
+        * fast/dom/shadow/content-element-move.html: Removed.
+
+2012-02-01  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectaion change.
+        svg/text/text-align-04-b.svg is flaky on WIN and LINUX.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-01  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Reviewed by Martin Robinson.
+
+        [GTK] Improve FrameLoader signals. Resource loading
+        https://bugs.webkit.org/show_bug.cgi?id=49543
+
+        Unskip tests now passing.
+
+        * platform/gtk/Skipped:
+        * platform/gtk/fast/loader/file-protocol-fragment-expected.txt: Added.
+        * platform/gtk/http/tests/misc/willCacheResponse-delegate-callback-expected.txt:
 +
+2012-02-01  Balazs Ankes  &lt;Ankes.Balazs@stud.u-szeged.hu&gt;
+
+        [Qt] Unreviewed gardening after r106373.
+
+        * fast/forms/implicit-submission-expected.txt:
+        * platform/qt/fast/dom/Window/window-properties-expected.txt:
+        * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/qt/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/qt/fast/js/global-constructors-expected.txt:
+        * platform/qt/http/tests/security/cross-frame-access-put-expected.txt:
+
+2012-02-01  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        https://bugs.webkit.org/show_bug.cgi?id=77521
+        fast/repaint/search-field-cancel.html is failing on LINUX.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-01  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        fast/repaint/textarea-set-disabled.html is failing.
+        https://bugs.webkit.org/show_bug.cgi?id=77521
+
+        * platform/chromium/test_expectations.txt:
+
+2012-02-01  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        Layout Test fast/forms/textfield-overflow.html is failing on WIN and LINUX.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-31  Hans Wennborg  &lt;hans@chromium.org&gt;
+
+        Speech Input: Report speech element rect relative to window rather than \
frame +        https://bugs.webkit.org/show_bug.cgi?id=76443
+
+        Reviewed by Darin Fisher.
+
+        Add layout test to check that the element position used when
+        requesting speech input is relative to the window, not the frame.
+
+        * fast/speech/bubble-position-expected.txt: Added.
+        * fast/speech/bubble-position.html: Added.
+
+2012-02-01  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK rebaseline after r106373 and r106361.
+
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+        * platform/gtk/http/tests/security/cross-frame-access-put-expected.txt:
+
+2012-01-31  Hayato Ito  &lt;hayato@chromium.org&gt;
+
+        Add APIs, getElementsByXXX family, to ShadowRoot IDL.
+        https://bugs.webkit.org/show_bug.cgi?id=77323
+
+        Reviewed by Dimitri Glazkov.
+
+        Add APIs (getElementById, getElemesntByTagName, getElementsByClassName and \
getElementsByTagNameNS) +        to ShadowRoot IDL.
+
+        * fast/dom/shadow/shadow-root-js-api-expected.txt:
+        * fast/dom/shadow/shadow-root-js-api.html:
+
+2012-01-31  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        Content element should be able to be dynamically added/removed/replaced in a \
shadow tree. +        https://bugs.webkit.org/show_bug.cgi?id=76611
+
+        Reviewed by Hajime Morita.
+
+        Test cases for appending/removing/replacing content element in a shadow \
tree. +
+        * fast/dom/shadow/content-element-move-expected.txt: Added.
+        * fast/dom/shadow/content-element-move.html: Added.
+
+2012-01-31  Ryuan Choi  &lt;ryuan.choi@samsung.com&gt;
+
+        [EFL] Add basic DRT/Efl implementation to support viewport test.
+        https://bugs.webkit.org/show_bug.cgi?id=77320
+
+        Reviewed by Andreas Kling.
+
+        Remove fast/viewport from Skipped and add some tests which aren't passed.
+        These skipped tests are also in qt/Skipped and gtk/Skipped.
+
+        * platform/efl/Skipped:
+
+2012-01-31  Joe Thomas  &lt;joethomas@motorola.com&gt;
+
+        https://bugs.webkit.org/show_bug.cgi?id=76801
+        Listboxes incorrectly display contents when cleared and then re-populated.
+
+        Whenever the number of items in the listbox is less than the size of listbox \
(number of visible items the listbox can accomodate), +        we set the listbox \
scroll-offset to zero. The scroll-offset of the Scrollbar should also be set to 0 so \
that when the listbox is re-populated, +        scrollbar position and the content \
inside the listbox are in sync. +
+        Added test case.
+
+        Reviewed by Andreas Kling.
+
+        * fast/forms/listbox-clear-restore-expected.html: Added.
+        * fast/forms/listbox-clear-restore.html: Added.
+
+2012-01-31  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        LayoutTest platform/mac/fast/events/non-roman-key-code.html crashes at \
r106422. +
+        * platform/chromium/test_expectations.txt:
+
+2012-01-31  Adam Barth  &lt;abarth@webkit.org&gt;
+
+        HTMLPreloadScanner should understand the &lt;base&gt; element
+        https://bugs.webkit.org/show_bug.cgi?id=77231
+
+        Reviewed by Eric Seidel.
+
+        These tests ensure that we understand the &lt;base&gt; element and that we
+        understand that the first &lt;base&gt; element is the one that maters.
+
+        * fast/preloader/first-base-tag-scanned-wins-expected.txt: Added.
+        * fast/preloader/first-base-tag-scanned-wins.html: Added.
+        * fast/preloader/first-base-tag-wins-expected.txt: Added.
+        * fast/preloader/first-base-tag-wins.html: Added.
+        * fast/preloader/resources/base-image1.png: Copied from \
LayoutTests/fast/preloader/resources/image1.png. +        * \
fast/preloader/resources/base-image2.png: Copied from \
LayoutTests/fast/preloader/resources/image1.png. +        * \
fast/preloader/resources/base-image3.png: Copied from \
LayoutTests/fast/preloader/resources/image1.png. +        * \
fast/preloader/understands-base-tag-expected.txt: Added. +        * \
fast/preloader/understands-base-tag.html: Added. +
+2012-01-31  Adam Klein  &lt;adamk@chromium.org&gt;
+
+        ProcessingInstruction should not be a ContainerNode
+        https://bugs.webkit.org/show_bug.cgi?id=75141
+
+        Reviewed by Darin Adler.
+
+        * fast/dom/processing-instruction-appendChild-exceptions-expected.txt: \
Added. +        * fast/dom/processing-instruction-appendChild-exceptions.xhtml: \
Added. +
+2012-01-31  Matthew Delaney  &lt;mdelaney@apple.com&gt;
+
+        Failing 2d.shadow.enable.off.2.html on Lion
+        https://bugs.webkit.org/show_bug.cgi?id=77489
+
+        Reviewed by Dan Bernstein.
+
+        * platform/mac-lion/Skipped: We can unskip this test now that this patch has \
us passing this test. +
+2012-01-31  Oliver Hunt  &lt;oliver@apple.com&gt;
+
+        Remove unneeded sourceId property
+        https://bugs.webkit.org/show_bug.cgi?id=77495
+
+        Reviewed by Filip Pizlo.
+
+        Update the test for the removal of sourceId
+
+        * fast/js/exception-properties-expected.txt:
+        * fast/js/script-tests/exception-properties.js:
+
+2012-01-31  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        fast/replaced/width100percent-searchfield.html is failing on MAC.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-31  Oliver Hunt  &lt;oliver@apple.com&gt;
+
+        Implement Error.stack
+        https://bugs.webkit.org/show_bug.cgi?id=66994
+
+        Reviewed by Gavin Barraclough.
+
+        Original patch by Juan Carlos Montemayor Elosua.
+
+        Unit tests that contain both normal and special cases for stack trace
+        generation.
+
+        * fast/js/exception-properties-expected.txt:
+        * fast/js/script-tests/exception-properties.js:
+        * fast/js/script-tests/stack-trace.js: Added.
+        (printStack):
+        (hostThrower):
+        (callbacker):
+        (outer):
+        (inner):
+        (evaler):
+        (normalOuter):
+        (normalInner):
+        (scripterInner):
+        (scripterOuter):
+        * fast/js/stack-trace-expected.txt: Added.
+        * fast/js/stack-trace.html: Added.
+        * platform/chromium/test_expectations.txt:
+
+2012-01-31  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        IndexedDB: Re-enable structured-clone test
+        https://bugs.webkit.org/show_bug.cgi?id=77239
+
+        This test was landed disabled, since it was failing. Turns out Date \
serialization +        differs (&quot;PST&quot; vs. &quot;Pacific Standard \
Time&quot;) across machines, so debug statements +        in the test were removed.
+
+        Reviewed by Tony Chang.
+
+        * platform/chromium/test_expectations.txt:
+        * storage/indexeddb/structured-clone-expected.txt:
+        * storage/indexeddb/structured-clone.html:
+
+2012-01-31  Balazs Kelemen  &lt;kbalazs@webkit.org&gt;
+
+        [Qt][WK2] bot lacks mobility
+        https://bugs.webkit.org/show_bug.cgi?id=68243
+
+        Unreviewed gardening.
+        Removing tests from skipped list. These tests are no
+        longer failing since the Qt5 tree we use includes
+        the required modules that used to live in mobility.
+
+        * platform/qt-wk2/Skipped:
+
+2012-01-31  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106376.
+        http://trac.webkit.org/changeset/106376
+        https://bugs.webkit.org/show_bug.cgi?id=77481
+
+        Broke WebGLLayerChromiumTest in webkit_unit_tests (Requested
+        by kbr_google on #webkit).
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-31  David Grogan  &lt;dgrogan@chromium.org&gt;
+
+        IndexedDB: refactor basics layout test so that it can be run on workers.
+        https://bugs.webkit.org/show_bug.cgi?id=76683
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/basics-workers-expected.txt: Added.
+        * storage/indexeddb/basics-workers.html: Added.
+        * storage/indexeddb/basics.html:
+        * storage/indexeddb/resources/basics.js: Copied from \
LayoutTests/storage/indexeddb/basics.html. +        (test):
+        (openCallback):
+        * storage/indexeddb/resources/idb-worker-common.js: Added.
+        (debug):
+        (finishJSTest):
+        (description):
+        (testPassed):
+        (testFailed):
+
+2012-01-31  Eric Seidel  &lt;eric@webkit.org&gt;
+
+        Rebaseline results after http://trac.webkit.org/changeset/106373
+
+        Unreviewed.
+
+        * fast/forms/implicit-submission-expected.txt:
+        * platform/chromium-mac/fast/dom/Window/window-lookup-precedence-expected.txt: \
Removed. +        * platform/chromium-mac/fast/dom/wrapper-classes-expected.txt: \
Removed. +        * platform/chromium-win/fast/forms/implicit-submission-expected.txt:
 +        * platform/chromium/fast/dom/Window/element-constructors-on-window-expected.txt:
 +        * platform/chromium/fast/dom/Window/window-lookup-precedence-expected.txt:
+        * platform/chromium/fast/dom/wrapper-classes-expected.txt:
+        * platform/mac/fast/forms/implicit-submission-expected.txt: Copied from \
LayoutTests/fast/forms/implicit-submission-expected.txt. +        * \
platform/qt/fast/forms/implicit-submission-expected.txt: Removed. +
+2012-01-31  Jon Lee  &lt;jonlee@apple.com&gt;
+
+        Hidden form elements do not save their state prior to form submission
+        https://bugs.webkit.org/show_bug.cgi?id=77391
+        &lt;rdar://problem/10563108&gt;
+
+        Reviewed by Brady Eidson.
+
+        The test changes the value of the hidden input element via Javascript prior \
to +        submitting the form. The form action goes back one page, and we check to \
see +        that the hidden input value is what it was set to by Javascript, rather \
than what +        it was originally assigned.
+
+        * fast/forms/state-restore-hidden-expected.txt: Added.
+        * fast/forms/state-restore-hidden.html: Added.
+
+2012-01-31  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        IndexedDB: IDBCursor.update() should raise exception if key changed
+        https://bugs.webkit.org/show_bug.cgi?id=76952
+
+        Reviewed by Tony Chang.
+
+        * storage/indexeddb/cursor-update-expected.txt:
+        * storage/indexeddb/cursor-update.html:
+
+2012-01-31  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Crash in previousLinePosition when moving into a root inline box without \
leaves +        https://bugs.webkit.org/show_bug.cgi?id=76812
+
+        Reviewed by Enrica Casucci.
+
+        Add a regression test for the crash. Unfortunately, we can only test \
previousLinePosition. +
+        * editing/selection/move-into-empty-root-inline-box-expected.txt: Added.
+        * editing/selection/move-into-empty-root-inline-box.html: Added.
+
+2012-01-31  Tony Chang  &lt;tony@chromium.org&gt;
+
+        [chromium] Fix css3/flexbox/cross-axis-scrollbar-expected to work on
+        chromium win.
+
+        The scrollbars overflow the bounds of the scrollbar rect (see bug 77368).
+        Work around this by using positioned elements and setting the z-index as
+        negative.  It didn't work previously because when the scrollbar was
+        positioned, it clipped the extra pixels.  Tested to verify that this works
+        on Chromium Win and Chromium Linux.
+
+        Unreviewed, test fix.
+
+        * css3/flexbox/cross-axis-scrollbar-expected.html:
+        * platform/chromium/test_expectations.txt:
+
+2012-01-25  Eric Seidel  &lt;eric@webkit.org&gt;
+
+        HTMLIsIndexElement should not expose HTMLInputElement properties
+        https://bugs.webkit.org/show_bug.cgi?id=76095
+
+        Reviewed by Adam Barth.
+
+        * fast/dom/HTMLIsIndexElement/prototype-chain-expected.txt: Added.
+        * fast/dom/HTMLIsIndexElement/prototype-chain.html: Added.
+        * fast/dom/HTMLIsIndexElement/script-tests/prototype-chain.js: Added.
+
+2012-01-31  Rafael Brandao  &lt;rafael.lobo@openbossa.org&gt;
+
+        [Qt] Use ICU if available
+        https://bugs.webkit.org/show_bug.cgi?id=76821
+
+        Reviewed by Csaba Osztrogonác.
+
+        After r105997, some tests had different expected results but they were \
passing +        like /fast/text/find-{kana|russian|soft-hyphen}.html and \
editing/execCommand/findString-diacriticals.html. +        The test \
editing/selection/regional-indicators.html had a false expected file, +        and \
the rest was moved to a more specific folder (i.e. some bugs skipped on qt5 and \
qt-wk2 +        didn't need to be on qt-wk2 as well, etc.) and/or created specific \
bugs for further investigation. +
+        * platform/qt-4.8/Skipped:
+        * platform/qt-4.8/css1/text_properties/text_transform-expected.txt: Copied \
from LayoutTests/platform/qt/css1/text_properties/text_transform-expected.txt. +      \
* platform/qt-4.8/editing/selection/regional-indicators-expected.txt: Renamed from \
LayoutTests/platform/qt/editing/selection/regional-indicators-expected.txt. +        \
* platform/qt-4.8/fast/text/find-kana-expected.txt: Renamed from \
LayoutTests/platform/qt/fast/text/find-kana-expected.txt. +        * \
platform/qt-4.8/fast/text/find-russian-expected.txt: Renamed from \
LayoutTests/platform/qt/fast/text/find-russian-expected.txt. +        * \
platform/qt-4.8/fast/text/find-soft-hyphen-expected.txt: Renamed from \
LayoutTests/platform/qt/fast/text/find-soft-hyphen-expected.txt. +        * \
platform/qt-5.0/Skipped: +        * \
platform/qt-5.0/css1/text_properties/text_transform-expected.txt: Renamed from \
LayoutTests/platform/qt/css1/text_properties/text_transform-expected.txt. +        * \
platform/qt-5.0/editing/execCommand/findString-diacriticals-expected.txt: Added. +    \
* platform/qt-wk2/Skipped: +        * platform/qt/Skipped:
+
+2012-01-31  Arko Saha  &lt;arko@motorola.com&gt;
+
+        The spec renamed addTrack() to addTextTrack().
+        https://bugs.webkit.org/show_bug.cgi?id=77381
+
+        Reviewed by Eric Carlson.
+
+        Renamed addTrack() to addTextTrack().
+        Spec: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#media-elements
 +
+        * media/track/track-add-track-expected.txt:
+        * media/track/track-add-track.html:
+        * media/track/track-addtrack-kind-expected.txt:
+        * media/track/track-addtrack-kind.html:
+        * media/track/track-text-track-destructor-crash.html:
+        * media/track/track-texttracks-expected.txt:
+        * media/track/track-texttracks.html:
+        * platform/gtk/fast/dom/Window/window-properties-expected.txt:
+        * platform/mac/fast/dom/Window/window-properties-expected.txt:
+
+2012-01-31  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        inspector/timeline/timeline-receive-response-event.html is flaky on LINUX
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-31  Philippe Normand  &lt;pnormand@igalia.com&gt;
+
+        Unreviewed, GTK gardening.
+
+        * platform/gtk/Skipped: Skipping some new failures.
+        * platform/gtk/fast/dom/constructed-objects-prototypes-expected.txt: Added.
+        * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
+        * platform/gtk/fast/js/global-constructors-expected.txt:
+        * platform/gtk/test_expectations.txt: Marked one more svg test as flaky.
+
+2012-01-31  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        77412 - [Chromium] Layout Test media/media-blocked-by-beforeload.html fails \
for LEOPARD +
+        * platform/chromium/test_expectations.txt:
+
+2012-01-31  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        On more (last) typo fix after r106339.
+
+        * platform/qt/Skipped:
+
+2012-01-31  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        Typo fix after r106339.
+
+        * platform/qt/Skipped:
+
+2012-01-30  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt] Unreviewed gardening.
+
+        * platform/qt/Skipped: Skip failing tests.
+
+2012-01-30  Yury Semikhatsky  &lt;yurys@chromium.org&gt;
+
+        Web Inspector: should be possible to step through all event listeners when \
event listener breakpoint is hit +        \
https://bugs.webkit.org/show_bug.cgi?id=77331 +
+        Test that debugger will stop in each event listener when pausing on an event \
listener +        breakpoint.
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/debugger/step-through-event-listeners-expected.txt: Added.
+        * inspector/debugger/step-through-event-listeners.html: Added.
+        * platform/gtk/Skipped:
+        * platform/mac/Skipped:
+        * platform/qt/Skipped:
+        * platform/win/Skipped:
+        * platform/wincairo/Skipped:
+
+2011-01-30  Hayato Ito  &lt;hayato@chromium.org&gt;
+
+        Attach light children after removing a shadow root.
+        https://bugs.webkit.org/show_bug.cgi?id=74267
+
+        Reviewed by Ryosuke Niwa.
+
+        * fast/dom/shadow/dynamically-created-shadow-root-expected.html:
+        * fast/dom/shadow/dynamically-created-shadow-root.html:
+
+2012-01-30  Raymond Liu  &lt;raymond.liu@intel.com&gt;
+
+        Fix ASSERT fail within AudioBus::processWithGainFrom()
+        https://bugs.webkit.org/show_bug.cgi?id=76685
+
+        Reviewed by Daniel Bates.
+
+        * webaudio/audionode-connect-order-expected.txt: Added.
+        * webaudio/audionode-connect-order.html: Added.
+
+2012-01-30  Roland Steiner  &lt;rolandsteiner@chromium.org&gt;
+
+        &lt;style scoped&gt;: Implement scoped stylesheets and basic application
+        https://bugs.webkit.org/show_bug.cgi?id=73190
+
+        Test that &lt;style scoped&gt; affects styles and is updated correctly:
+        -) basic test
+        -) test setting/un-setting the 'scoped' attribute
+        -) test inserting/removing a whole &lt;style scoped&gt; element
+
+        Reviewed by Antti Koivisto.
+
+        * fast/css/style-scoped/style-scoped-attach-expected.txt: Added.
+        * fast/css/style-scoped/style-scoped-attach.html: Added.
+        * fast/css/style-scoped/style-scoped-basic-expected.txt: Added.
+        * fast/css/style-scoped/style-scoped-basic.html: Added.
+        * fast/css/style-scoped/style-scoped-detach-expected.txt: Added.
+        * fast/css/style-scoped/style-scoped-detach.html: Added.
+        * fast/css/style-scoped/style-scoped-remove-scoped-expected.txt: Added.
+        * fast/css/style-scoped/style-scoped-remove-scoped.html: Added.
+        * fast/css/style-scoped/style-scoped-set-scoped-expected.txt: Added.
+        * fast/css/style-scoped/style-scoped-set-scoped.html: Added.
+
+2012-01-30  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change
+        plugins/crash-restoring-plugin-page-from-page-cache.html fails or timeouts.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-30  Pablo Flouret  &lt;pablof@motorola.com&gt;
+
+        Don't select the next selectable index when deselecting an option in select \
elements with size set to a value greater than one. +        \
https://bugs.webkit.org/show_bug.cgi?id=76389 +
+        Reviewed by Kent Tamura.
+
+        This behavior matches the rest of the browsers.
+
+        * fast/forms/select/option-selecting-expected.txt: Added.
+        * fast/forms/select/option-selecting.html: Added.
+
+2012-01-30  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        Layout Test plugins/crash-restoring-plugin-page-from-page-cache.html is slow \
on Chromium +        https://bugs.webkit.org/show_bug.cgi?id=77397
+
+        Unreviewed gardening. Marking \
plugins/crash-restoring-plugin-page-from-page-cache.html slow +        on Chromium.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-30  Dan Bernstein  &lt;mitz@apple.com&gt;
+
+        &lt;rdar://problem/10778045&gt; REGRESSION (r91935): text-combine fails
+        https://bugs.webkit.org/show_bug.cgi?id=77373
+
+        Reviewed by Darin Adler.
+
+        Removed tests that were failing because of this bug from the skipped list.
+
+        * platform/mac-lion/Skipped:
+
+2012-01-30  Brady Eidson  &lt;beidson@apple.com&gt;
+
+        Fix typo in test name from my last commit.
+
+        Spotted and rubber-stamped by Darin Adler.
+
+        * plugins/crash-restoring-plugin-page-from-page-cache-expected.txt: Copied \
from plugins/crash-restoring-pluging-page-from-page-cache-expected.txt. +        * \
plugins/crash-restoring-plugin-page-from-page-cache.html: Copied from \
plugins/crash-restoring-pluging-page-from-page-cache.html. +        * \
plugins/crash-restoring-pluging-page-from-page-cache-expected.txt: Removed. +        \
* plugins/crash-restoring-pluging-page-from-page-cache.html: Removed. +
+2012-01-30  Brady Eidson  &lt;beidson@apple.com&gt;
+
+        &lt;rdar://problem/10707072&gt;
+        Crashes in WebProcess at WebCore::Node::rendererIsNeeded
+
+        Reviewed by Darin Adler.
+
+        * plugins/crash-restoring-pluging-page-from-page-cache-expected.txt: Added.
+        * plugins/crash-restoring-pluging-page-from-page-cache.html: Added.
+
+2012-01-30  Rakesh KN  &lt;rakesh.kn@motorola.com&gt;
+
+        single-file input elements should refuse multi-file drags
+        https://bugs.webkit.org/show_bug.cgi?id=25913
+
+        Reviewed by Eric Seidel.
+
+        Refuse the multiple file drags onto a single file input element.
+
+        * editing/pasteboard/file-input-files-access-expected.txt:
+        Expected result changed.
+        * editing/pasteboard/script-tests/file-input-files-access.js:
+        (runTest):
+        Removed the 'FIXME' debug and comment as it is not valid after this change.
+
+2012-01-30  Dana Jansens  &lt;danakj@chromium.org&gt;
+
+        [chromium] Use region reported painted opaque for draw culling
+        https://bugs.webkit.org/show_bug.cgi?id=76015
+
+        Reviewed by James Robinson.
+
+        * platform/chromium-linux/compositing/iframes/iframe-in-composited-layer-expected.png:
 +        * platform/chromium-mac-leopard/fast/repaint/block-selection-gap-in-composited-layer-expected.png: \
Removed. +        * platform/chromium-mac-snowleopard/fast/repaint/block-selection-gap-in-composited-layer-expected.png: \
Removed. +        * platform/chromium-win/fast/repaint/block-selection-gap-in-composited-layer-expected.png: \
Removed. +        * platform/chromium/fast/repaint/block-selection-gap-in-composited-layer-expected.png: \
Renamed from LayoutTests/platform/chromium-linux/fast/repaint/block-selection-gap-in-composited-layer-expected.png.
 +        * platform/chromium/test_expectations.txt:
+
+2012-01-30  Shadi Khalek  &lt;shadi@chromium.org&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        Remove passing media/media-blocked-by-beforeload.html from \
test_expectations.txt +        after r103509
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-30  Ryosuke Niwa  &lt;rniwa@webkit.org&gt;
+
+        Crash in previousLinePosition when moving into a root inline box without \
leaves +        https://bugs.webkit.org/show_bug.cgi?id=76812
+
+        Reviewed by Enrica Casucci.
+
+        Add a regression test for the crash. Unfortunately, we can only test \
previousLinePosition. +
+        * editing/selection/move-into-empty-root-inline-box-expected.txt: Added.
+        * editing/selection/move-into-empty-root-inline-box.html: Added.
+
+2012-01-30  Oliver Hunt  &lt;oliver@apple.com&gt;
+
+        Unexpected syntax error
+        https://bugs.webkit.org/show_bug.cgi?id=77340
+
+        Reviewed by Gavin Barraclough.
+
+        Add new tests for correct parsing of new expressions
+
+        * fast/js/parser-syntax-check-expected.txt:
+        * fast/js/script-tests/parser-syntax-check.js:
+        (runTest):
+        (invalid):
+
+2012-01-30  Tony Chang  &lt;tony@chromium.org&gt;
+
+        css3/flexbox/cross-axis-scrollbar.html ref test fails on Windows Chromium \
bots +        https://bugs.webkit.org/show_bug.cgi?id=77309
+
+        Reviewed by Dirk Pranke.
+
+        It looks like the scrollbars on windows overflow by a pixel, so the
+        edge of the scrollbar is being covered up by the trailing green box.
+        Use z-order to force the scrollbar on top.
+
+        This is kind of speculative. I want to see if the test passes on the
+        bots before removing the line in test_expectations.txt.
+
+        * css3/flexbox/cross-axis-scrollbar-expected.html:
+
+2012-01-30  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        Unreviewed gardening. Marking fast/js/dfg-int32array-overflow-values.html as \
slow +        for Chromium Debug bots.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-30  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        fast/css/fontsize-unit-rems-crash.html should use dumpAsText
+        https://bugs.webkit.org/show_bug.cgi?id=77351
+
+        Reviewed by Simon Fraser.
+
+        Switching the above test to only use text results as the html element is \
display:none. +
+        * fast/css/fontsize-unit-rems-crash-expected.txt:
+        * fast/css/fontsize-unit-rems-crash.html:
+
+2012-01-30  Mihnea Ovidenie  &lt;mihnea@adobe.com&gt;
+
+        [CSSRegions]Add support for background-color in region styling
+        https://bugs.webkit.org/show_bug.cgi?id=71488
+
+        Reviewed by David Hyatt.
+
+        Enable the region styling tests again.
+
+        * platform/mac-snowleopard/Skipped:
+
+2012-01-30  Joshua Bell  &lt;jsbell@chromium.org&gt;
+
+        IndexedDB: Add tests for structured clone data
+        https://bugs.webkit.org/show_bug.cgi?id=74897
+
+        Validate that the types listed in the HTML5 &quot;structured clone \
algorithm&quot; +        round trip properly through Indexed DB storage. Types with \
incomplete +        support in the Chromium port are excluded \
(http://crbug.com/108012). +        Landing disabled since cr-linux is failing test \
for unknown reasons. +
+        Reviewed by Tony Chang.
+
+        * platform/chromium/test_expectations.txt:
+        * storage/indexeddb/resources/test-data.html: Added.
+        * storage/indexeddb/resources/test-data.txt: Added.
+        * storage/indexeddb/structured-clone-expected.txt: Added.
+        * storage/indexeddb/structured-clone.html: Added.
+
+2012-01-30  Tommy Widenflycht  &lt;tommyw@google.com&gt;
+
+        Memory leak caused by PeerConnection add a NULL media stream
+        https://bugs.webkit.org/show_bug.cgi?id=76150
+
+        Added a basic LayoutTest for null/undefined arguments to \
PeerConnection::addStream(). +
+        Reviewed by Adam Barth.
+
+        * fast/mediastream/peerconnection-addstream-expected.txt: Added.
+        * fast/mediastream/peerconnection-addstream.html: Added.
+        * fast/mediastream/script-tests/peerconnection-addstream.js: Added.
+
+2012-01-30  Greg Billock  &lt;gbillock@google.com&gt;
+
+        Enable web intents layout tests for Chromium build.
+        https://bugs.webkit.org/show_bug.cgi?id=77347
+
+        Reviewed by Ryosuke Niwa.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-30  Parag Radke  &lt;nrqv63@motorola.com&gt;
+
+        REGRESSION (r82580): Reproducible crash in \
CSSPrimitiveValue::computeLengthDouble +        \
https://bugs.webkit.org/show_bug.cgi?id=61989 +
+        Reviewed by Simon Fraser.
+
+        Added a test case to check rems unit (css3) with html property display:none.
+
+        * fast/css/fontsize-unit-rems-crash-expected.txt: Added.
+        * fast/css/fontsize-unit-rems-crash.html: Added.
+
+2012-01-26  Jocelyn Turcotte  &lt;jocelyn.turcotte@nokia.com&gt;
+
+        [Qt] WKTR: Use a software rendering pipiline when running tests.
+        https://bugs.webkit.org/show_bug.cgi?id=76708
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * platform/qt-wk2/Skipped:
+
+2012-01-30  Csaba Osztrogonác  &lt;ossy@webkit.org&gt;
+
+        [Qt][WK2] http/tests/history/replacestate-post-to-get-2.html fails with \
timeout +        https://bugs.webkit.org/show_bug.cgi?id=76784
+
+        * platform/qt-wk2/Skipped: Unskip now passing test.
+
+2012-01-27  Vsevolod Vlasov  &lt;vsevik@chromium.org&gt;
+
+        Web Inspector: TabbedEditorContainer should save open tabs.
+        https://bugs.webkit.org/show_bug.cgi?id=76912
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/tabbed-editors-history-expected.txt: Added.
+        * inspector/tabbed-editors-history.html: Added.
+
+2012-01-30  Alexander Pavlov  &lt;apavlov@chromium.org&gt;
+
+        Web Inspector: [Styles] Unable to paste and subsequently edit multiple \
properties in the Styles pane +        https://bugs.webkit.org/show_bug.cgi?id=77209
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/styles/styles-add-blank-property-expected.txt:
+        * inspector/styles/styles-add-blank-property.html:
+
+2012-01-30  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        fast/js/dfg-int32array.html is slow on WIN DEBUG and MAC DEBUG.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-30  Shinya Kawanaka  &lt;shinyak@google.com&gt;
+
+        The query selector for HTMLContentElement should follow the shadow dom spec.
+        https://bugs.webkit.org/show_bug.cgi?id=75946
+
+        Reviewed by Hajime Morita.
+
+        * fast/dom/shadow/content-selector-query-expected.txt: Added.
+        * fast/dom/shadow/content-selector-query.html: Added.
+
+2012-01-29  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        inspector/extensions/extensions-{events,sidebar}.html time out for WIN DBG.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-29  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        svg/W3C-SVG-1.1/masking-intro-01-f.svg does not crash after r105978.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-29  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        fast/events/touch/touch-gesture-scroll.html is flaky on MAC and WIN.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-29  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        Layout Test fast/events/touch/send-oncancel-event.html is flaky on MAC and \
WIN. +
+        * platform/chromium/test_expectations.txt:
+
+2012-01-29  Hayato Ito  &lt;hayato@chromium.org&gt;
+
+        Add a ShadowRoot constructor as 'WebKitShadowRootConstructor', enabled by \
SHADOW_DOM flag. +        https://bugs.webkit.org/show_bug.cgi?id=76354
+
+        Reviewed by Hajime Morita.
+
+        We use vendor-prefixed name, 'WebKitShadowRoot', instead of 'ShadowRoot'
+        since this is a feature under development.
+
+        * fast/dom/shadow/shadow-root-js-api.html:
+
+2012-01-29  Yuzo Fujishima  &lt;yuzo@google.com&gt;
+
+        [Chromium] Unreviewed test expectation change.
+        fast/js/navigator-language.html is flaky.
+
+        * platform/chromium/test_expectations.txt:
+
+2012-01-29  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        Unreviewed gardening. css3/flexbox/cross-axis-scrollbar.html is failing on \
Chromium Windows. +        Removing an incorrect pixel expectation (it's a ref test) \
and marking it as failing on +        Chromium Windows.
+
+        * platform/chromium-win/css3/flexbox/cross-axis-scrollbar-expected.png: \
Removed. +        * platform/chromium/test_expectations.txt:
+
+2012-01-29  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        Reserved Word tests fail on Chromium after r106198
+        https://bugs.webkit.org/show_bug.cgi?id=77303
+
+        Unreviewed gardening. disabling new reserved word tests on Chromium after \
r106198. +
+        * platform/chromium/test_expectations.txt:
+
+2012-01-29  Sheriff Bot  &lt;webkit.review.bot@gmail.com&gt;
+
+        Unreviewed, rolling out r106109.
+        http://trac.webkit.org/changeset/106109
+        https://bugs.webkit.org/show_bug.cgi?id=77302
+
+        It made tests crash (Requested by Ossy_weekend on #webkit).
+
+        * platform/qt-wk2/Skipped:
+
+2012-01-28  Gavin Barraclough  &lt;barraclough@apple.com&gt;
+
+        Reserve 'let'
+        https://bugs.webkit.org/show_bug.cgi?id=77293
+
+        Rubber stamped by Oliver Hunt.
+
+        'let' may become a keyword in ES6.  We're going to try experimentally \
reserving it, +        to see if this breaks the web.
+
+        * fast/js/keywords-and-reserved_words-expected.txt:
+        * fast/js/reserved-words-as-property-expected.txt:
+        * fast/js/reserved-words-strict-expected.txt:
+        * fast/js/script-tests/keywords-and-reserved_words.js:
+        * fast/js/script-tests/reserved-words-as-property.js:
+        * fast/js/script-tests/reserved-words-strict.js:
+
+2012-01-28  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        Unreviewed gardening. Adding Chromium platform expectations for canvas tests \
after 106184. +
+        * platform/chromium-linux-x86/canvas: Added.
+        * platform/chromium-linux-x86/canvas/philip: Added.
+        * platform/chromium-linux-x86/canvas/philip/tests: Added.
+        * platform/chromium-linux-x86/canvas/philip/tests/2d.line.cap.round-expected.txt: \
Added. +        * platform/chromium-linux-x86/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: \
Added. +        * platform/chromium-linux-x86/fast/canvas: Added.
+        * platform/chromium-linux-x86/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: \
Added. +        * platform/chromium-linux/canvas: Added.
+        * platform/chromium-linux/canvas/philip: Added.
+        * platform/chromium-linux/canvas/philip/tests: Added.
+        * platform/chromium-linux/canvas/philip/tests/2d.line.cap.round-expected.txt: \
Added. +        * platform/chromium-linux/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: \
Added. +        * platform/chromium-linux/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: \
Added. +        * platform/chromium-win-vista/canvas: Added.
+        * platform/chromium-win-vista/canvas/philip: Added.
+        * platform/chromium-win-vista/canvas/philip/tests: Added.
+        * platform/chromium-win-vista/canvas/philip/tests/2d.line.cap.round-expected.txt: \
Added. +        * platform/chromium-win-vista/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: \
Added. +        * platform/chromium-win-vista/fast/canvas: Added.
+        * platform/chromium-win-vista/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: \
Added. +        * platform/chromium-win-xp/canvas: Added.
+        * platform/chromium-win-xp/canvas/philip: Added.
+        * platform/chromium-win-xp/canvas/philip/tests: Added.
+        * platform/chromium-win-xp/canvas/philip/tests/2d.line.cap.round-expected.txt: \
Added. +        * platform/chromium-win-xp/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: \
Added. +        * platform/chromium-win-xp/fast/canvas: Added.
+        * platform/chromium-win-xp/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: \
Added. +        * platform/chromium-win/canvas/philip/tests/2d.line.cap.round-expected.txt: \
Added. +        * platform/chromium-win/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: \
Added. +        * platform/chromium-win/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: \
Added. +
+2012-01-28  Levi Weintraub  &lt;leviw@chromium.org&gt;
+
+        Layout Test webaudio/panner-set-model.html crashes on debug Chromium bots
+        https://bugs.webkit.org/show_bug.cgi?id=77283
+
+        Unreviewed gardening. Marking webaudio/panner-set-model.html crashing on \
Debug Chromium bots. +
+        * platform/chromium/test_expectations.txt:
+
+2012-01-28  Julien Chaffraix  &lt;jchaffraix@webkit.org&gt;
+
+        REGRESSION (r94016): Element with visibility:hidden but visible descendant \
may not be properly repainted +        https://bugs.webkit.org/show_bug.cgi?id=76126
+
+        Reviewed by Simon Fraser.
+
+        Added testing for a layer with no visible content but one of its descendant \
has some visible content. +        The reverse case is already profusely tested.
+
+        * fast/layers/scroll-no-visible-content-but-visible-descendant-expected.html: \
Added. +        * fast/layers/scroll-no-visible-content-but-visible-descendant.html: \
Added. +
+2012-01-28 Hajime Morita  &lt;morrita@google.com&gt;
+
+        Unreviewed, another attempt for warning elimination.
+
+        * platform/win/Skipped:
+
+2012-01-28  Hajime Morita  &lt;morrita@google.com&gt;
+
+        Unreviewed warning elimination.
+
+        * platform/win/Skipped:
+
+2012-01-27  Matthew Delaney  &lt;mdelaney@apple.com&gt;
+
+        Update mac-lion canvas results
+        https://bugs.webkit.org/show_bug.cgi?id=77178
+
+        These canvas tests were previously skipped on Lion and needed to be \
rebaselined for mac. +
+        Reviewed by Filip Pizlo.
+
+        * platform/mac-lion/Skipped:
+        * platform/mac-snowleopard/canvas/philip/tests/2d.line.cap.round-expected.txt: \
Copied from LayoutTests/canvas/philip/tests/2d.line.cap.round-expected.txt. +        \
* platform/mac-snowleopard/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: \
Copied from LayoutTests/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt. +      \
* platform/mac-snowleopard/fast/canvas/canvas-draw-canvas-on-canvas-shadow-expected.txt: \
Added. +        * platform/mac-snowleopard/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: \
Added. +        * platform/mac/canvas/philip/tests/2d.line.cap.round-expected.txt: \
Added. +        * platform/mac/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: \
Added. +        * platform/mac/fast/canvas/canvas-draw-canvas-on-canvas-shadow-expected.txt: \
Added. +        * platform/mac/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: \
Added. +
+2012-01-27  Gyuyoung Kim  &lt;gyuyoung.kim@samsung.com&gt;
+
+        Unreviewed, EFL tables rebaseline after r101343.
+
+        * platform/efl/tables/layering/paint-test-layering-1-expected.txt:
+        * platform/efl/tables/layering/paint-test-layering-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/45621-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug10009-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug100334-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug10036-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug10039-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug101201-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug102145-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug102145-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug102145-3-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug102145-4-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug10269-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug10296-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug103533-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1055-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug10565-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug106158-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug106158-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug10633-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1067-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1067-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug106795-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug106816-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug109043-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug11026-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug110566-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug11321-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug113235-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug113235-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug113235-3-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug113424-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1188-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug11944-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug12008-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug120364-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1220-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1224-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug12268-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug12384-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug123862-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1261-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug12709-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug127267-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug12908-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug12910-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1296-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug131020-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug131020_iframe-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug13105-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug13118-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1318-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug13196-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug133756-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug133756-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug133948-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug13484-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug13526-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug138725-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug139524-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug139524-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug139524-3-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug139524-4-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug14159-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug14159-3-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1430-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug14323-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug145572-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1474-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug149275-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug15247-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug154780-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug15544-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug159108-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug15933-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug16012-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug16252-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug17130-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug17130-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug17138-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug17168-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug175455-4-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug17548-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug17587-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1800-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1802-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1802s-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1809-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1818-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1818-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1818-4-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1818-5-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug1828-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug18359-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug18440-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug18558-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug18664-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug18955-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug19061-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug19061-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug19356-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug194024-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug19599-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2050-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug20579-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2065-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug20804-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2123-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug21299-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug215629-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug21918-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug219693-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug219693-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug22019-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug220536-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug221784-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug221784-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug22246-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug22246-2a-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug22246-3-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug22246-3a-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2267-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug227123-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2296-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug23072-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug23235-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug23299-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug23994-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug24200-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug24503-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug24627-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug24661-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2469-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2479-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug24880-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug25004-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug25074-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug25086-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2509-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2516-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug25367-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug25663-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2585-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug26178-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2684-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug27038-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug27038-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug275625-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2757-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2763-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2773-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug278266-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug278385-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug27993-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug28341-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2886-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug28928-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug29058-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug29326-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug29429-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2962-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2973-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2981-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2981-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug2997-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug30273-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug30332-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug30332-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3037-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3037-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug30418-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug30559-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug30692-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug30985-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3103-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3191-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug32205-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug32205-3-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug32205-5-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug32447-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3260-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3263-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug32841-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3309-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3309-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug33137-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug33855-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug34176-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug34538-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3454-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug35662-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3681-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3681-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3718-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug39209-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug3977-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug40828-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4093-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug41890-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug42187-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug42443-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4284-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug43039-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug43204-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4382-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4385-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug43854-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug43854-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4427-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4429-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug44505-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug44523-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4501-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug45055-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug45055-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4520-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4523-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4527-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug45350-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug45486-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4576-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46268-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46268-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46268-3-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46268-5-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46268-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46480-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46480-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46623-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46623-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46924-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug46944-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4739-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug47432-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4803-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4849-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug4849-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug48827-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug50695-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug51037-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug51140-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug51727-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug5188-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug52505-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug52506-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug53690-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug53690-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug53891-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug54450-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug5538-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug55527-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug55545-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug55789-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug56201-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug56405-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug56563-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug57300-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug57378-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug57828-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug57828-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug5797-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug5798-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug5799-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug5835-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug58402-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug59354-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug60013-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug60749-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug60804-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug60807-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug60992-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug6184-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug625-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug63785-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug6404-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug641-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug641-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug647-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug650-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug6674-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug67864-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug67915-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug68912-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug68998-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug69187-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug69382-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug69382-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug709-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug7112-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug7112-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug7121-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug72359-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug727-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug7342-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug7471-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug75250-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug7714-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug78162-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug8032-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug80762-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug81934-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug82946-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug82946-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug8361-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug8411-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug86220-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug88035-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug88035-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug88524-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug8858-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug8950-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug9072-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug9123-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug9123-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug92143-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug92647-2-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug92868-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug93363-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug963-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug96334-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug96343-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug965-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug97138-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug97383-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug98196-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug9879-1-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug99923-expected.txt:
+        * platform/efl/tables/mozilla/bugs/bug99948-expected.txt:
+        * platform/efl/tables/mozilla/collapsing_borders/bug127040-expected.txt:
+        * platform/efl/tables/mozilla/collapsing_borders/bug41262-3-expected.txt:
+        * platform/efl/tables/mozilla/collapsing_borders/bug41262-4-expected.txt:
+        * platform/efl/tables/mozilla/core/bloomberg-expected.txt:
+        * platform/efl/tables/mozilla/core/borders-expected.txt:
+        * platform/efl/tables/mozilla/core/box_sizing-expected.txt:
+        * platform/efl/tables/mozilla/core/cell_heights-expected.txt:
+        * platform/efl/tables/mozilla/core/col_span-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_auto_auto-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_auto_autoFix-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_auto_autoPer-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_auto_fix-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_auto_fixPer-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_auto_per-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_fix_auto-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_fix_autoFix-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_fix_autoPer-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_fix_fix-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_fix_fixPer-expected.txt:
+        * platform/efl/tables/mozilla/core/col_widths_fix_per-expected.txt:
+        * platform/efl/tables/mozilla/core/margins-expected.txt:
+        * platform/efl/tables/mozilla/core/misc-expected.txt:
+        * platform/efl/tables/mozilla/core/nested1-expected.txt:
+        * platform/efl/tables/mozilla/core/one_row-expected.txt:
+        * platform/efl/tables/mozilla/core/row_span-expected.txt:
+        * platform/efl/tables/mozilla/core/table_frame-expected.txt:
+        * platform/efl/tables/mozilla/core/table_heights-expected.txt:
+        * platform/efl/tables/mozilla/core/table_rules-expected.txt:
+        * platform/efl/tables/mozilla/core/table_widths-expected.txt:
+        * platform/efl/tables/mozilla/dom/appendCol2-expected.txt:
+        * platform/efl/tables/mozilla/dom/appendRowsExpand1-expected.txt:
+        * platform/efl/tables/mozilla/dom/appendTbodyExpand1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteCellsRebuild1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteCellsShrink1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteCellsShrink2-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteCol1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteCol2-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteCol3-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteColGroup1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteColGroup2-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteRowsRebuild1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteRowsShrink1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteTbodyExpand1-expected.txt:
+        * platform/efl/tables/mozilla/dom/deleteTbodyRebuild1-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCellsExpand1-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCellsExpand2-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCellsRebuild1-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCellsRebuild2-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertColGroups1-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertColGroups2-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCols1-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCols2-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCols3-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCols4-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertCols5-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertRowsExpand1-expected.txt:
+        * platform/efl/tables/mozilla/dom/insertRowsRebuild1-expected.txt:
+        * platform/efl/tables/mozilla/dom/tableDom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/backgr_index-expected.txt:
+        * platform/efl/tables/mozilla/marvin/body_col-expected.txt:
+        * platform/efl/tables/mozilla/marvin/body_tbody-expected.txt:
+        * platform/efl/tables/mozilla/marvin/body_tfoot-expected.txt:
+        * platform/efl/tables/mozilla/marvin/body_thead-expected.txt:
+        * platform/efl/tables/mozilla/marvin/col_span-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_span-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_width_pct-expected.txt:
+        * platform/efl/tables/mozilla/marvin/colgroup_width_px-expected.txt:
+        * platform/efl/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
 +        * platform/efl/tables/mozilla/marvin/table_row_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/table_row_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/table_row_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/table_rules_groups-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_black-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt:
 +        * platform/efl/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_green-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_red-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_white-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_border_0-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_border_1-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_border_2-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_border_3-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_cellpadding-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_cellspacing-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_default-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_colspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_height-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_nowrap-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_rowspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_td_width-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_th_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_th_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_th_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_th_colspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_th_height-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_th_rowspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_th_width-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_width_percent-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tables_width_px-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_valign_baseline-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tbody_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/td_valign_baseline-expected.txt:
+        * platform/efl/tables/mozilla/marvin/td_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/td_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/td_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tfoot_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/th_valign_baseline-expected.txt:
+        * platform/efl/tables/mozilla/marvin/th_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/th_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/th_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_valign_baseline-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/thead_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_black-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_green-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_red-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_white-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_valign_baseline-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/tr_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_span-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_width_pct-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_width_px-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_col_width_rel-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_span-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_bgcolor_name-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_border-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_border_none-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_border_px-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_cellpadding-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_cellspacing-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_frame_void-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_rules_groups-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_rules_none-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_width_pct-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_table_width_px-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tbody_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_bgcolor_name-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_colspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_height-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_nowrap-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_rowspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_td_width-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_bgcolor_name-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_colspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_height-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_nowrap-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_rowspan-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_th_width-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_thead_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_align_center-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_align_char-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_align_justify-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_align_left-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_align_right-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_bgcolor_name-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_class-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_id-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_style-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_valign_middle-expected.txt:
+        * platform/efl/tables/mozilla/marvin/x_tr_valign_top-expected.txt:
+        * platform/efl/tables/mozilla/other/body_col-expected.txt:
+        * platform/efl/tables/mozilla/other/cell_widths-expected.txt:
+        * platform/efl/tables/mozilla/other/cellspacing-expected.txt:
+        * platform/efl/tables/mozilla/other/move_row-expected.txt:
+        * platform/efl/tables/mozilla/other/ms-expected.txt:
+        * platform/efl/tables/mozilla/other/nested2-expected.txt:
+        * platform/efl/tables/mozilla/other/nestedTables-expected.txt:
+        * platform/efl/tables/mozilla/other/padding-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug1010-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug101759-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug106336-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug11331-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug1164-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug11945-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug1262-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug14489-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug1647-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug1725-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug17826-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug178855-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug18770-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug19526-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug21518-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug220653-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug22122-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug25707-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug3105-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug32205-1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug32205-4-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug33784-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug42043-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug4294-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug45621-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug46268-4-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug47163-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug51000-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug56024-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug59252-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug65372-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug6933-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug7113-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug7243-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug73629-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug8499-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug89315-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/core/backgrounds-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/core/col_span2-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/core/cols1-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/core/columns-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/core/conflicts-expected.txt:
+        * platform/efl/tables/mozilla_expected_failures/dom/appendCells1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/dom/appendCol1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.txt:
 +        * platform/efl/tables/mozilla_expected_failures/other/empty_cells-expected.txt:
 +
+2012-01-27  Gyuyoung Kim  &lt;gyuyoung.kim@samsung.com&gt;
+
+        Unreviewed, EFL fast rebaseline after r101343.
+
+        * platform/efl/fast/backgrounds/001-expected.txt:
+        * platform/efl/fast/backgrounds/animated-gif-as-background-expected.txt:
+        * platform/efl/fast/backgrounds/background-leakage-expected.txt:
+        * platform/efl/fast/backgrounds/background-leakage-transforms-expected.txt:
+        * platform/efl/fast/backgrounds/background-origin-root-element-expected.txt:
+        * platform/efl/fast/backgrounds/background-position-1-expected.txt:
+        * platform/efl/fast/backgrounds/background-position-parsing-expected.txt:
+        * platform/efl/fast/backgrounds/background-position-rounding-expected.txt:
+        * platform/efl/fast/backgrounds/body-generated-image-propagated-to-root-expected.txt:
 +        * platform/efl/fast/backgrounds/mask-composite-expected.txt:
+        * platform/efl/fast/backgrounds/opacity-on-document-element-expected.txt:
+        * platform/efl/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.txt:
 +        * platform/efl/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.txt:
 +        * platform/efl/fast/backgrounds/repeat/negative-offset-repeat-expected.txt:
+        * platform/efl/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.txt:
 +        * platform/efl/fast/backgrounds/repeat/noRepeatCorrectClip-expected.txt:
+        * platform/efl/fast/backgrounds/size/backgroundSize15-expected.txt:
+        * platform/efl/fast/backgrounds/size/backgroundSize16-expected.txt:
+        * platform/efl/fast/backgrounds/size/zero-expected.txt:
+        * platform/efl/fast/backgrounds/solid-color-context-restore-expected.txt:
+        * platform/efl/fast/block/basic/001-expected.txt:
+        * platform/efl/fast/block/basic/002-expected.txt:
+        * platform/efl/fast/block/basic/003-expected.txt:
+        * platform/efl/fast/block/basic/004-expected.txt:
+        * platform/efl/fast/block/basic/005-expected.txt:
+        * platform/efl/fast/block/basic/007-expected.txt:
+        * platform/efl/fast/block/basic/008-expected.txt:
+        * platform/efl/fast/block/basic/010-expected.txt:
+        * platform/efl/fast/block/basic/013-expected.txt:
+        * platform/efl/fast/block/basic/016-expected.txt:
+        * platform/efl/fast/block/basic/018-expected.txt:
+        * platform/efl/fast/block/basic/020-expected.txt:
+        * platform/efl/fast/block/basic/021-expected.txt:
+        * platform/efl/fast/block/basic/adding-near-anonymous-block-expected.txt:
+        * platform/efl/fast/block/basic/min-pref-width-nowrap-floats-expected.txt:
+        * platform/efl/fast/block/basic/percent-height-inside-anonymous-block-expected.txt:
 +        * platform/efl/fast/block/basic/text-indent-rtl-expected.txt:
+        * platform/efl/fast/block/basic/truncation-rtl-expected.txt:
+        * platform/efl/fast/block/basic/white-space-pre-wraps-expected.txt:
+        * platform/efl/fast/block/float/002-expected.txt:
+        * platform/efl/fast/block/float/003-expected.txt:
+        * platform/efl/fast/block/float/004-expected.txt:
+        * platform/efl/fast/block/float/005-expected.txt:
+        * platform/efl/fast/block/float/006-expected.txt:
+        * platform/efl/fast/block/float/007-expected.txt:
+        * platform/efl/fast/block/float/010-expected.txt:
+        * platform/efl/fast/block/float/011-expected.txt:
+        * platform/efl/fast/block/float/012-expected.txt:
+        * platform/efl/fast/block/float/013-expected.txt:
+        * platform/efl/fast/block/float/014-expected.txt:
+        * platform/efl/fast/block/float/016-expected.txt:
+        * platform/efl/fast/block/float/017-expected.txt:
+        * platform/efl/fast/block/float/018-expected.txt:
+        * platform/efl/fast/block/float/020-expected.txt:
+        * platform/efl/fast/block/float/021-expected.txt:
+        * platform/efl/fast/block/float/023-expected.txt:
+        * platform/efl/fast/block/float/024-expected.txt:
+        * platform/efl/fast/block/float/025-expected.txt:
+        * platform/efl/fast/block/float/026-expected.txt:
+        * platform/efl/fast/block/float/027-expected.txt:
+        * platform/efl/fast/block/float/028-expected.txt:
+        * platform/efl/fast/block/float/029-expected.txt:
+        * platform/efl/fast/block/float/030-expected.txt:
+        * platform/efl/fast/block/float/031-expected.txt:
+        * platform/efl/fast/block/float/032-expected.txt:
+        * platform/efl/fast/block/float/avoidance-percent-width-compat-expected.txt:
+        * platform/efl/fast/block/float/avoidance-percent-width-strict-expected.txt:
+        * platform/efl/fast/block/float/clear-element-too-wide-for-containing-block-expected.txt:
 +        * platform/efl/fast/block/float/dynamic-unfloat-pref-width-expected.txt:
+        * platform/efl/fast/block/float/editable-text-overlapping-float-expected.txt:
 +        * platform/efl/fast/block/float/fit_line_below_floats-expected.txt:
+        * platform/efl/fast/block/float/float-avoidance-expected.txt:
+        * platform/efl/fast/block/float/float-not-removed-from-next-sibling-expected.txt:
 +        * platform/efl/fast/block/float/float-not-removed-from-next-sibling2-expected.txt:
 +        * platform/efl/fast/block/float/float-not-removed-from-next-sibling3-expected.txt:
 +        * platform/efl/fast/block/float/float-not-removed-from-next-sibling4-expected.txt:
 +        * platform/efl/fast/block/float/floats-and-text-indent-expected.txt:
+        * platform/efl/fast/block/float/floats-and-text-indent-rl-expected.txt:
+        * platform/efl/fast/block/float/independent-align-positioning-expected.txt:
+        * platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt:
 +        * platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt:
 +        * platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt:
 +        * platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt:
 +        * platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt:
 +        * platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt:
 +        * platform/efl/fast/block/float/intruding-painted-twice-expected.txt:
+        * platform/efl/fast/block/float/marquee-shrink-to-avoid-floats-expected.txt:
+        * platform/efl/fast/block/float/multiple-float-positioning-expected.txt:
+        * platform/efl/fast/block/float/nested-clearance-expected.txt:
+        * platform/efl/fast/block/float/nestedAnonymousBlocks-expected.txt:
+        * platform/efl/fast/block/float/nestedAnonymousBlocks2-expected.txt:
+        * platform/efl/fast/block/float/nopaint-after-layer-destruction-expected.txt:
 +        * platform/efl/fast/block/float/nopaint-after-layer-destruction2-expected.txt:
 +        * platform/efl/fast/block/float/overhanging-after-height-decrease-expected.txt:
 +        * platform/efl/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt:
 +        * platform/efl/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt:
 +        * platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt:
 +        * platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt:
 +        * platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.txt:
 +        * platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.txt:
 +        * platform/efl/fast/block/float/overlapping-floats-with-overflow-hidden-expected.txt:
 +        * platform/efl/fast/block/float/shrink-to-fit-width-expected.txt:
+        * platform/efl/fast/block/float/table-relayout-expected.txt:
+        * platform/efl/fast/block/float/vertical-move-relayout-expected.txt:
+        * platform/efl/fast/block/float/width-update-after-clear-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/block-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/block-font-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/block-glyphs-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/block-glyphs-replaced-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/block-replaced-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/font-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/font-replaced-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/glyphs-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/inline-box-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/inline-box-replaced-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/inline-box-vertical-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/inline-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/inline-replaced-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/none-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/parsing-invalid-expected.txt:
+        * platform/efl/fast/block/lineboxcontain/replaced-expected.txt:
+        * platform/efl/fast/block/margin-collapse/002-expected.txt:
+        * platform/efl/fast/block/margin-collapse/003-expected.txt:
+        * platform/efl/fast/block/margin-collapse/004-expected.txt:
+        * platform/efl/fast/block/margin-collapse/006-expected.txt:
+        * platform/efl/fast/block/margin-collapse/010-expected.txt:
+        * platform/efl/fast/block/margin-collapse/011-expected.txt:
+        * platform/efl/fast/block/margin-collapse/012-expected.txt:
+        * platform/efl/fast/block/margin-collapse/015-expected.txt:
+        * platform/efl/fast/block/margin-collapse/016-expected.txt:
+        * platform/efl/fast/block/margin-collapse/017-expected.txt:
+        * platform/efl/fast/block/margin-collapse/018-expected.txt:
+        * platform/efl/fast/block/margin-collapse/019-expected.txt:
+        * platform/efl/fast/block/margin-collapse/020-expected.txt:
+        * platform/efl/fast/block/margin-collapse/021-expected.txt:
+        * platform/efl/fast/block/margin-collapse/022-expected.txt:
+        * platform/efl/fast/block/margin-collapse/025-expected.txt:
+        * platform/efl/fast/block/margin-collapse/026-expected.txt:
+        * platform/efl/fast/block/margin-collapse/027-expected.txt:
+        * platform/efl/fast/block/margin-collapse/028-expected.txt:
+        * platform/efl/fast/block/margin-collapse/029-expected.txt:
+        * platform/efl/fast/block/margin-collapse/030-expected.txt:
+        * platform/efl/fast/block/margin-collapse/031-expected.txt:
+        * platform/efl/fast/block/margin-collapse/032-expected.txt:
+        * platform/efl/fast/block/margin-collapse/033-expected.txt:
+        * platform/efl/fast/block/margin-collapse/034-expected.txt:
+        * platform/efl/fast/block/margin-collapse/035-expected.txt:
+        * platform/efl/fast/block/margin-collapse/037-expected.txt:
+        * platform/efl/fast/block/margin-collapse/038-expected.txt:
+        * platform/efl/fast/block/margin-collapse/039-expected.txt:
+        * platform/efl/fast/block/margin-collapse/040-expected.txt:
+        * platform/efl/fast/block/margin-collapse/041-expected.txt:
+        * platform/efl/fast/block/margin-collapse/042-expected.txt:
+        * platform/efl/fast/block/margin-collapse/043-expected.txt:
+        * platform/efl/fast/block/margin-collapse/044-expected.txt:
+        * platform/efl/fast/block/margin-collapse/045-expected.txt:
+        * platform/efl/fast/block/margin-collapse/055-expected.txt:
+        * platform/efl/fast/block/margin-collapse/056-expected.txt:
+        * platform/efl/fast/block/margin-collapse/057-expected.txt:
+        * platform/efl/fast/block/margin-collapse/058-expected.txt:
+        * platform/efl/fast/block/margin-collapse/059-expected.txt:
+        * platform/efl/fast/block/margin-collapse/100-expected.txt:
+        * platform/efl/fast/block/margin-collapse/101-expected.txt:
+        * platform/efl/fast/block/margin-collapse/102-expected.txt:
+        * platform/efl/fast/block/margin-collapse/103-expected.txt:
+        * platform/efl/fast/block/margin-collapse/104-expected.txt:
+        * platform/efl/fast/block/margin-collapse/block-inside-inline/002-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/003-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/004-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/006-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/010-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/011-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/012-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/015-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/016-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/017-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/018-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/019-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/020-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/021-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/022-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/block-inside-inline/025-expected.txt:
 +        * platform/efl/fast/block/margin-collapse/empty-clear-blocks-expected.txt:
+        * platform/efl/fast/block/margin-collapse/negative-margins-expected.txt:
+        * platform/efl/fast/block/positioning/001-expected.txt:
+        * platform/efl/fast/block/positioning/002-expected.txt:
+        * platform/efl/fast/block/positioning/052-expected.txt:
+        * platform/efl/fast/block/positioning/053-expected.txt:
+        * platform/efl/fast/block/positioning/054-expected.txt:
+        * platform/efl/fast/block/positioning/055-expected.txt:
+        * platform/efl/fast/block/positioning/057-expected.txt:
+        * platform/efl/fast/block/positioning/058-expected.txt:
+        * platform/efl/fast/block/positioning/059-expected.txt:
+        * platform/efl/fast/block/positioning/abs-inside-inline-rel-expected.txt:
+        * platform/efl/fast/block/positioning/absolute-in-inline-ltr-2-expected.txt:
+        * platform/efl/fast/block/positioning/absolute-in-inline-ltr-3-expected.txt:
+        * platform/efl/fast/block/positioning/absolute-in-inline-ltr-expected.txt:
+        * platform/efl/fast/block/positioning/absolute-in-inline-rtl-2-expected.txt:
+        * platform/efl/fast/block/positioning/absolute-in-inline-rtl-3-expected.txt:
+        * platform/efl/fast/block/positioning/absolute-in-inline-rtl-expected.txt:
+        * platform/efl/fast/block/positioning/absolute-in-inline-short-ltr-expected.txt:
 +        * platform/efl/fast/block/positioning/absolute-in-inline-short-rtl-expected.txt:
 +        * platform/efl/fast/block/positioning/absolute-length-of-neg-666666-expected.txt:
 +        * platform/efl/fast/block/positioning/absolute-position-direction-expected.txt:
 +        * platform/efl/fast/block/positioning/absolute-positioned-overconstrained-expected.txt:
 +        * platform/efl/fast/block/positioning/absolute-positioning-no-scrollbar-expected.txt:
 +        * platform/efl/fast/block/positioning/absolute-with-html-border-quirks-expected.txt:
 +        * platform/efl/fast/block/positioning/absolute-with-html-border-strict-expected.txt:
 +        * platform/efl/fast/block/positioning/auto-height-with-top-and-bottom-expected.txt:
 +        * platform/efl/fast/block/positioning/auto/001-expected.txt:
+        * platform/efl/fast/block/positioning/auto/002-expected.txt:
+        * platform/efl/fast/block/positioning/auto/003-expected.txt:
+        * platform/efl/fast/block/positioning/auto/004-expected.txt:
+        * platform/efl/fast/block/positioning/auto/005-expected.txt:
+        * platform/efl/fast/block/positioning/auto/006-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-lr/001-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-lr/002-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-lr/003-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-lr/004-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-lr/005-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-lr/006-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-rl/001-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-rl/002-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-rl/003-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-rl/004-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-rl/005-expected.txt:
+        * platform/efl/fast/block/positioning/auto/vertical-rl/006-expected.txt:
+        * platform/efl/fast/block/positioning/child-of-absolute-with-auto-height-expected.txt:
 +        * platform/efl/fast/block/positioning/differing-writing-modes-expected.txt:
+        * platform/efl/fast/block/positioning/differing-writing-modes-replaced-expected.txt:
 +        * platform/efl/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt:
 +        * platform/efl/fast/block/positioning/height-change-expected.txt:
+        * platform/efl/fast/block/positioning/hiding-inside-relpositioned-inline-expected.txt:
 +        * platform/efl/fast/block/positioning/inline-block-relposition-expected.txt:
 +        * platform/efl/fast/block/positioning/leftmargin-topmargin-expected.txt:
+        * platform/efl/fast/block/positioning/negative-right-pos-expected.txt:
+        * platform/efl/fast/block/positioning/padding-percent-expected.txt:
+        * platform/efl/fast/block/positioning/pref-width-change-expected.txt:
+        * platform/efl/fast/block/positioning/relative-overflow-block-expected.txt:
+        * platform/efl/fast/block/positioning/relative-overflow-replaced-expected.txt:
 +        * platform/efl/fast/block/positioning/relative-overflow-replaced-float-expected.txt:
 +        * platform/efl/fast/block/positioning/relative-positioned-inline-container-expected.txt:
 +        * platform/efl/fast/block/positioning/relayout-on-position-change-expected.txt:
 +        * platform/efl/fast/block/positioning/rtl-static-positioning-expected.txt:
+        * platform/efl/fast/block/positioning/rtl-static-positioning-inline-block-expected.txt:
 +        * platform/efl/fast/block/positioning/static-distance-with-positioned-ancestor-expected.txt:
 +        * platform/efl/fast/block/positioning/table-cell-static-position-expected.txt:
 +        * platform/efl/fast/block/positioning/trailing-space-test-expected.txt:
+        * platform/efl/fast/block/positioning/vertical-lr/001-expected.txt:
+        * platform/efl/fast/block/positioning/vertical-lr/002-expected.txt:
+        * platform/efl/fast/block/positioning/vertical-rl/001-expected.txt:
+        * platform/efl/fast/block/positioning/vertical-rl/002-expected.txt:
+        * platform/efl/fast/block/positioning/window-height-change-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/001-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/001-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/002-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/002-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/003-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/003-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/003-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/004-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/004-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/004-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/005-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/005-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/005-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/006-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/006-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/006-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/007-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/007-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/007-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-color/008-expected.txt:
+        * platform/efl/fast/body-propagation/background-color/008-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/001-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/001-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/002-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/002-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/003-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/003-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/003-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/004-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/004-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/004-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/005-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/005-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/005-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/006-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/006-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/006-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/007-declarative-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/007-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/007-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/008-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/008-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/009-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/009-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/background-image/010-expected.txt:
+        * platform/efl/fast/body-propagation/background-image/010-xhtml-expected.txt:
 +        * platform/efl/fast/body-propagation/overflow/001-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/001-xhtml-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/002-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/002-xhtml-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/003-declarative-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/003-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/003-xhtml-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/004-declarative-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/004-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/004-xhtml-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/005-declarative-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/005-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/005-xhtml-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/006-declarative-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/006-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/006-xhtml-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/007-declarative-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/007-expected.txt:
+        * platform/efl/fast/body-propagation/overflow/007-xhtml-expected.txt:
+        * platform/efl/fast/borders/bidi-002-expected.txt:
+        * platform/efl/fast/borders/bidi-009a-expected.txt:
+        * platform/efl/fast/borders/bidi-012-expected.txt:
+        * platform/efl/fast/borders/border-antialiasing-expected.txt:
+        * platform/efl/fast/borders/border-color-inherit-expected.txt:
+        * platform/efl/fast/borders/border-image-01-expected.txt:
+        * platform/efl/fast/borders/border-image-border-radius-expected.txt:
+        * platform/efl/fast/borders/border-image-longhand-expected.txt:
+        * platform/efl/fast/borders/border-image-massive-scale-expected.txt:
+        * platform/efl/fast/borders/border-image-outset-expected.txt:
+        * platform/efl/fast/borders/border-image-outset-in-shorthand-expected.txt:
+        * platform/efl/fast/borders/border-image-repeat-expected.txt:
+        * platform/efl/fast/borders/border-image-rotate-transform-expected.txt:
+        * platform/efl/fast/borders/border-image-scale-transform-expected.txt:
+        * platform/efl/fast/borders/border-image-scaled-expected.txt:
+        * platform/efl/fast/borders/border-image-scrambled-expected.txt:
+        * platform/efl/fast/borders/border-image-side-reduction-expected.txt:
+        * platform/efl/fast/borders/border-image-slices-expected.txt:
+        * platform/efl/fast/borders/border-image-source-expected.txt:
+        * platform/efl/fast/borders/border-radius-constraints-expected.txt:
+        * platform/efl/fast/borders/border-radius-huge-assert-expected.txt:
+        * platform/efl/fast/borders/border-radius-inset-outset-expected.txt:
+        * platform/efl/fast/borders/border-radius-split-inline-expected.txt:
+        * platform/efl/fast/borders/borderRadiusAllStylesAllCorners-expected.txt:
+        * platform/efl/fast/borders/borderRadiusInvalidColor-expected.txt:
+        * platform/efl/fast/borders/different-color-borders-expected.txt:
+        * platform/efl/fast/borders/mixed-border-styles-expected.txt:
+        * platform/efl/fast/borders/mixed-border-styles-radius-expected.txt:
+        * platform/efl/fast/borders/mixed-border-styles-radius2-expected.txt:
+        * platform/efl/fast/borders/rtl-border-01-expected.txt:
+        * platform/efl/fast/borders/rtl-border-02-expected.txt:
+        * platform/efl/fast/borders/rtl-border-03-expected.txt:
+        * platform/efl/fast/borders/rtl-border-05-expected.txt:
+        * platform/efl/fast/borders/table-borders-expected.txt:
+        * platform/efl/fast/box-shadow/border-radius-big-expected.txt:
+        * platform/efl/fast/box-shadow/box-shadow-transformed-expected.txt:
+        * platform/efl/fast/box-shadow/inset-box-shadows-expected.txt:
+        * platform/efl/fast/box-shadow/inset-expected.txt:
+        * platform/efl/fast/box-shadow/transform-fringing-expected.txt:
+        * platform/efl/fast/canvas/canvas-size-change-after-layout-expected.txt:
+        * platform/efl/fast/canvas/canvas-zoom-expected.txt:
+        * platform/efl/fast/clip/001-expected.txt:
+        * platform/efl/fast/clip/002-expected.txt:
+        * platform/efl/fast/clip/003-expected.txt:
+        * platform/efl/fast/clip/004-expected.txt:
+        * platform/efl/fast/clip/005-expected.txt:
+        * platform/efl/fast/clip/006-expected.txt:
+        * platform/efl/fast/clip/007-expected.txt:
+        * platform/efl/fast/clip/008-expected.txt:
+        * platform/efl/fast/clip/009-expected.txt:
+        * platform/efl/fast/clip/010-expected.txt:
+        * platform/efl/fast/clip/011-expected.txt:
+        * platform/efl/fast/clip/012-expected.txt:
+        * platform/efl/fast/clip/013-expected.txt:
+        * platform/efl/fast/clip/014-expected.txt:
+        * platform/efl/fast/clip/015-expected.txt:
+        * platform/efl/fast/clip/nestedTransparencyClip-expected.txt:
+        * platform/efl/fast/clip/outline-overflowClip-expected.txt:
+        * platform/efl/fast/clip/overflow-border-radius-clip-expected.txt:
+        * platform/efl/fast/clip/overflow-border-radius-combinations-expected.txt:
+        * platform/efl/fast/clip/overflow-border-radius-composited-expected.txt:
+        * platform/efl/fast/clip/overflow-border-radius-fixed-position-expected.txt:
+        * platform/efl/fast/clip/overflow-border-radius-transformed-expected.txt:
+        * platform/efl/fast/compact/001-expected.txt:
+        * platform/efl/fast/compact/002-expected.txt:
+        * platform/efl/fast/compact/003-expected.txt:
+        * platform/efl/fast/css-generated-content/002-expected.txt:
+        * platform/efl/fast/css-generated-content/004-expected.txt:
+        * platform/efl/fast/css-generated-content/005-expected.txt:
+        * platform/efl/fast/css-generated-content/007-expected.txt:
+        * platform/efl/fast/css-generated-content/008-expected.txt:
+        * platform/efl/fast/css-generated-content/010-expected.txt:
+        * platform/efl/fast/css-generated-content/015-expected.txt:
+        * platform/efl/fast/css-generated-content/016-expected.txt:
+        * platform/efl/fast/css-generated-content/after-order-expected.txt:
+        * platform/efl/fast/css-generated-content/before-with-first-letter-expected.txt:
 +        * platform/efl/fast/css-generated-content/beforeAfter-interdocument-expected.txt:
 +        * platform/efl/fast/css-generated-content/hover-style-change-expected.txt:
+        * platform/efl/fast/css-generated-content/no-openclose-quote-expected.txt:
+        * platform/efl/fast/css-generated-content/table-before-after-child-add-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-cell-before-after-child-add-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-cell-before-content-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-row-before-after-child-add-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-row-before-after-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-row-group-to-inline-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-row-group-with-before-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-row-with-before-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-table-before-after-child-add-expected.txt:
 +        * platform/efl/fast/css-generated-content/table-with-before-expected.txt:
+        * platform/efl/fast/css-generated-content/wbr-with-before-content-expected.txt:
 +        * platform/efl/fast/css/001-expected.txt:
+        * platform/efl/fast/css/007-expected.txt:
+        * platform/efl/fast/css/MarqueeLayoutTest-expected.txt:
+        * platform/efl/fast/css/ZeroOpacityLayers-expected.txt:
+        * platform/efl/fast/css/ZeroOpacityLayers2-expected.txt:
+        * platform/efl/fast/css/absolute-poition-in-rtl-parent-expected.txt:
+        * platform/efl/fast/css/apple-prefix-expected.txt:
+        * platform/efl/fast/css/attribute-selector-dynamic-expected.txt:
+        * platform/efl/fast/css/attribute-selector-empty-value-expected.txt:
+        * platform/efl/fast/css/beforeSelectorOnCodeElement-expected.txt:
+        * platform/efl/fast/css/begin-end-contain-selector-empty-value-expected.txt:
+        * platform/efl/fast/css/border-height-expected.txt:
+        * platform/efl/fast/css/border-radius-outline-offset-expected.txt:
+        * platform/efl/fast/css/color-correction-expected.txt:
+        * platform/efl/fast/css/color-correction-on-background-image-expected.txt:
+        * platform/efl/fast/css/color-correction-on-backgrounds-expected.txt:
+        * platform/efl/fast/css/color-correction-on-box-shadow-expected.txt:
+        * platform/efl/fast/css/color-correction-untagged-images-expected.txt:
+        * platform/efl/fast/css/color-quirk-expected.txt:
+        * platform/efl/fast/css/color-strict-expected.txt:
+        * platform/efl/fast/css/compare-content-style-expected.txt:
+        * platform/efl/fast/css/continuationCrash-expected.txt:
+        * platform/efl/fast/css/counters/counter-text-security-expected.txt:
+        * platform/efl/fast/css/counters/counter-text-transform-expected.txt:
+        * platform/efl/fast/css/create_element_align-expected.txt:
+        * platform/efl/fast/css/css-imports-expected.txt:
+        * platform/efl/fast/css/css1_forward_compatible_parsing-expected.txt:
+        * platform/efl/fast/css/css3-modsel-22-expected.txt:
+        * platform/efl/fast/css/css3-nth-child-expected.txt:
+        * platform/efl/fast/css/css3-space-in-nth-and-lang-expected.txt:
+        * platform/efl/fast/css/dynamic-sibling-selector-expected.txt:
+        * platform/efl/fast/css/empty-body-test-expected.txt:
+        * platform/efl/fast/css/empty-generated-content-expected.txt:
+        * platform/efl/fast/css/empty-pseudo-class-expected.txt:
+        * platform/efl/fast/css/error-in-last-decl-expected.txt:
+        * platform/efl/fast/css/ex-after-font-variant-expected.txt:
+        * platform/efl/fast/css/fieldset-display-row-expected.txt:
+        * platform/efl/fast/css/find-next-layer-expected.txt:
+        * platform/efl/fast/css/first-child-pseudo-class-expected.txt:
+        * platform/efl/fast/css/first-letter-capitalized-expected.txt:
+        * platform/efl/fast/css/first-letter-detach-expected.txt:
+        * platform/efl/fast/css/first-letter-float-after-float-expected.txt:
+        * platform/efl/fast/css/first-letter-float-expected.txt:
+        * platform/efl/fast/css/first-letter-hover-expected.txt:
+        * platform/efl/fast/css/first-letter-punctuation-expected.txt:
+        * platform/efl/fast/css/first-letter-recalculation-expected.txt:
+        * platform/efl/fast/css/first-letter-skip-out-of-flow-expected.txt:
+        * platform/efl/fast/css/first-letter-visibility-expected.txt:
+        * platform/efl/fast/css/first-of-type-pseudo-class-expected.txt:
+        * platform/efl/fast/css/focus-ring-detached-expected.txt:
+        * platform/efl/fast/css/focus-ring-multiline-expected.txt:
+        * platform/efl/fast/css/focus-ring-multiline-writingmode-vertical-expected.txt:
 +        * platform/efl/fast/css/focus-ring-outline-color-expected.txt:
+        * platform/efl/fast/css/focus-ring-outline-offset-expected.txt:
+        * platform/efl/fast/css/focus-ring-outline-width-expected.txt:
+        * platform/efl/fast/css/font-face-default-font-expected.txt:
+        * platform/efl/fast/css/font-face-descriptor-multiple-values-expected.txt:
+        * platform/efl/fast/css/font-face-implicit-local-font-expected.txt:
+        * platform/efl/fast/css/font-face-locally-installed-expected.txt:
+        * platform/efl/fast/css/font-face-multiple-faces-expected.txt:
+        * platform/efl/fast/css/font-face-opentype-expected.txt:
+        * platform/efl/fast/css/font-face-unicode-range-expected.txt:
+        * platform/efl/fast/css/font-shorthand-weight-only-expected.txt:
+        * platform/efl/fast/css/h1-in-section-elements-expected.txt:
+        * platform/efl/fast/css/hover-subselector-expected.txt:
+        * platform/efl/fast/css/import-rule-regression-11590-expected.txt:
+        * platform/efl/fast/css/inline-element-line-break-expected.txt:
+        * platform/efl/fast/css/input-search-padding-expected.txt:
+        * platform/efl/fast/css/invalid-percentage-property-expected.txt:
+        * platform/efl/fast/css/invalid-pseudo-classes-expected.txt:
+        * platform/efl/fast/css/invalidation-errors-2-expected.txt:
+        * platform/efl/fast/css/invalidation-errors-expected.txt:
+        * platform/efl/fast/css/last-child-pseudo-class-expected.txt:
+        * platform/efl/fast/css/last-of-type-pseudo-class-expected.txt:
+        * platform/efl/fast/css/layerZOrderCrash-expected.txt:
+        * platform/efl/fast/css/line-after-floating-div-expected.txt:
+        * platform/efl/fast/css/line-height-expected.txt:
+        * platform/efl/fast/css/line-height-overflow-expected.txt:
+        * platform/efl/fast/css/link-outside-head-expected.txt:
+        * platform/efl/fast/css/list-outline-expected.txt:
+        * platform/efl/fast/css/live-cssrules-expected.txt:
+        * platform/efl/fast/css/margin-bottom-form-element-quirk-expected.txt:
+        * platform/efl/fast/css/margin-bottom-form-element-strict-expected.txt:
+        * platform/efl/fast/css/margin-top-bottom-dynamic-expected.txt:
+        * platform/efl/fast/css/namespaces/001-expected.txt:
+        * platform/efl/fast/css/namespaces/002-expected.txt:
+        * platform/efl/fast/css/namespaces/003-expected.txt:
+        * platform/efl/fast/css/namespaces/004-expected.txt:
+        * platform/efl/fast/css/namespaces/005-expected.txt:
+        * platform/efl/fast/css/namespaces/006-expected.txt:
+        * platform/efl/fast/css/namespaces/007-expected.txt:
+        * platform/efl/fast/css/namespaces/namespaces-comments-expected.txt:
+        * platform/efl/fast/css/namespaces/namespaces-empty-expected.txt:
+        * platform/efl/fast/css/namespaces/namespaces-escapes-expected.txt:
+        * platform/efl/fast/css/namespaces/namespaces-invalid-at-expected.txt:
+        * platform/efl/fast/css/negative-leading-expected.txt:
+        * platform/efl/fast/css/negative-nth-child-expected.txt:
+        * platform/efl/fast/css/nested-floating-relative-position-percentages-expected.txt:
 +        * platform/efl/fast/css/nested-layers-with-hover-expected.txt:
+        * platform/efl/fast/css/nth-child-dynamic-expected.txt:
+        * platform/efl/fast/css/only-child-pseudo-class-expected.txt:
+        * platform/efl/fast/css/only-of-type-pseudo-class-expected.txt:
+        * platform/efl/fast/css/outline-auto-location-expected.txt:
+        * platform/efl/fast/css/outline-narrowLine-expected.txt:
+        * platform/efl/fast/css/pendingStylesheetFontSize-expected.txt:
+        * platform/efl/fast/css/percent-top-relative-container-height-unspecified-expected.txt:
 +        * platform/efl/fast/css/percent-top-value-with-relative-position-expected.txt:
 +        * platform/efl/fast/css/percentage-non-integer-expected.txt:
+        * platform/efl/fast/css/position-negative-top-margin-expected.txt:
+        * platform/efl/fast/css/pseudo-element-line-break-expected.txt:
+        * platform/efl/fast/css/quirk-orphaned-units-expected.txt:
+        * platform/efl/fast/css/resize-corner-tracking-expected.txt:
+        * platform/efl/fast/css/resize-corner-tracking-transformed-expected.txt:
+        * platform/efl/fast/css/rtl-ordering-expected.txt:
+        * platform/efl/fast/css/rtl-to-viewport-expected.txt:
+        * platform/efl/fast/css/simple-selector-chain-parsing-expected.txt:
+        * platform/efl/fast/css/style-outside-head-expected.txt:
+        * platform/efl/fast/css/style-parsed-outside-head-expected.txt:
+        * platform/efl/fast/css/table-text-align-quirk-expected.txt:
+        * platform/efl/fast/css/table-text-align-strict-expected.txt:
+        * platform/efl/fast/css/target-fragment-match-expected.txt:
+        * platform/efl/fast/css/text-align-expected.txt:
+        * platform/efl/fast/css/text-input-with-webkit-border-radius-expected.txt:
+        * platform/efl/fast/css/text-overflow-ellipsis-bidi-expected.txt:
+        * platform/efl/fast/css/text-overflow-ellipsis-expected.txt:
+        * platform/efl/fast/css/text-overflow-ellipsis-strict-expected.txt:
+        * platform/efl/fast/css/text-security-expected.txt:
+        * platform/efl/fast/css/text-transform-select-expected.txt:
+        * platform/efl/fast/css/textCapitalizeEdgeCases-expected.txt:
+        * platform/efl/fast/css/transformed-mask-expected.txt:
+        * platform/efl/fast/css/universal-hover-quirk-expected.txt:
+        * platform/efl/fast/css/value-list-out-of-bounds-crash-expected.txt:
+        * platform/efl/fast/css/word-space-extra-expected.txt:
+        * platform/efl/fast/doctypes/001-expected.txt:
+        * platform/efl/fast/doctypes/002-expected.txt:
+        * platform/efl/fast/doctypes/003-expected.txt:
+        * platform/efl/fast/doctypes/004-expected.txt:
+        * platform/efl/fast/dom/34176-expected.txt:
+        * platform/efl/fast/dom/52776-expected.txt:
+        * platform/efl/fast/dom/Element/class-attribute-whitespace-expected.txt:
+        * platform/efl/fast/dom/Element/getBoundingClientRect-expected.txt:
+        * platform/efl/fast/dom/Element/null-offset-parent-expected.txt:
+        * platform/efl/fast/dom/HTMLDocument/frameless-location-bugzilla10837-expected.txt:
 +        * platform/efl/fast/dom/HTMLElement/bdo-expected.txt:
+        * platform/efl/fast/dom/HTMLHeadElement/head-link-style-href-check-expected.txt:
 +        * platform/efl/fast/dom/HTMLImageElement/image-alt-text-expected.txt:
+        * platform/efl/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt:
+        * platform/efl/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.txt:
 +        * platform/efl/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt:
 +        * platform/efl/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt:
 +        * platform/efl/fast/dom/HTMLMeterElement/meter-styles-expected.txt:
+        * platform/efl/fast/dom/HTMLObjectElement/vspace-hspace-as-number-expected.txt:
 +        * platform/efl/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt:
 +        * platform/efl/fast/dom/HTMLProgressElement/progress-bar-value-pseudo-element-expected.txt:
 +        * platform/efl/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt:
 +        * platform/efl/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
+        * platform/efl/fast/dom/Range/create-contextual-fragment-expected.txt:
+        * platform/efl/fast/dom/Range/getBoundingClientRect-expected.txt:
+        * platform/efl/fast/dom/Range/getClientRects-expected.txt:
+        * platform/efl/fast/dom/Range/surroundContents-1-expected.txt:
+        * platform/efl/fast/dom/Window/btoa-pnglet-expected.txt:
+        * platform/efl/fast/dom/Window/open-existing-pop-up-blocking-expected.txt:
+        * platform/efl/fast/dom/Window/webkitConvertPoint-expected.txt:
+        * platform/efl/fast/dom/blur-contenteditable-expected.txt:
+        * platform/efl/fast/dom/children-nodes-expected.txt:
+        * platform/efl/fast/dom/clone-contents-0-end-offset-expected.txt:
+        * platform/efl/fast/dom/createDocumentType-expected.txt:
+        * platform/efl/fast/dom/css-mediarule-deleteRule-update-expected.txt:
+        * platform/efl/fast/dom/css-mediarule-insertRule-update-expected.txt:
+        * platform/efl/fast/dom/css-rule-functions-expected.txt:
+        * platform/efl/fast/dom/focus-contenteditable-expected.txt:
+        * platform/efl/fast/dom/gc-10-expected.txt:
+        * platform/efl/fast/dom/importNodeHTML-expected.txt:
+        * platform/efl/fast/dom/importNodeXML-expected.txt:
+        * platform/efl/fast/dom/isindex-001-expected.txt:
+        * platform/efl/fast/dom/isindex-002-expected.txt:
+        * platform/efl/fast/dom/outerText-expected.txt:
+        * platform/efl/fast/dom/row-inner-text-expected.txt:
+        * platform/efl/fast/dynamic/002-expected.txt:
+        * platform/efl/fast/dynamic/004-expected.txt:
+        * platform/efl/fast/dynamic/006-expected.txt:
+        * platform/efl/fast/dynamic/007-expected.txt:
+        * platform/efl/fast/dynamic/008-expected.txt:
+        * platform/efl/fast/dynamic/009-expected.txt:
+        * platform/efl/fast/dynamic/011-expected.txt:
+        * platform/efl/fast/dynamic/012-expected.txt:
+        * platform/efl/fast/dynamic/013-expected.txt:
+        * platform/efl/fast/dynamic/014-expected.txt:
+        * platform/efl/fast/dynamic/015-expected.txt:
+        * platform/efl/fast/dynamic/anonymous-block-orphaned-lines-expected.txt:
+        * platform/efl/fast/dynamic/containing-block-change-expected.txt:
+        * platform/efl/fast/dynamic/create-renderer-for-whitespace-only-text-expected.txt:
 +        * platform/efl/fast/dynamic/first-letter-display-change-expected.txt:
+        * platform/efl/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.txt:
 +        * platform/efl/fast/dynamic/float-withdrawal-expected.txt:
+        * platform/efl/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
 +        * platform/efl/fast/dynamic/layer-hit-test-crash-expected.txt:
+        * platform/efl/fast/dynamic/move-node-with-selection-expected.txt:
+        * platform/efl/fast/dynamic/noninlinebadness-expected.txt:
+        * platform/efl/fast/dynamic/outerHTML-doc-expected.txt:
+        * platform/efl/fast/dynamic/outerHTML-img-expected.txt:
+        * platform/efl/fast/dynamic/positioned-movement-with-positioned-children-expected.txt:
 +        * platform/efl/fast/dynamic/selection-highlight-adjust-expected.txt:
+        * platform/efl/fast/dynamic/staticY-marking-parents-regression-expected.txt:
+        * platform/efl/fast/dynamic/view-overflow-expected.txt:
+        * platform/efl/fast/encoding/denormalised-voiced-japanese-chars-expected.txt:
 +        * platform/efl/fast/encoding/invalid-UTF-8-expected.txt:
+        * platform/efl/fast/encoding/utf-16-big-endian-expected.txt:
+        * platform/efl/fast/encoding/utf-16-little-endian-expected.txt:
+        * platform/efl/fast/encoding/xmacroman-encoding-test-expected.txt:
+        * platform/efl/fast/events/autoscroll-expected.txt:
+        * platform/efl/fast/events/event-listener-on-link-expected.txt:
+        * platform/efl/fast/events/onload-re-entry-expected.txt:
+        * platform/efl/fast/events/reveal-link-when-focused-expected.txt:
+        * platform/efl/fast/events/updateLayoutForHitTest-expected.txt:
+        * platform/efl/fast/fast-mobile-scrolling/fixed-position-element-expected.txt:
 +        * platform/efl/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.txt:
 +        * platform/efl/fast/flexbox/001-expected.txt:
+        * platform/efl/fast/flexbox/002-expected.txt:
+        * platform/efl/fast/flexbox/003-expected.txt:
+        * platform/efl/fast/flexbox/004-expected.txt:
+        * platform/efl/fast/flexbox/005-expected.txt:
+        * platform/efl/fast/flexbox/006-expected.txt:
+        * platform/efl/fast/flexbox/007-expected.txt:
+        * platform/efl/fast/flexbox/008-expected.txt:
+        * platform/efl/fast/flexbox/009-expected.txt:
+        * platform/efl/fast/flexbox/010-expected.txt:
+        * platform/efl/fast/flexbox/011-expected.txt:
+        * platform/efl/fast/flexbox/012-expected.txt:
+        * platform/efl/fast/flexbox/013-expected.txt:
+        * platform/efl/fast/flexbox/014-expected.txt:
+        * platform/efl/fast/flexbox/015-expected.txt:
+        * platform/efl/fast/flexbox/016-expected.txt:
+        * platform/efl/fast/flexbox/017-expected.txt:
+        * platform/efl/fast/flexbox/018-expected.txt:
+        * platform/efl/fast/flexbox/019-expected.txt:
+        * platform/efl/fast/flexbox/020-expected.txt:
+        * platform/efl/fast/flexbox/021-expected.txt:
+        * platform/efl/fast/flexbox/022-expected.txt:
+        * platform/efl/fast/flexbox/023-expected.txt:
+        * platform/efl/fast/flexbox/024-expected.txt:
+        * platform/efl/fast/flexbox/026-expected.txt:
+        * platform/efl/fast/flexbox/overhanging-floats-removed-expected.txt:
+        * platform/efl/fast/forms/003-expected.txt:
+        * platform/efl/fast/forms/004-expected.txt:
+        * platform/efl/fast/forms/006-expected.txt:
+        * platform/efl/fast/forms/007-expected.txt:
+        * platform/efl/fast/forms/HTMLOptionElement_label01-expected.txt:
+        * platform/efl/fast/forms/HTMLOptionElement_label02-expected.txt:
+        * platform/efl/fast/forms/HTMLOptionElement_label03-expected.txt:
+        * platform/efl/fast/forms/HTMLOptionElement_label04-expected.txt:
+        * platform/efl/fast/forms/HTMLOptionElement_label05-expected.txt:
+        * platform/efl/fast/forms/HTMLOptionElement_label06-expected.txt:
+        * platform/efl/fast/forms/HTMLOptionElement_label07-expected.txt:
+        * platform/efl/fast/forms/basic-buttons-expected.txt:
+        * platform/efl/fast/forms/basic-inputs-expected.txt:
+        * platform/efl/fast/forms/blankbuttons-expected.txt:
+        * platform/efl/fast/forms/box-shadow-override-expected.txt:
+        * platform/efl/fast/forms/button-align-expected.txt:
+        * platform/efl/fast/forms/button-cannot-be-nested-expected.txt:
+        * platform/efl/fast/forms/button-default-title-expected.txt:
+        * platform/efl/fast/forms/button-generated-content-expected.txt:
+        * platform/efl/fast/forms/button-inner-block-reuse-expected.txt:
+        * platform/efl/fast/forms/button-positioned-expected.txt:
+        * platform/efl/fast/forms/button-sizes-expected.txt:
+        * platform/efl/fast/forms/button-style-color-expected.txt:
+        * platform/efl/fast/forms/button-submit-expected.txt:
+        * platform/efl/fast/forms/button-table-styles-expected.txt:
+        * platform/efl/fast/forms/button-text-transform-expected.txt:
+        * platform/efl/fast/forms/button-white-space-expected.txt:
+        * platform/efl/fast/forms/checkbox-radio-onchange-expected.txt:
+        * platform/efl/fast/forms/control-clip-expected.txt:
+        * platform/efl/fast/forms/control-clip-overflow-expected.txt:
+        * platform/efl/fast/forms/control-restrict-line-height-expected.txt:
+        * platform/efl/fast/forms/disabled-select-change-index-expected.txt:
+        * platform/efl/fast/forms/encoding-test-expected.txt:
+        * platform/efl/fast/forms/fieldset-align-expected.txt:
+        * platform/efl/fast/forms/file/file-input-direction-expected.txt:
+        * platform/efl/fast/forms/file/file-input-disabled-expected.txt:
+        * platform/efl/fast/forms/float-before-fieldset-expected.txt:
+        * platform/efl/fast/forms/floating-textfield-relayout-expected.txt:
+        * platform/efl/fast/forms/form-added-to-table-expected.txt:
+        * platform/efl/fast/forms/form-hides-table-expected.txt:
+        * platform/efl/fast/forms/form-in-malformed-markup-expected.txt:
+        * platform/efl/fast/forms/formmove-expected.txt:
+        * platform/efl/fast/forms/formmove2-expected.txt:
+        * platform/efl/fast/forms/formmove3-expected.txt:
+        * platform/efl/fast/forms/hidden-listbox-expected.txt:
+        * platform/efl/fast/forms/image-border-expected.txt:
+        * platform/efl/fast/forms/input-align-expected.txt:
+        * platform/efl/fast/forms/input-align-image-expected.txt:
+        * platform/efl/fast/forms/input-appearance-bkcolor-expected.txt:
+        * platform/efl/fast/forms/input-appearance-default-bkcolor-expected.txt:
+        * platform/efl/fast/forms/input-appearance-focus-expected.txt:
+        * platform/efl/fast/forms/input-appearance-height-expected.txt:
+        * platform/efl/fast/forms/input-appearance-preventDefault-expected.txt:
+        * platform/efl/fast/forms/input-appearance-selection-expected.txt:
+        * platform/efl/fast/forms/input-appearance-visibility-expected.txt:
+        * platform/efl/fast/forms/input-appearance-width-expected.txt:
+        * platform/efl/fast/forms/input-button-sizes-expected.txt:
+        * platform/efl/fast/forms/input-disabled-color-expected.txt:
+        * platform/efl/fast/forms/input-double-click-selection-gap-bug-expected.txt:
+        * platform/efl/fast/forms/input-first-letter-expected.txt:
+        * platform/efl/fast/forms/input-readonly-dimmed-expected.txt:
+        * platform/efl/fast/forms/input-readonly-empty-expected.txt:
+        * platform/efl/fast/forms/input-spaces-expected.txt:
+        * platform/efl/fast/forms/input-table-expected.txt:
+        * platform/efl/fast/forms/input-text-click-inside-expected.txt:
+        * platform/efl/fast/forms/input-text-option-delete-expected.txt:
+        * platform/efl/fast/forms/input-text-self-emptying-click-expected.txt:
+        * platform/efl/fast/forms/input-text-word-wrap-expected.txt:
+        * platform/efl/fast/forms/input-type-text-min-width-expected.txt:
+        * platform/efl/fast/forms/input-value-expected.txt:
+        * platform/efl/fast/forms/input-width-expected.txt:
+        * platform/efl/fast/forms/linebox-overflow-in-textarea-padding-expected.txt:
+        * platform/efl/fast/forms/listbox-bidi-align-expected.txt:
+        * platform/efl/fast/forms/listbox-hit-test-zoomed-expected.txt:
+        * platform/efl/fast/forms/listbox-scrollbar-incremental-load-expected.txt:
+        * platform/efl/fast/forms/listbox-width-change-expected.txt:
+        * platform/efl/fast/forms/menulist-clip-expected.txt:
+        * platform/efl/fast/forms/menulist-deselect-update-expected.txt:
+        * platform/efl/fast/forms/menulist-narrow-width-expected.txt:
+        * platform/efl/fast/forms/menulist-no-overflow-expected.txt:
+        * platform/efl/fast/forms/menulist-option-wrap-expected.txt:
+        * platform/efl/fast/forms/menulist-restrict-line-height-expected.txt:
+        * platform/efl/fast/forms/menulist-separator-painting-expected.txt:
+        * platform/efl/fast/forms/menulist-style-color-expected.txt:
+        * platform/efl/fast/forms/menulist-width-change-expected.txt:
+        * platform/efl/fast/forms/minWidthPercent-expected.txt:
+        * platform/efl/fast/forms/negativeLineHeight-expected.txt:
+        * platform/efl/fast/forms/number/input-appearance-number-rtl-expected.txt:
+        * platform/efl/fast/forms/number/input-appearance-spinbutton-disabled-readonly-expected.txt:
 +        * platform/efl/fast/forms/number/input-appearance-spinbutton-layer-expected.txt:
 +        * platform/efl/fast/forms/option-index-expected.txt:
+        * platform/efl/fast/forms/option-script-expected.txt:
+        * platform/efl/fast/forms/option-strip-whitespace-expected.txt:
+        * platform/efl/fast/forms/option-text-clip-expected.txt:
+        * platform/efl/fast/forms/preserveFormDuringResidualStyle-expected.txt:
+        * platform/efl/fast/forms/radio-attr-order-expected.txt:
+        * platform/efl/fast/forms/radio-nested-labels-expected.txt:
+        * platform/efl/fast/forms/radio_checked-expected.txt:
+        * platform/efl/fast/forms/radio_checked_dynamic-expected.txt:
+        * platform/efl/fast/forms/range/input-appearance-range-expected.txt:
+        * platform/efl/fast/forms/range/range-thumb-height-percentage-expected.txt:
+        * platform/efl/fast/forms/range/slider-padding-expected.txt:
+        * platform/efl/fast/forms/range/slider-thumb-shared-style-expected.txt:
+        * platform/efl/fast/forms/search-cancel-button-style-sharing-expected.txt:
+        * platform/efl/fast/forms/search-display-none-cancel-button-expected.txt:
+        * platform/efl/fast/forms/search-rtl-expected.txt:
+        * platform/efl/fast/forms/search-vertical-alignment-expected.txt:
+        * platform/efl/fast/forms/searchfield-heights-expected.txt:
+        * platform/efl/fast/forms/select-align-expected.txt:
+        * platform/efl/fast/forms/select-background-none-expected.txt:
+        * platform/efl/fast/forms/select-baseline-expected.txt:
+        * platform/efl/fast/forms/select-block-background-expected.txt:
+        * platform/efl/fast/forms/select-change-listbox-size-expected.txt:
+        * platform/efl/fast/forms/select-change-listbox-to-popup-expected.txt:
+        * platform/efl/fast/forms/select-change-popup-to-listbox-expected.txt:
+        * platform/efl/fast/forms/select-dirty-parent-pref-widths-expected.txt:
+        * platform/efl/fast/forms/select-display-none-style-resolve-expected.txt:
+        * platform/efl/fast/forms/select-empty-option-height-expected.txt:
+        * platform/efl/fast/forms/select-initial-position-expected.txt:
+        * platform/efl/fast/forms/select-item-background-clip-expected.txt:
+        * platform/efl/fast/forms/select-list-box-with-height-expected.txt:
+        * platform/efl/fast/forms/select-selected-expected.txt:
+        * platform/efl/fast/forms/select-size-expected.txt:
+        * platform/efl/fast/forms/select-style-expected.txt:
+        * platform/efl/fast/forms/select-visual-hebrew-expected.txt:
+        * platform/efl/fast/forms/select-writing-direction-natural-expected.txt:
+        * platform/efl/fast/forms/selectlist-minsize-expected.txt:
+        * platform/efl/fast/forms/stuff-on-my-optgroup-expected.txt:
+        * platform/efl/fast/forms/tabbing-input-iframe-expected.txt:
+        * platform/efl/fast/forms/targeted-frame-submission-expected.txt:
+        * platform/efl/fast/forms/text-style-color-expected.txt:
+        * platform/efl/fast/forms/textAreaLineHeight-expected.txt:
+        * platform/efl/fast/forms/textarea-align-expected.txt:
+        * platform/efl/fast/forms/textarea-scroll-height-expected.txt:
+        * platform/efl/fast/forms/textarea-scrolled-type-expected.txt:
+        * platform/efl/fast/forms/textarea-setinnerhtml-expected.txt:
+        * platform/efl/fast/forms/textarea-width-expected.txt:
+        * platform/efl/fast/forms/textfield-focus-ring-expected.txt:
+        * platform/efl/fast/forms/textfield-outline-expected.txt:
+        * platform/efl/fast/forms/textfield-overflow-by-value-update-expected.txt:
+        * platform/efl/fast/forms/visual-hebrew-text-field-expected.txt:
+        * platform/efl/fast/frames/001-expected.txt:
+        * platform/efl/fast/frames/flattening/frameset-flattening-subframe-resize-expected.txt:
 +        * platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.txt:
 +        * platform/efl/fast/frames/flattening/iframe-flattening-nested-expected.txt:
 +        * platform/efl/fast/frames/frame-navigation-expected.txt:
+        * platform/efl/fast/frames/frame-scrolling-attribute-expected.txt:
+        * platform/efl/fast/frames/frameElement-frame-expected.txt:
+        * platform/efl/fast/frames/frameElement-iframe-expected.txt:
+        * platform/efl/fast/frames/frameset-style-recalc-expected.txt:
+        * platform/efl/fast/frames/iframe-option-crash-expected.txt:
+        * platform/efl/fast/frames/iframe-scrolling-attribute-expected.txt:
+        * platform/efl/fast/frames/iframe-with-frameborder-expected.txt:
+        * platform/efl/fast/frames/inline-object-inside-frameset-expected.txt:
+        * platform/efl/fast/frames/onlyCommentInIFrame-expected.txt:
+        * platform/efl/fast/frames/take-focus-from-iframe-expected.txt:
+        * platform/efl/fast/frames/viewsource-attribute-expected.txt:
+        * platform/efl/fast/frames/viewsource-on-image-file-expected.txt:
+        * platform/efl/fast/gradients/list-item-gradient-expected.txt:
+        * platform/efl/fast/html/keygen-expected.txt:
+        * platform/efl/fast/html/link-rel-stylesheet-expected.txt:
+        * platform/efl/fast/html/listing-expected.txt:
+        * platform/efl/fast/html/marquee-scroll-expected.txt:
+        * platform/efl/fast/html/marquee-scrollamount-expected.txt:
+        * platform/efl/fast/images/animated-gif-with-offsets-expected.txt:
+        * platform/efl/fast/images/favicon-as-image-expected.txt:
+        * platform/efl/fast/images/image-map-anchor-children-expected.txt:
+        * platform/efl/fast/images/imagemap-case-expected.txt:
+        * platform/efl/fast/images/imagemap-circle-focus-ring-expected.txt:
+        * platform/efl/fast/images/imagemap-focus-ring-expected.txt:
+        * platform/efl/fast/images/imagemap-focus-ring-outline-color-expected.txt:
+        * platform/efl/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt:
 +        * platform/efl/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt:
 +        * platform/efl/fast/images/imagemap-focus-ring-zero-outline-width-expected.txt:
 +        * platform/efl/fast/images/imagemap-polygon-focus-ring-expected.txt:
+        * platform/efl/fast/images/pixel-crack-image-background-webkit-transform-scale-expected.txt:
 +        * platform/efl/fast/inline-block/001-expected.txt:
+        * platform/efl/fast/inline-block/002-expected.txt:
+        * platform/efl/fast/inline-block/003-expected.txt:
+        * platform/efl/fast/inline-block/006-expected.txt:
+        * platform/efl/fast/inline-block/14498-positionForCoordinates-expected.txt:
+        * platform/efl/fast/inline-block/inline-block-vertical-align-expected.txt:
+        * platform/efl/fast/inline-block/overflow-clip-expected.txt:
+        * platform/efl/fast/inline-block/tricky-baseline-expected.txt:
+        * platform/efl/fast/inline/001-expected.txt:
+        * platform/efl/fast/inline/25277-2-expected.txt:
+        * platform/efl/fast/inline/25277-expected.txt:
+        * platform/efl/fast/inline/br-text-decoration-expected.txt:
+        * platform/efl/fast/inline/continuation-outlines-expected.txt:
+        * platform/efl/fast/inline/continuation-outlines-with-layers-2-expected.txt:
+        * platform/efl/fast/inline/continuation-outlines-with-layers-expected.txt:
+        * platform/efl/fast/inline/drawStyledEmptyInlines-expected.txt:
+        * platform/efl/fast/inline/drawStyledEmptyInlinesWithWS-expected.txt:
+        * platform/efl/fast/inline/emptyInlinesWithinLists-expected.txt:
+        * platform/efl/fast/inline/inline-borders-with-bidi-override-expected.txt:
+        * platform/efl/fast/inline/inline-continuation-borders-expected.txt:
+        * platform/efl/fast/inline/inline-focus-ring-expected.txt:
+        * platform/efl/fast/inline/inline-padding-disables-text-quirk-expected.txt:
+        * platform/efl/fast/inline/inline-text-quirk-bpm-expected.txt:
+        * platform/efl/fast/inline/inline-wrap-with-parent-padding-expected.txt:
+        * platform/efl/fast/inline/positioned-object-between-replaced-elements-expected.txt:
 +        * platform/efl/fast/inline/styledEmptyInlinesWithBRs-expected.txt:
+        * platform/efl/fast/inline/vertical-align-text-bottom-expected.txt:
+        * platform/efl/fast/innerHTML/001-expected.txt:
+        * platform/efl/fast/innerHTML/002-expected.txt:
+        * platform/efl/fast/innerHTML/003-expected.txt:
+        * platform/efl/fast/innerHTML/006-expected.txt:
+        * platform/efl/fast/inspector-support/matchedrules-expected.txt:
+        * platform/efl/fast/invalid/001-expected.txt:
+        * platform/efl/fast/invalid/002-expected.txt:
+        * platform/efl/fast/invalid/003-expected.txt:
+        * platform/efl/fast/invalid/005-expected.txt:
+        * platform/efl/fast/invalid/007-expected.txt:
+        * platform/efl/fast/invalid/008-expected.txt:
+        * platform/efl/fast/invalid/012-expected.txt:
+        * platform/efl/fast/invalid/014-expected.txt:
+        * platform/efl/fast/invalid/016-expected.txt:
+        * platform/efl/fast/invalid/017-expected.txt:
+        * platform/efl/fast/invalid/018-expected.txt:
+        * platform/efl/fast/invalid/019-expected.txt:
+        * platform/efl/fast/invalid/020-expected.txt:
+        * platform/efl/fast/invalid/021-expected.txt:
+        * platform/efl/fast/invalid/missing-address-end-tag-expected.txt:
+        * platform/efl/fast/invalid/missing-dl-end-tag-expected.txt:
+        * platform/efl/fast/invalid/missing-dt-end-tag-expected.txt:
+        * platform/efl/fast/invalid/missing-end-tag-expected.txt:
+        * platform/efl/fast/invalid/missing-font-end-tag-expected.txt:
+        * platform/efl/fast/invalid/table-inside-stray-table-content-expected.txt:
+        * platform/efl/fast/invalid/td-inside-object-expected.txt:
+        * platform/efl/fast/layers/inline-dirty-z-order-lists-expected.txt:
+        * platform/efl/fast/layers/layer-visibility-expected.txt:
+        * platform/efl/fast/layers/layer-visibility-sublayer-expected.txt:
+        * platform/efl/fast/layers/normal-flow-hit-test-expected.txt:
+        * platform/efl/fast/layers/opacity-outline-expected.txt:
+        * platform/efl/fast/layers/opacity-transforms-expected.txt:
+        * platform/efl/fast/layers/overflow-scroll-auto-switch-expected.txt:
+        * platform/efl/fast/layers/remove-layer-with-nested-stacking-expected.txt:
+        * platform/efl/fast/layers/remove-only-this-layer-update-expected.txt:
+        * platform/efl/fast/layers/scroll-rect-to-visible-expected.txt:
+        * platform/efl/fast/layers/video-layer-expected.txt:
+        * platform/efl/fast/layers/zindex-inherit-expected.txt:
+        * platform/efl/fast/lists/001-expected.txt:
+        * platform/efl/fast/lists/001-vertical-expected.txt:
+        * platform/efl/fast/lists/002-expected.txt:
+        * platform/efl/fast/lists/002-vertical-expected.txt:
+        * platform/efl/fast/lists/003-expected.txt:
+        * platform/efl/fast/lists/003-vertical-expected.txt:
+        * platform/efl/fast/lists/004-expected.txt:
+        * platform/efl/fast/lists/005-expected.txt:
+        * platform/efl/fast/lists/005-vertical-expected.txt:
+        * platform/efl/fast/lists/006-expected.txt:
+        * platform/efl/fast/lists/006-vertical-expected.txt:
+        * platform/efl/fast/lists/007-expected.txt:
+        * platform/efl/fast/lists/007-vertical-expected.txt:
+        * platform/efl/fast/lists/008-expected.txt:
+        * platform/efl/fast/lists/008-vertical-expected.txt:
+        * platform/efl/fast/lists/009-expected.txt:
+        * platform/efl/fast/lists/009-vertical-expected.txt:
+        * platform/efl/fast/lists/anonymous-items-expected.txt:
+        * platform/efl/fast/lists/big-list-marker-expected.txt:
+        * platform/efl/fast/lists/dynamic-marker-crash-expected.txt:
+        * platform/efl/fast/lists/inlineBoxWrapperNullCheck-expected.txt:
+        * platform/efl/fast/lists/li-br-expected.txt:
+        * platform/efl/fast/lists/li-style-alpha-huge-value-crash-expected.txt:
+        * platform/efl/fast/lists/list-item-line-height-expected.txt:
+        * platform/efl/fast/lists/list-style-none-crash-expected.txt:
+        * platform/efl/fast/lists/marker-before-empty-inline-expected.txt:
+        * platform/efl/fast/lists/marker-image-error-expected.txt:
+        * platform/efl/fast/lists/markers-in-selection-expected.txt:
+        * platform/efl/fast/lists/numeric-markers-outside-list-expected.txt:
+        * platform/efl/fast/lists/ol-display-types-expected.txt:
+        * platform/efl/fast/lists/ol-start-dynamic-expected.txt:
+        * platform/efl/fast/lists/ol-start-parsing-expected.txt:
+        * platform/efl/fast/lists/olstart-expected.txt:
+        * platform/efl/fast/lists/ordered-list-with-no-ol-tag-expected.txt:
+        * platform/efl/fast/lists/scrolled-marker-paint-expected.txt:
+        * platform/efl/fast/media/media-descriptor-syntax-01-expected.txt:
+        * platform/efl/fast/media/media-descriptor-syntax-02-expected.txt:
+        * platform/efl/fast/media/media-descriptor-syntax-03-expected.txt:
+        * platform/efl/fast/media/media-descriptor-syntax-04-expected.txt:
+        * platform/efl/fast/media/media-descriptor-syntax-05-expected.txt:
+        * platform/efl/fast/media/media-descriptor-syntax-06-expected.txt:
+        * platform/efl/fast/media/media-type-syntax-01-expected.txt:
+        * platform/efl/fast/media/media-type-syntax-02-expected.txt:
+        * platform/efl/fast/media/mq-animation-expected.txt:
+        * platform/efl/fast/media/mq-aspect-ratio-expected.txt:
+        * platform/efl/fast/media/mq-compound-query-01-expected.txt:
+        * platform/efl/fast/media/mq-compound-query-02-expected.txt:
+        * platform/efl/fast/media/mq-compound-query-03-expected.txt:
+        * platform/efl/fast/media/mq-compound-query-04-expected.txt:
+        * platform/efl/fast/media/mq-compound-query-05-expected.txt:
+        * platform/efl/fast/media/mq-grid-01-expected.txt:
+        * platform/efl/fast/media/mq-grid-02-expected.txt:
+        * platform/efl/fast/media/mq-invalid-media-feature-01-expected.txt:
+        * platform/efl/fast/media/mq-invalid-media-feature-02-expected.txt:
+        * platform/efl/fast/media/mq-invalid-media-feature-03-expected.txt:
+        * platform/efl/fast/media/mq-invalid-media-feature-04-expected.txt:
+        * platform/efl/fast/media/mq-invalid-syntax-01-expected.txt:
+        * platform/efl/fast/media/mq-invalid-syntax-02-expected.txt:
+        * platform/efl/fast/media/mq-invalid-syntax-03-expected.txt:
+        * platform/efl/fast/media/mq-invalid-syntax-04-expected.txt:
+        * platform/efl/fast/media/mq-invalid-syntax-05-expected.txt:
+        * platform/efl/fast/media/mq-js-media-except-01-expected.txt:
+        * platform/efl/fast/media/mq-js-media-except-02-expected.txt:
+        * platform/efl/fast/media/mq-js-media-except-03-expected.txt:
+        * platform/efl/fast/media/mq-js-media-forward-syntax-expected.txt:
+        * platform/efl/fast/media/mq-js-stylesheet-media-01-expected.txt:
+        * platform/efl/fast/media/mq-js-stylesheet-media-02-expected.txt:
+        * platform/efl/fast/media/mq-js-stylesheet-media-03-expected.txt:
+        * platform/efl/fast/media/mq-js-stylesheet-media-04-expected.txt:
+        * platform/efl/fast/media/mq-max-pixel-ratio-expected.txt:
+        * platform/efl/fast/media/mq-min-constraint-expected.txt:
+        * platform/efl/fast/media/mq-orientation-expected.txt:
+        * platform/efl/fast/media/mq-pixel-ratio-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-02-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-03-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-04-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-05-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-06-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-07-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-08-expected.txt:
+        * platform/efl/fast/media/mq-relative-constraints-09-expected.txt:
+        * platform/efl/fast/media/mq-simple-neg-query-01-expected.txt:
+        * platform/efl/fast/media/mq-simple-neg-query-02-expected.txt:
+        * platform/efl/fast/media/mq-simple-neg-query-03-expected.txt:
+        * platform/efl/fast/media/mq-simple-neg-query-04-expected.txt:
+        * platform/efl/fast/media/mq-simple-neg-query-05-expected.txt:
+        * platform/efl/fast/media/mq-simple-query-01-expected.txt:
+        * platform/efl/fast/media/mq-simple-query-02-expected.txt:
+        * platform/efl/fast/media/mq-simple-query-03-expected.txt:
+        * platform/efl/fast/media/mq-simple-query-04-expected.txt:
+        * platform/efl/fast/media/mq-simple-query-05-expected.txt:
+        * platform/efl/fast/media/mq-transform-01-expected.txt:
+        * platform/efl/fast/media/mq-transform-02-expected.txt:
+        * platform/efl/fast/media/mq-transform-03-expected.txt:
+        * platform/efl/fast/media/mq-transform-04-expected.txt:
+        * platform/efl/fast/media/mq-transition-expected.txt:
+        * platform/efl/fast/media/mq-valueless-expected.txt:
+        * platform/efl/fast/media/mq-width-absolute-01-expected.txt:
+        * platform/efl/fast/media/mq-width-absolute-02-expected.txt:
+        * platform/efl/fast/media/mq-width-absolute-03-expected.txt:
+        * platform/efl/fast/media/mq-width-absolute-04-expected.txt:
+        * platform/efl/fast/media/viewport-media-query-expected.txt:
+        * platform/efl/fast/multicol/column-break-with-balancing-expected.txt:
+        * platform/efl/fast/multicol/column-count-with-rules-expected.txt:
+        * platform/efl/fast/multicol/column-rules-expected.txt:
+        * platform/efl/fast/multicol/column-rules-stacking-expected.txt:
+        * platform/efl/fast/multicol/columns-shorthand-parsing-expected.txt:
+        * platform/efl/fast/multicol/float-avoidance-expected.txt:
+        * platform/efl/fast/multicol/float-multicol-expected.txt:
+        * platform/efl/fast/multicol/float-paginate-empty-lines-expected.txt:
+        * platform/efl/fast/multicol/float-paginate-expected.txt:
+        * platform/efl/fast/multicol/layers-in-multicol-expected.txt:
+        * platform/efl/fast/multicol/layers-split-across-columns-expected.txt:
+        * platform/efl/fast/multicol/margin-collapse-expected.txt:
+        * platform/efl/fast/multicol/max-height-columns-block-expected.txt:
+        * platform/efl/fast/multicol/paginate-block-replaced-expected.txt:
+        * platform/efl/fast/multicol/positioned-split-expected.txt:
+        * platform/efl/fast/multicol/positioned-with-constrained-height-expected.txt:
 +        * platform/efl/fast/multicol/scrolling-overflow-expected.txt:
+        * platform/efl/fast/multicol/shadow-breaking-expected.txt:
+        * platform/efl/fast/multicol/span/anonymous-before-child-parent-crash-expected.txt:
 +        * platform/efl/fast/multicol/span/anonymous-split-block-crash-expected.txt:
+        * platform/efl/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.txt:
 +        * platform/efl/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt:
 +        * platform/efl/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt:
 +        * platform/efl/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt:
 +        * platform/efl/fast/multicol/span/span-as-immediate-columns-child-expected.txt:
 +        * platform/efl/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt:
 +        * platform/efl/fast/multicol/span/span-as-nested-columns-child-expected.txt:
 +        * platform/efl/fast/multicol/span/span-as-nested-inline-block-child-expected.txt:
 +        * platform/efl/fast/multicol/span/span-margin-collapsing-expected.txt:
+        * platform/efl/fast/multicol/table-margin-collapse-expected.txt:
+        * platform/efl/fast/multicol/unsplittable-inline-block-expected.txt:
+        * platform/efl/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt:
 +        * platform/efl/fast/multicol/vertical-lr/column-count-with-rules-expected.txt:
 +        * platform/efl/fast/multicol/vertical-lr/column-rules-expected.txt:
+        * platform/efl/fast/multicol/vertical-lr/float-avoidance-expected.txt:
+        * platform/efl/fast/multicol/vertical-lr/float-multicol-expected.txt:
+        * platform/efl/fast/multicol/vertical-lr/float-paginate-expected.txt:
+        * platform/efl/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt:
 +        * platform/efl/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt:
 +        * platform/efl/fast/multicol/vertical-rl/column-count-with-rules-expected.txt:
 +        * platform/efl/fast/multicol/vertical-rl/column-rules-expected.txt:
+        * platform/efl/fast/multicol/vertical-rl/float-avoidance-expected.txt:
+        * platform/efl/fast/multicol/vertical-rl/float-multicol-expected.txt:
+        * platform/efl/fast/multicol/vertical-rl/float-paginate-expected.txt:
+        * platform/efl/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt:
 +        * platform/efl/fast/overflow/001-expected.txt:
+        * platform/efl/fast/overflow/002-expected.txt:
+        * platform/efl/fast/overflow/003-expected.txt:
+        * platform/efl/fast/overflow/004-expected.txt:
+        * platform/efl/fast/overflow/006-expected.txt:
+        * platform/efl/fast/overflow/007-expected.txt:
+        * platform/efl/fast/overflow/008-expected.txt:
+        * platform/efl/fast/overflow/border-radius-clipping-expected.txt:
+        * platform/efl/fast/overflow/childFocusRingClip-expected.txt:
+        * platform/efl/fast/overflow/clip-rects-fixed-ancestor-expected.txt:
+        * platform/efl/fast/overflow/dynamic-hidden-expected.txt:
+        * platform/efl/fast/overflow/float-in-relpositioned-expected.txt:
+        * platform/efl/fast/overflow/hidden-scrollbar-resize-expected.txt:
+        * platform/efl/fast/overflow/hit-test-overflow-controls-expected.txt:
+        * platform/efl/fast/overflow/image-selection-highlight-expected.txt:
+        * platform/efl/fast/overflow/line-clamp-expected.txt:
+        * platform/efl/fast/overflow/overflow-auto-table-expected.txt:
+        * platform/efl/fast/overflow/overflow-focus-ring-expected.txt:
+        * platform/efl/fast/overflow/overflow-rtl-expected.txt:
+        * platform/efl/fast/overflow/overflow-rtl-inline-scrollbar-expected.txt:
+        * platform/efl/fast/overflow/overflow-rtl-vertical-expected.txt:
+        * platform/efl/fast/overflow/overflow-text-hit-testing-expected.txt:
+        * platform/efl/fast/overflow/overflow-with-local-background-attachment-expected.txt:
 +        * platform/efl/fast/overflow/overflow-x-y-expected.txt:
+        * platform/efl/fast/overflow/overflow_hidden-expected.txt:
+        * platform/efl/fast/overflow/position-fixed-transform-clipping-expected.txt:
+        * platform/efl/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt:
 +        * platform/efl/fast/overflow/scrollRevealButton-expected.txt:
+        * platform/efl/fast/overflow/scrollbar-position-update-expected.txt:
+        * platform/efl/fast/overflow/table-overflow-float-expected.txt:
+        * platform/efl/fast/overflow/unreachable-overflow-rtl-bug-expected.txt:
+        * platform/efl/fast/parser/001-expected.txt:
+        * platform/efl/fast/parser/broken-comments-vs-parsing-mode-expected.txt:
+        * platform/efl/fast/parser/document-write-option-expected.txt:
+        * platform/efl/fast/parser/entity-comment-in-textarea-expected.txt:
+        * platform/efl/fast/parser/fonts-expected.txt:
+        * platform/efl/fast/parser/nofoo-tags-inside-paragraph-expected.txt:
+        * platform/efl/fast/parser/open-comment-in-textarea-expected.txt:
+        * platform/efl/fast/parser/title-error-test-expected.txt:
+        * platform/efl/fast/parser/xhtml-alternate-entities-expected.txt:
+        * platform/efl/fast/reflections/abs-position-in-reflection-expected.txt:
+        * platform/efl/fast/reflections/inline-crash-expected.txt:
+        * platform/efl/fast/reflections/opacity-reflection-transform-expected.txt:
+        * platform/efl/fast/reflections/reflection-direction-expected.txt:
+        * platform/efl/fast/reflections/reflection-nesting-expected.txt:
+        * platform/efl/fast/reflections/reflection-overflow-hidden-expected.txt:
+        * platform/efl/fast/regions/bottom-overflow-out-of-first-region-expected.txt:
 +        * platform/efl/fast/regions/float-pushed-width-change-expected.txt:
+        * platform/efl/fast/regions/floats-basic-in-variable-width-regions-expected.txt:
 +        * platform/efl/fast/regions/flow-content-basic-vertical-expected.txt:
+        * platform/efl/fast/regions/flow-content-basic-vertical-rl-expected.txt:
+        * platform/efl/fast/regions/multiple-directionality-changes-in-variable-width-regions-expected.txt:
 +        * platform/efl/fast/regions/overflow-in-uniform-regions-dynamic-expected.txt:
 +        * platform/efl/fast/regions/overflow-moving-below-floats-in-variable-width-regions-expected.txt:
 +        * platform/efl/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions-expected.txt:
 +        * platform/efl/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.txt:
 +        * platform/efl/fast/regions/percentage-margins-mixed-ltr-dominant-regions-expected.txt:
 +        * platform/efl/fast/regions/percentage-margins-mixed-rtl-dominant-regions-expected.txt:
 +        * platform/efl/fast/regions/percentage-margins-rtl-variable-width-regions-expected.txt:
 +        * platform/efl/fast/regions/percentage-margins-variable-width-regions-expected.txt:
 +        * platform/efl/fast/regions/position-writing-modes-in-variable-width-regions-expected.txt:
 +        * platform/efl/fast/regions/positioned-objects-in-regions-expected.txt:
+        * platform/efl/fast/regions/positioned-objects-in-rtl-regions-expected.txt:
+        * platform/efl/fast/regions/positioned-objects-inline-static-in-regions-expected.txt:
 +        * platform/efl/fast/regions/positioned-objects-inline-static-in-rtl-regions-expected.txt:
 +        * platform/efl/fast/regions/positioned-objects-inline-static-spanning-regions-expected.txt:
 +        * platform/efl/fast/regions/positioned-objects-inline-static-spanning-regions-rtl-expected.txt:
 +        * platform/efl/fast/regions/positioned-objects-perpendicular-flows-in-regions-expected.txt:
 +        * platform/efl/fast/regions/positioned-objects-spanning-regions-expected.txt:
 +        * platform/efl/fast/regions/text-region-split-small-pagination-expected.txt:
 +        * platform/efl/fast/regions/top-overflow-out-of-second-region-expected.txt:
+        * platform/efl/fast/regions/webkit-flow-double-pagination-float-push-expected.txt:
 +        * platform/efl/fast/regions/webkit-flow-float-pushed-to-last-region-expected.txt:
 +        * platform/efl/fast/regions/webkit-flow-float-unable-to-push-expected.txt:
+        * platform/efl/fast/regions/webkit-flow-floats-inside-regions-bounds-expected.txt:
 +        * platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-expected.txt:
 +        * platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-vertical-expected.txt:
 +        * platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-vertical-rl-expected.txt:
 +        * platform/efl/fast/repaint/backgroundSizeRepaint-expected.txt:
+        * platform/efl/fast/repaint/block-layout-inline-children-float-positioned-expected.txt:
 +        * platform/efl/fast/repaint/block-no-inflow-children-expected.txt:
+        * platform/efl/fast/repaint/block-selection-gap-in-composited-layer-expected.txt:
 +        * platform/efl/fast/repaint/block-selection-gap-in-table-cell-expected.txt:
+        * platform/efl/fast/repaint/block-selection-gap-stale-cache-2-expected.txt:
+        * platform/efl/fast/repaint/block-selection-gap-stale-cache-expected.txt:
+        * platform/efl/fast/repaint/body-background-image-expected.txt:
+        * platform/efl/fast/repaint/border-fit-lines-expected.txt:
+        * platform/efl/fast/repaint/border-radius-repaint-expected.txt:
+        * platform/efl/fast/repaint/border-repaint-glitch-expected.txt:
+        * platform/efl/fast/repaint/box-shadow-dynamic-expected.txt:
+        * platform/efl/fast/repaint/box-shadow-h-expected.txt:
+        * platform/efl/fast/repaint/box-shadow-v-expected.txt:
+        * platform/efl/fast/repaint/bugzilla-3509-expected.txt:
+        * platform/efl/fast/repaint/bugzilla-5699-expected.txt:
+        * platform/efl/fast/repaint/bugzilla-6278-expected.txt:
+        * platform/efl/fast/repaint/bugzilla-6388-expected.txt:
+        * platform/efl/fast/repaint/bugzilla-6473-expected.txt:
+        * platform/efl/fast/repaint/bugzilla-7235-expected.txt:
+        * platform/efl/fast/repaint/button-spurious-layout-hint-expected.txt:
+        * platform/efl/fast/repaint/caret-outside-block-expected.txt:
+        * platform/efl/fast/repaint/change-transform-expected.txt:
+        * platform/efl/fast/repaint/clipped-relative-expected.txt:
+        * platform/efl/fast/repaint/containing-block-position-change-expected.txt:
+        * platform/efl/fast/repaint/continuation-after-outline-expected.txt:
+        * platform/efl/fast/repaint/control-clip-expected.txt:
+        * platform/efl/fast/repaint/create-layer-repaint-expected.txt:
+        * platform/efl/fast/repaint/dynamic-table-vertical-alignment-change-expected.txt:
 +        * platform/efl/fast/repaint/fixed-child-move-after-scroll-expected.txt:
+        * platform/efl/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.txt:
 +        * platform/efl/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.txt:
 +        * platform/efl/fast/repaint/fixed-expected.txt:
+        * platform/efl/fast/repaint/fixed-move-after-keyboard-scroll-expected.txt:
+        * platform/efl/fast/repaint/fixed-move-after-scroll-expected.txt:
+        * platform/efl/fast/repaint/flexible-box-overflow-expected.txt:
+        * platform/efl/fast/repaint/flexible-box-overflow-horizontal-expected.txt:
+        * platform/efl/fast/repaint/float-move-during-layout-expected.txt:
+        * platform/efl/fast/repaint/float-overflow-expected.txt:
+        * platform/efl/fast/repaint/float-overflow-right-expected.txt:
+        * platform/efl/fast/repaint/focus-layers-expected.txt:
+        * platform/efl/fast/repaint/gradients-em-stops-repaint-expected.txt:
+        * platform/efl/fast/repaint/iframe-scroll-repaint-expected.txt:
+        * platform/efl/fast/repaint/inline-block-overflow-expected.txt:
+        * platform/efl/fast/repaint/inline-color-change-expected.txt:
+        * platform/efl/fast/repaint/layer-child-outline-expected.txt:
+        * platform/efl/fast/repaint/layer-outline-expected.txt:
+        * platform/efl/fast/repaint/layer-outline-horizontal-expected.txt:
+        * platform/efl/fast/repaint/layout-state-relative-expected.txt:
+        * platform/efl/fast/repaint/layout-state-scrolloffset-expected.txt:
+        * platform/efl/fast/repaint/layout-state-scrolloffset2-expected.txt:
+        * platform/efl/fast/repaint/layout-state-scrolloffset3-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-1-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-10-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-2-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-3-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-4-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-5-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-6-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-7-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-8-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-9-expected.txt:
+        * platform/efl/fast/repaint/line-flow-with-floats-in-regions-expected.txt:
+        * platform/efl/fast/repaint/line-overflow-expected.txt:
+        * platform/efl/fast/repaint/lines-with-layout-delta-expected.txt:
+        * platform/efl/fast/repaint/list-marker-2-expected.txt:
+        * platform/efl/fast/repaint/list-marker-expected.txt:
+        * platform/efl/fast/repaint/make-children-non-inline-expected.txt:
+        * platform/efl/fast/repaint/opacity-change-on-overflow-float-expected.txt:
+        * platform/efl/fast/repaint/outline-child-repaint-expected.txt:
+        * platform/efl/fast/repaint/outline-inset-expected.txt:
+        * platform/efl/fast/repaint/outline-repaint-glitch-expected.txt:
+        * platform/efl/fast/repaint/outline-shrinking-expected.txt:
+        * platform/efl/fast/repaint/overflow-delete-line-expected.txt:
+        * platform/efl/fast/repaint/overflow-outline-repaint-expected.txt:
+        * platform/efl/fast/repaint/overflow-scroll-body-appear-expected.txt:
+        * platform/efl/fast/repaint/overflow-scroll-delete-expected.txt:
+        * platform/efl/fast/repaint/positioned-document-element-expected.txt:
+        * platform/efl/fast/repaint/reflection-redraw-expected.txt:
+        * platform/efl/fast/repaint/rel-positioned-inline-with-overflow-expected.txt:
 +        * platform/efl/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt:
 +        * platform/efl/fast/repaint/repaint-resized-overflow-expected.txt:
+        * platform/efl/fast/repaint/scale-page-shrink-expected.txt:
+        * platform/efl/fast/repaint/search-field-cancel-expected.txt:
+        * platform/efl/fast/repaint/select-option-background-color-expected.txt:
+        * platform/efl/fast/repaint/selected-replaced-expected.txt:
+        * platform/efl/fast/repaint/selection-after-remove-expected.txt:
+        * platform/efl/fast/repaint/selection-gap-overflow-scroll-2-expected.txt:
+        * platform/efl/fast/repaint/selection-gap-overflow-scroll-expected.txt:
+        * platform/efl/fast/repaint/selection-rl-expected.txt:
+        * platform/efl/fast/repaint/stacked-diacritics-expected.txt:
+        * platform/efl/fast/repaint/static-to-positioned-expected.txt:
+        * platform/efl/fast/repaint/subtree-layoutstate-transform-expected.txt:
+        * platform/efl/fast/repaint/subtree-root-skipped-expected.txt:
+        * platform/efl/fast/repaint/table-cell-collapsed-border-expected.txt:
+        * platform/efl/fast/repaint/table-cell-move-expected.txt:
+        * platform/efl/fast/repaint/table-collapsed-border-expected.txt:
+        * platform/efl/fast/repaint/table-extra-bottom-grow-expected.txt:
+        * platform/efl/fast/repaint/text-append-dirty-lines-expected.txt:
+        * platform/efl/fast/repaint/text-emphasis-v-expected.txt:
+        * platform/efl/fast/repaint/text-selection-rect-in-overflow-2-expected.txt:
+        * platform/efl/fast/repaint/text-selection-rect-in-overflow-expected.txt:
+        * platform/efl/fast/repaint/text-shadow-expected.txt:
+        * platform/efl/fast/repaint/text-shadow-horizontal-expected.txt:
+        * platform/efl/fast/repaint/transform-absolute-in-positioned-container-expected.txt:
 +        * platform/efl/fast/repaint/transform-relative-position-expected.txt:
+        * platform/efl/fast/repaint/transform-repaint-descendants-expected.txt:
+        * platform/efl/fast/replaced/001-expected.txt:
+        * platform/efl/fast/replaced/002-expected.txt:
+        * platform/efl/fast/replaced/003-expected.txt:
+        * platform/efl/fast/replaced/004-expected.txt:
+        * platform/efl/fast/replaced/005-expected.txt:
+        * platform/efl/fast/replaced/006-expected.txt:
+        * platform/efl/fast/replaced/007-expected.txt:
+        * platform/efl/fast/replaced/absolute-image-sizing-expected.txt:
+        * platform/efl/fast/replaced/absolute-position-percentage-height-expected.txt:
 +        * platform/efl/fast/replaced/absolute-position-percentage-width-expected.txt:
 +        * platform/efl/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.txt:
 +        * platform/efl/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.txt:
 +        * platform/efl/fast/replaced/applet-disabled-positioned-expected.txt:
+        * platform/efl/fast/replaced/applet-display-none-expected.txt:
+        * platform/efl/fast/replaced/applet-rendering-java-disabled-expected.txt:
+        * platform/efl/fast/replaced/border-radius-clip-expected.txt:
+        * platform/efl/fast/replaced/embed-display-none-expected.txt:
+        * platform/efl/fast/replaced/image-onload-expected.txt:
+        * platform/efl/fast/replaced/image-resize-width-expected.txt:
+        * platform/efl/fast/replaced/image-sizing-expected.txt:
+        * platform/efl/fast/replaced/image-solid-color-with-alpha-expected.txt:
+        * platform/efl/fast/replaced/inline-box-wrapper-handover-expected.txt:
+        * platform/efl/fast/replaced/max-width-percent-expected.txt:
+        * platform/efl/fast/replaced/maxheight-percent-expected.txt:
+        * platform/efl/fast/replaced/maxheight-pxs-expected.txt:
+        * platform/efl/fast/replaced/maxwidth-percent-expected.txt:
+        * platform/efl/fast/replaced/maxwidth-pxs-expected.txt:
+        * platform/efl/fast/replaced/minheight-percent-expected.txt:
+        * platform/efl/fast/replaced/minheight-pxs-expected.txt:
+        * platform/efl/fast/replaced/minwidth-percent-expected.txt:
+        * platform/efl/fast/replaced/minwidth-pxs-expected.txt:
+        * platform/efl/fast/replaced/object-align-hspace-vspace-expected.txt:
+        * platform/efl/fast/replaced/object-display-none-expected.txt:
+        * platform/efl/fast/replaced/percent-height-in-anonymous-block-in-table-expected.txt:
 +        * platform/efl/fast/replaced/percent-height-in-anonymous-block-widget-expected.txt:
 +        * platform/efl/fast/replaced/replaced-breaking-expected.txt:
+        * platform/efl/fast/replaced/replaced-breaking-mixture-expected.txt:
+        * platform/efl/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.txt:
 +        * platform/efl/fast/replaced/selection-rect-in-table-cell-expected.txt:
+        * platform/efl/fast/replaced/selection-rect-transform-expected.txt:
+        * platform/efl/fast/replaced/three-selects-break-expected.txt:
+        * platform/efl/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.txt:
 +        * platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.txt:
 +        * platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.txt:
 +        * platform/efl/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.txt:
 +        * platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.txt:
 +        * platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.txt:
 +        * platform/efl/fast/replaced/width100percent-button-expected.txt:
+        * platform/efl/fast/replaced/width100percent-checkbox-expected.txt:
+        * platform/efl/fast/replaced/width100percent-image-expected.txt:
+        * platform/efl/fast/replaced/width100percent-menulist-expected.txt:
+        * platform/efl/fast/replaced/width100percent-radio-expected.txt:
+        * platform/efl/fast/replaced/width100percent-textarea-expected.txt:
+        * platform/efl/fast/replaced/width100percent-textfield-expected.txt:
+        * platform/efl/fast/ruby/nested-ruby-expected.txt:
+        * platform/efl/fast/ruby/ruby-beforeafter-expected.txt:
+        * platform/efl/fast/ruby/ruby-empty-rt-expected.txt:
+        * platform/efl/fast/ruby/ruby-inline-table-expected.txt:
+        * platform/efl/fast/ruby/ruby-length-expected.txt:
+        * platform/efl/fast/ruby/ruby-run-break-expected.txt:
+        * platform/efl/fast/ruby/ruby-runs-expected.txt:
+        * platform/efl/fast/ruby/ruby-runs-spans-expected.txt:
+        * platform/efl/fast/ruby/ruby-simple-expected.txt:
+        * platform/efl/fast/ruby/ruby-simple-rp-expected.txt:
+        * platform/efl/fast/ruby/ruby-trailing-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-insert-rt-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-insert-text1-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-insert-text2-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-insert-text3-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-remove-rt1-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-remove-rt2-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-remove-text1-expected.txt:
+        * platform/efl/fast/ruby/rubyDOM-remove-text2-expected.txt:
+        * platform/efl/fast/runin/001-expected.txt:
+        * platform/efl/fast/runin/002-expected.txt:
+        * platform/efl/fast/runin/generated-expected.txt:
+        * platform/efl/fast/runin/generated2-expected.txt:
+        * platform/efl/fast/runin/generated3-expected.txt:
+        * platform/efl/fast/runin/generated4-expected.txt:
+        * platform/efl/fast/selectors/001-expected.txt:
+        * platform/efl/fast/selectors/002-expected.txt:
+        * platform/efl/fast/selectors/003-expected.txt:
+        * platform/efl/fast/selectors/004-expected.txt:
+        * platform/efl/fast/selectors/005-expected.txt:
+        * platform/efl/fast/selectors/006-expected.txt:
+        * platform/efl/fast/selectors/007a-expected.txt:
+        * platform/efl/fast/selectors/007b-expected.txt:
+        * platform/efl/fast/selectors/008-expected.txt:
+        * platform/efl/fast/selectors/009-expected.txt:
+        * platform/efl/fast/selectors/010-expected.txt:
+        * platform/efl/fast/selectors/011-expected.txt:
+        * platform/efl/fast/selectors/012-expected.txt:
+        * platform/efl/fast/selectors/013-expected.txt:
+        * platform/efl/fast/selectors/014-expected.txt:
+        * platform/efl/fast/selectors/015-expected.txt:
+        * platform/efl/fast/selectors/016-expected.txt:
+        * platform/efl/fast/selectors/017-expected.txt:
+        * platform/efl/fast/selectors/018-expected.txt:
+        * platform/efl/fast/selectors/018b-expected.txt:
+        * platform/efl/fast/selectors/019-expected.txt:
+        * platform/efl/fast/selectors/020-expected.txt:
+        * platform/efl/fast/selectors/021-expected.txt:
+        * platform/efl/fast/selectors/021b-expected.txt:
+        * platform/efl/fast/selectors/027-expected.txt:
+        * platform/efl/fast/selectors/032-expected.txt:
+        * platform/efl/fast/selectors/034-expected.txt:
+        * platform/efl/fast/selectors/038-expected.txt:
+        * platform/efl/fast/selectors/040-expected.txt:
+        * platform/efl/fast/selectors/041-expected.txt:
+        * platform/efl/fast/selectors/042-expected.txt:
+        * platform/efl/fast/selectors/043-expected.txt:
+        * platform/efl/fast/selectors/043b-expected.txt:
+        * platform/efl/fast/selectors/044-expected.txt:
+        * platform/efl/fast/selectors/044b-expected.txt:
+        * platform/efl/fast/selectors/044c-expected.txt:
+        * platform/efl/fast/selectors/044d-expected.txt:
+        * platform/efl/fast/selectors/045-expected.txt:
+        * platform/efl/fast/selectors/045b-expected.txt:
+        * platform/efl/fast/selectors/045c-expected.txt:
+        * platform/efl/fast/selectors/046-expected.txt:
+        * platform/efl/fast/selectors/054-expected.txt:
+        * platform/efl/fast/selectors/056-expected.txt:
+        * platform/efl/fast/selectors/058-expected.txt:
+        * platform/efl/fast/selectors/059-expected.txt:
+        * platform/efl/fast/selectors/060-expected.txt:
+        * platform/efl/fast/selectors/061-expected.txt:
+        * platform/efl/fast/selectors/062-expected.txt:
+        * platform/efl/fast/selectors/063-expected.txt:
+        * platform/efl/fast/selectors/064-expected.txt:
+        * platform/efl/fast/selectors/065-expected.txt:
+        * platform/efl/fast/selectors/066-expected.txt:
+        * platform/efl/fast/selectors/066b-expected.txt:
+        * platform/efl/fast/selectors/072-expected.txt:
+        * platform/efl/fast/selectors/072b-expected.txt:
+        * platform/efl/fast/selectors/077-expected.txt:
+        * platform/efl/fast/selectors/077b-expected.txt:
+        * platform/efl/fast/selectors/078b-expected.txt:
+        * platform/efl/fast/selectors/083-expected.txt:
+        * platform/efl/fast/selectors/087b-expected.txt:
+        * platform/efl/fast/selectors/088b-expected.txt:
+        * platform/efl/fast/selectors/089-expected.txt:
+        * platform/efl/fast/selectors/090b-expected.txt:
+        * platform/efl/fast/selectors/154-expected.txt:
+        * platform/efl/fast/selectors/155-expected.txt:
+        * platform/efl/fast/selectors/155a-expected.txt:
+        * platform/efl/fast/selectors/155b-expected.txt:
+        * platform/efl/fast/selectors/155c-expected.txt:
+        * platform/efl/fast/selectors/155d-expected.txt:
+        * platform/efl/fast/selectors/156b-expected.txt:
+        * platform/efl/fast/selectors/157-expected.txt:
+        * platform/efl/fast/selectors/158-expected.txt:
+        * platform/efl/fast/selectors/160-expected.txt:
+        * platform/efl/fast/selectors/166a-expected.txt:
+        * platform/efl/fast/selectors/167-expected.txt:
+        * platform/efl/fast/selectors/167a-expected.txt:
+        * platform/efl/fast/selectors/168-expected.txt:
+        * platform/efl/fast/selectors/168a-expected.txt:
+        * platform/efl/fast/selectors/169-expected.txt:
+        * platform/efl/fast/selectors/169a-expected.txt:
+        * platform/efl/fast/selectors/170-expected.txt:
+        * platform/efl/fast/selectors/170a-expected.txt:
+        * platform/efl/fast/selectors/170b-expected.txt:
+        * platform/efl/fast/selectors/170c-expected.txt:
+        * platform/efl/fast/selectors/170d-expected.txt:
+        * platform/efl/fast/selectors/175a-expected.txt:
+        * platform/efl/fast/selectors/175b-expected.txt:
+        * platform/efl/fast/selectors/175c-expected.txt:
+        * platform/efl/fast/selectors/177b-expected.txt:
+        * platform/efl/fast/selectors/lang-inheritance-expected.txt:
+        * platform/efl/fast/selectors/lang-inheritance2-expected.txt:
+        * platform/efl/fast/selectors/lang-vs-xml-lang-expected.txt:
+        * platform/efl/fast/selectors/lang-vs-xml-lang-xhtml-expected.txt:
+        * platform/efl/fast/selectors/nondeterministic-combinators-expected.txt:
+        * platform/efl/fast/selectors/unqualified-hover-quirks-expected.txt:
+        * platform/efl/fast/selectors/unqualified-hover-strict-expected.txt:
+        * platform/efl/fast/selectors/visited-descendant-expected.txt:
+        * platform/efl/fast/table/001-expected.txt:
+        * platform/efl/fast/table/002-expected.txt:
+        * platform/efl/fast/table/003-expected.txt:
+        * platform/efl/fast/table/004-expected.txt:
+        * platform/efl/fast/table/005-expected.txt:
+        * platform/efl/fast/table/006-expected.txt:
+        * platform/efl/fast/table/007-expected.txt:
+        * platform/efl/fast/table/009-expected.txt:
+        * platform/efl/fast/table/010-expected.txt:
+        * platform/efl/fast/table/011-expected.txt:
+        * platform/efl/fast/table/012-expected.txt:
+        * platform/efl/fast/table/013-expected.txt:
+        * platform/efl/fast/table/014-expected.txt:
+        * platform/efl/fast/table/015-expected.txt:
+        * platform/efl/fast/table/016-expected.txt:
+        * platform/efl/fast/table/017-expected.txt:
+        * platform/efl/fast/table/018-expected.txt:
+        * platform/efl/fast/table/020-expected.txt:
+        * platform/efl/fast/table/021-expected.txt:
+        * platform/efl/fast/table/023-expected.txt:
+        * platform/efl/fast/table/025-expected.txt:
+        * platform/efl/fast/table/026-expected.txt:
+        * platform/efl/fast/table/028-expected.txt:
+        * platform/efl/fast/table/028-vertical-expected.txt:
+        * platform/efl/fast/table/029-expected.txt:
+        * platform/efl/fast/table/030-expected.txt:
+        * platform/efl/fast/table/033-expected.txt:
+        * platform/efl/fast/table/035-expected.txt:
+        * platform/efl/fast/table/035-vertical-expected.txt:
+        * platform/efl/fast/table/036-expected.txt:
+        * platform/efl/fast/table/037-expected.txt:
+        * platform/efl/fast/table/038-expected.txt:
+        * platform/efl/fast/table/038-vertical-expected.txt:
+        * platform/efl/fast/table/039-expected.txt:
+        * platform/efl/fast/table/041-expected.txt:
+        * platform/efl/fast/table/100-percent-cell-width-expected.txt:
+        * platform/efl/fast/table/add-before-anonymous-child-expected.txt:
+        * platform/efl/fast/table/align-right-within-left-aligned-div-expected.txt:
+        * platform/efl/fast/table/append-cells-expected.txt:
+        * platform/efl/fast/table/append-cells2-expected.txt:
+        * platform/efl/fast/table/auto-with-percent-height-expected.txt:
+        * platform/efl/fast/table/auto-with-percent-height-vertical-expected.txt:
+        * platform/efl/fast/table/border-collapsing/001-expected.txt:
+        * platform/efl/fast/table/border-collapsing/001-vertical-expected.txt:
+        * platform/efl/fast/table/border-collapsing/002-expected.txt:
+        * platform/efl/fast/table/border-collapsing/002-vertical-expected.txt:
+        * platform/efl/fast/table/border-collapsing/003-expected.txt:
+        * platform/efl/fast/table/border-collapsing/003-vertical-expected.txt:
+        * platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt:
 +        * platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt:
 +        * platform/efl/fast/table/border-collapsing/rtl-border-collapsing-expected.txt:
 +        * platform/efl/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
 +        * platform/efl/fast/table/cell-absolute-child-expected.txt:
+        * platform/efl/fast/table/cell-coalescing-expected.txt:
+        * platform/efl/fast/table/cell-pref-width-invalidation-expected.txt:
+        * platform/efl/fast/table/cell-width-auto-expected.txt:
+        * platform/efl/fast/table/cellindex-expected.txt:
+        * platform/efl/fast/table/colgroup-preceded-by-caption-expected.txt:
+        * platform/efl/fast/table/colgroup-spanning-groups-rules-expected.txt:
+        * platform/efl/fast/table/colspanMinWidth-expected.txt:
+        * platform/efl/fast/table/colspanMinWidth-vertical-expected.txt:
+        * platform/efl/fast/table/dynamic-caption-add-remove-before-child-expected.txt:
 +        * platform/efl/fast/table/dynamic-cellpadding-expected.txt:
+        * platform/efl/fast/table/dynamic-descendant-percentage-height-expected.txt:
+        * platform/efl/fast/table/early-table-layout-expected.txt:
+        * platform/efl/fast/table/edge-offsets-expected.txt:
+        * platform/efl/fast/table/empty-cells-expected.txt:
+        * platform/efl/fast/table/empty-row-crash-expected.txt:
+        * platform/efl/fast/table/empty-section-crash-expected.txt:
+        * platform/efl/fast/table/empty-table-percent-height-expected.txt:
+        * platform/efl/fast/table/fixed-nested-expected.txt:
+        * platform/efl/fast/table/fixed-table-non-cell-in-row-expected.txt:
+        * platform/efl/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt:
 +        * platform/efl/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt:
 +        * platform/efl/fast/table/fixed-table-with-percent-width-inside-div-expected.txt:
 +        * platform/efl/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt:
 +        * platform/efl/fast/table/fixed-table-with-small-percent-width-expected.txt:
 +        * platform/efl/fast/table/floating-th-expected.txt:
+        * platform/efl/fast/table/floatingTablePaintBackground-expected.txt:
+        * platform/efl/fast/table/form-with-table-style-expected.txt:
+        * platform/efl/fast/table/generated-caption-expected.txt:
+        * platform/efl/fast/table/giantRowspan2-expected.txt:
+        * platform/efl/fast/table/inline-form-assert-expected.txt:
+        * platform/efl/fast/table/insert-before-anonymous-ancestors-expected.txt:
+        * platform/efl/fast/table/insert-cell-before-form-expected.txt:
+        * platform/efl/fast/table/insert-row-before-form-expected.txt:
+        * platform/efl/fast/table/invisible-cell-background-expected.txt:
+        * platform/efl/fast/table/large-width-expected.txt:
+        * platform/efl/fast/table/multiple-percent-height-rows-expected.txt:
+        * platform/efl/fast/table/nested-percent-height-table-expected.txt:
+        * platform/efl/fast/table/nobr-expected.txt:
+        * platform/efl/fast/table/overflowHidden-expected.txt:
+        * platform/efl/fast/table/percent-heights-expected.txt:
+        * platform/efl/fast/table/relative-position-containment-expected.txt:
+        * platform/efl/fast/table/relative-position-offsets-expected.txt:
+        * platform/efl/fast/table/relative-position-stacking-expected.txt:
+        * platform/efl/fast/table/remove-td-display-none-expected.txt:
+        * platform/efl/fast/table/replaced-percent-height-expected.txt:
+        * platform/efl/fast/table/row-height-recalc-expected.txt:
+        * platform/efl/fast/table/rowindex-expected.txt:
+        * platform/efl/fast/table/rowspan-paint-order-expected.txt:
+        * platform/efl/fast/table/rowspan-paint-order-vertical-expected.txt:
+        * platform/efl/fast/table/rtl-cell-display-none-assert-expected.txt:
+        * platform/efl/fast/table/rules-attr-dynchange1-expected.txt:
+        * platform/efl/fast/table/rules-attr-dynchange2-expected.txt:
+        * platform/efl/fast/table/spanOverlapRepaint-expected.txt:
+        * platform/efl/fast/table/stale-grid-crash-expected.txt:
+        * platform/efl/fast/table/table-after-child-in-table-expected.txt:
+        * platform/efl/fast/table/table-and-parts-outline-expected.txt:
+        * platform/efl/fast/table/table-before-child-in-table-expected.txt:
+        * platform/efl/fast/table/table-cell-after-child-in-block-expected.txt:
+        * platform/efl/fast/table/table-cell-after-child-in-table-expected.txt:
+        * platform/efl/fast/table/table-cell-before-child-in-block-expected.txt:
+        * platform/efl/fast/table/table-cell-before-child-in-table-expected.txt:
+        * platform/efl/fast/table/table-continuation-outline-paint-crash-expected.txt:
 +        * platform/efl/fast/table/table-display-types-expected.txt:
+        * platform/efl/fast/table/table-display-types-strict-expected.txt:
+        * platform/efl/fast/table/table-display-types-vertical-expected.txt:
+        * platform/efl/fast/table/table-hspace-align-center-expected.txt:
+        * platform/efl/fast/table/table-row-after-child-in-block-expected.txt:
+        * platform/efl/fast/table/table-row-after-child-in-table-expected.txt:
+        * platform/efl/fast/table/table-row-before-child-in-block-expected.txt:
+        * platform/efl/fast/table/table-row-before-child-in-table-expected.txt:
+        * platform/efl/fast/table/tableInsideCaption-expected.txt:
+        * platform/efl/fast/table/text-field-baseline-expected.txt:
+        * platform/efl/fast/table/unbreakable-images-quirk-expected.txt:
+        * platform/efl/fast/table/unused-percent-heights-expected.txt:
+        * platform/efl/fast/table/vertical-align-baseline-expected.txt:
+        * platform/efl/fast/text/atsui-kerning-and-ligatures-expected.txt:
+        * platform/efl/fast/text/atsui-multiple-renderers-expected.txt:
+        * platform/efl/fast/text/atsui-negative-spacing-features-expected.txt:
+        * platform/efl/fast/text/atsui-partial-selection-expected.txt:
+        * platform/efl/fast/text/atsui-pointtooffset-calls-cg-expected.txt:
+        * platform/efl/fast/text/atsui-rtl-override-selection-expected.txt:
+        * platform/efl/fast/text/atsui-small-caps-punctuation-size-expected.txt:
+        * platform/efl/fast/text/atsui-spacing-features-expected.txt:
+        * platform/efl/fast/text/backslash-to-yen-sign-dynamic-expected.txt:
+        * platform/efl/fast/text/backslash-to-yen-sign-euc-expected.txt:
+        * platform/efl/fast/text/backslash-to-yen-sign-expected.txt:
+        * platform/efl/fast/text/basic/001-expected.txt:
+        * platform/efl/fast/text/basic/002-expected.txt:
+        * platform/efl/fast/text/basic/003-expected.txt:
+        * platform/efl/fast/text/basic/004-expected.txt:
+        * platform/efl/fast/text/basic/005-expected.txt:
+        * platform/efl/fast/text/basic/006-expected.txt:
+        * platform/efl/fast/text/basic/007-expected.txt:
+        * platform/efl/fast/text/basic/008-expected.txt:
+        * platform/efl/fast/text/basic/012-expected.txt:
+        * platform/efl/fast/text/basic/014-expected.txt:
+        * platform/efl/fast/text/basic/015-expected.txt:
+        * platform/efl/fast/text/basic/generic-family-changes-expected.txt:
+        * platform/efl/fast/text/basic/generic-family-reset-expected.txt:
+        * platform/efl/fast/text/bidi-embedding-pop-and-push-same-expected.txt:
+        * platform/efl/fast/text/break-word-expected.txt:
+        * platform/efl/fast/text/capitalize-boundaries-expected.txt:
+        * platform/efl/fast/text/capitalize-empty-generated-string-expected.txt:
+        * platform/efl/fast/text/capitalize-preserve-nbsp-expected.txt:
+        * platform/efl/fast/text/cg-fallback-bolding-expected.txt:
+        * platform/efl/fast/text/cg-vs-atsui-expected.txt:
+        * platform/efl/fast/text/complex-preferred-logical-widths-expected.txt:
+        * platform/efl/fast/text/decorations-transformed-expected.txt:
+        * platform/efl/fast/text/drawBidiText-expected.txt:
+        * platform/efl/fast/text/embed-at-end-of-pre-wrap-line-expected.txt:
+        * platform/efl/fast/text/emphasis-avoid-ruby-expected.txt:
+        * platform/efl/fast/text/emphasis-overlap-expected.txt:
+        * platform/efl/fast/text/fake-italic-expected.txt:
+        * platform/efl/fast/text/font-initial-expected.txt:
+        * platform/efl/fast/text/hyphenate-limit-before-after-expected.txt:
+        * platform/efl/fast/text/in-rendered-text-rtl-expected.txt:
+        * platform/efl/fast/text/international/003-expected.txt:
+        * platform/efl/fast/text/international/bidi-L2-run-reordering-expected.txt:
+        * platform/efl/fast/text/international/bidi-european-terminators-expected.txt:
 +        * platform/efl/fast/text/international/bidi-explicit-embedding-expected.txt:
 +        * platform/efl/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt:
 +        * platform/efl/fast/text/international/bidi-innertext-expected.txt:
+        * platform/efl/fast/text/international/bidi-layout-across-linebreak-expected.txt:
 +        * platform/efl/fast/text/international/bidi-listbox-expected.txt:
+        * platform/efl/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.txt:
 +        * platform/efl/fast/text/international/bidi-override-expected.txt:
+        * platform/efl/fast/text/international/rtl-caret-expected.txt:
+        * platform/efl/fast/text/international/rtl-white-space-pre-wrap-expected.txt:
 +        * platform/efl/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt:
 +        * platform/efl/fast/text/justified-selection-at-edge-expected.txt:
+        * platform/efl/fast/text/justified-selection-expected.txt:
+        * platform/efl/fast/text/justify-ideograph-leading-expansion-expected.txt:
+        * platform/efl/fast/text/line-breaks-after-white-space-expected.txt:
+        * platform/efl/fast/text/line-breaks-expected.txt:
+        * platform/efl/fast/text/monospace-width-cache-expected.txt:
+        * platform/efl/fast/text/reset-emptyRun-expected.txt:
+        * platform/efl/fast/text/selection-hard-linebreak-expected.txt:
+        * platform/efl/fast/text/shadow-translucent-fill-expected.txt:
+        * platform/efl/fast/text/should-use-atsui-expected.txt:
+        * platform/efl/fast/text/soft-hyphen-4-expected.txt:
+        * platform/efl/fast/text/softHyphen-expected.txt:
+        * platform/efl/fast/text/text-letter-spacing-expected.txt:
+        * platform/efl/fast/text/textIteratorNilRenderer-expected.txt:
+        * platform/efl/fast/text/trailing-white-space-2-expected.txt:
+        * platform/efl/fast/text/trailing-white-space-expected.txt:
+        * platform/efl/fast/text/wbr-expected.txt:
+        * platform/efl/fast/text/wbr-in-pre-crash-expected.txt:
+        * platform/efl/fast/text/wbr-styled-expected.txt:
+        * platform/efl/fast/text/whitespace/002-expected.txt:
+        * platform/efl/fast/text/whitespace/003-expected.txt:
+        * platform/efl/fast/text/whitespace/004-expected.txt:
+        * platform/efl/fast/text/whitespace/005-expected.txt:
+        * platform/efl/fast/text/whitespace/006-expected.txt:
+        * platform/efl/fast/text/whitespace/007-expected.txt:
+        * platform/efl/fast/text/whitespace/008-expected.txt:
+        * platform/efl/fast/text/whitespace/009-expected.txt:
+        * platform/efl/fast/text/whitespace/010-expected.txt:
+        * platform/efl/fast/text/whitespace/011-expected.txt:
+        * platform/efl/fast/text/whitespace/012-expected.txt:
+        * platform/efl/fast/text/whitespace/013-expected.txt:
+        * platform/efl/fast/text/whitespace/014-expected.txt:
+        * platform/efl/fast/text/whitespace/015-expected.txt:
+        * platform/efl/fast/text/whitespace/016-expected.txt:
+        * platform/efl/fast/text/whitespace/018-expected.txt:
+        * platform/efl/fast/text/whitespace/020-expected.txt:
+        * platform/efl/fast/text/whitespace/021-expected.txt:
+        * platform/efl/fast/text/whitespace/022-expected.txt:
+        * platform/efl/fast/text/whitespace/025-expected.txt:
+        * platform/efl/fast/text/whitespace/026-expected.txt:
+        * platform/efl/fast/text/whitespace/027-expected.txt:
+        * platform/efl/fast/text/whitespace/030-expected.txt:
+        * platform/efl/fast/text/whitespace/nowrap-clear-float-expected.txt:
+        * platform/efl/fast/text/whitespace/pre-break-word-expected.txt:
+        * platform/efl/fast/text/whitespace/pre-wrap-last-char-expected.txt:
+        * platform/efl/fast/text/whitespace/pre-wrap-line-test-expected.txt:
+        * platform/efl/fast/text/whitespace/pre-wrap-overflow-selection-expected.txt:
 +        * platform/efl/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.txt:
 +        * platform/efl/fast/text/whitespace/span-in-word-space-causes-overflow-expected.txt:
 +        * platform/efl/fast/text/whitespace/tab-character-basics-expected.txt:
+        * platform/efl/fast/text/wide-zero-width-space-expected.txt:
+        * platform/efl/fast/text/word-break-expected.txt:
+        * platform/efl/fast/text/word-break-run-rounding-expected.txt:
+        * platform/efl/fast/text/word-break-soft-hyphen-expected.txt:
+        * platform/efl/fast/text/word-space-expected.txt:
+        * platform/efl/fast/tokenizer/001-expected.txt:
+        * platform/efl/fast/tokenizer/003-expected.txt:
+        * platform/efl/fast/transforms/bounding-rect-zoom-expected.txt:
+        * platform/efl/fast/transforms/diamond-expected.txt:
+        * platform/efl/fast/transforms/identity-matrix-expected.txt:
+        * platform/efl/fast/transforms/overflow-with-transform-expected.txt:
+        * platform/efl/fast/transforms/skew-with-unitless-zero-expected.txt:
+        * platform/efl/fast/transforms/transform-on-inline-expected.txt:
+        * platform/efl/fast/transforms/transform-overflow-expected.txt:
+        * platform/efl/fast/transforms/transform-positioned-ancestor-expected.txt:
+        * platform/efl/fast/transforms/transform-table-row-expected.txt:
+        * platform/efl/fast/transforms/transformed-document-element-expected.txt:
+        * platform/efl/fast/transforms/transformed-focused-text-input-expected.txt:
+        * platform/efl/fast/transforms/transforms-with-opacity-expected.txt:
+        * platform/efl/fast/writing-mode/basic-vertical-line-expected.txt:
+        * platform/efl/fast/writing-mode/english-bt-text-expected.txt:
+        * platform/efl/fast/writing-mode/english-rl-text-expected.txt:
+        * platform/efl/fast/writing-mode/fieldsets-expected.txt:
+        * platform/efl/fast/xsl/document-function-expected.txt:
+        * platform/efl/fast/xsl/xslt-enc-cyr-expected.txt:
+        * platform/efl/fast/xsl/xslt-enc-expected.txt:
+        * platform/efl/fast/xsl/xslt-enc16-expected.txt:
+        * platform/efl/fast/xsl/xslt-enc16to16-expected.txt:
+        * platform/efl/fast/xsl/xslt-entity-expected.txt:
+        * platform/efl/fast/xsl/xslt-extra-content-at-end-expected.txt:
+        * platform/efl/fast/xsl/xslt-import-depth-expected.txt:
+        * platform/efl/fast/xsl/xslt-missing-namespace-in-xslt-expected.txt:
+        * platform/efl/fast/xsl/xslt-relative-path-expected.txt:
+
+2012-01-27  Gyuyoung Kim  &lt;gyuyoung.kim@samsung.com&gt;
+
+        Unreviewed, EFL css3 rebaseline after r101343.
+
+        * platform/efl/css3/css3-modsel-33-expected.txt:
+        * platform/efl/css3/css3-modsel-35-expected.txt:
+        * platform/efl/css3/css3-modsel-36-expected.txt:
+        * platform/efl/css3/css3-modsel-37-expected.txt:
+        * platform/efl/css3/font-feature-settings-rendering-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-1-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-10-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-11-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-13-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-14-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-144-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-148-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-149-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-149b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-14b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-14c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-14d-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-14e-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-15-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-150-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-151-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-152-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-154-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-155-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-155a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-155b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-155c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-155d-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-156-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-156b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-156c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-157-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-158-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-159-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-15b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-16-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-160-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-161-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-166-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-166a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-167-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-167a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-168-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-168a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-169-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-169a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-17-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-170-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-170a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-170b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-170c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-170d-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-175a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-175b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-175c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-176-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-177a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-177b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-178-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-179-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-18-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-180a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-181-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-183-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-184a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-184b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-184c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-184d-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-184e-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-184f-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-18a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-18b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-18c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-19-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-19b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-2-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-20-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-21-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-21b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-21c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-22-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-23-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-24-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-27-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-27a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-27b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-28-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-28b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-29-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-29b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-30-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-31-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-32-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-33-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-34-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-35-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-36-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-37-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-38-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-3a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-4-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-41-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-41a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-42-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-42a-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-43-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-43b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-44-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-44b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-44c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-44d-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-45-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-45b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-45c-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-46-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-46b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-5-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-54-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-55-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-56-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-59-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-6-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-60-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-61-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-62-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-63-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-64-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-65-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-66-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-66b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-67-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-68-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-69-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-7-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-72-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-72b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-73-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-73b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-74-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-74b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-75-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-75b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-76-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-76b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-77-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-77b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-78-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-78b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-79-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-7b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-8-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-80-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-81-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-81b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-82-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-82b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-83-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-86-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-87-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-87b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-88-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-88b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-89-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-9-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-90-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-90b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-d1-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-d1b-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-d2-expected.txt:
+        * platform/efl/css3/selectors3/html/css3-modsel-d4-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-1-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-10-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-100-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-100b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-101-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-101b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-102-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-102b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-103-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-103b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-104-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-104b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-105-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-105b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-106-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-106b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-107-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-107b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-108-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-108b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-109-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-109b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-11-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-110-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-110b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-111-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-111b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-112-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-112b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-113-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-113b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-114-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-114b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-115-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-115b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-116-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-116b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-117-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-117b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-118-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-119-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-120-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-121-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-122-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-123-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-123b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-124-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-124b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-125-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-125b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-126-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-126b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-127-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-127b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-128-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-128b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-129-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-129b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-13-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-130-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-130b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-131-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-131b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-132-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-132b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-133-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-133b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-134-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-134b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-135-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-135b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-136-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-136b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-137-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-137b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-138-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-138b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-139-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-139b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-14-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-140-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-140b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-141-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-141b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-142-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-142b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-143-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-143b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-144-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-145a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-145b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-146a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-146b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-147a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-147b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-148-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-149-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-149b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-14b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-14c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-14d-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-14e-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-15-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-150-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-151-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-152-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-153-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-154-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-155-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-155a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-155b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-155c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-155d-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-156-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-156b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-156c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-157-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-158-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-159-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-15b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-15c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-16-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-160-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-161-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-166-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-166a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-167-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-167a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-168-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-168a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-169-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-169a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-17-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-170-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-170a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-170b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-170c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-170d-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-171-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-172a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-172b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-173a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-173b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-174a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-174b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-175a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-175b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-175c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-176-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-177a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-177b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-178-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-179-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-18-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-180a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-181-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-182-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-183-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-184a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-184b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-184c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-184d-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-184e-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-184f-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-18a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-18b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-18c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-19-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-19b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-2-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-20-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-21-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-21b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-21c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-22-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-23-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-24-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-27-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-27a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-27b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-28-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-28b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-29-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-29b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-3-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-30-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-31-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-32-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-33-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-34-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-35-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-36-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-37-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-38-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-3a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-4-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-41-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-41a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-42-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-42a-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-43-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-43b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-44-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-44b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-44c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-44d-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-45-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-45b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-45c-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-46-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-46b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-47-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-48-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-49-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-5-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-50-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-51-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-52-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-53-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-54-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-55-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-56-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-57-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-57b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-59-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-6-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-60-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-61-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-62-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-63-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-64-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-65-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-66-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-66b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-67-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-68-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-69-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-7-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-72-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-72b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-73-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-73b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-74-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-74b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-75-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-75b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-76-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-76b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-77-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-77b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-78-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-78b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-79-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-7b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-8-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-80-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-81-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-81b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-82-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-82b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-83-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-86-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-87-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-87b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-88-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-88b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-89-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-9-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-90-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-90b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-91-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-92-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-93-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-94-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-94b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-95-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-96-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-96b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-97-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-97b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-98-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-98b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-99-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-99b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-d1-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-d2-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-d3-expected.txt:
+        * platform/efl/css3/selectors3/xhtml/css3-modsel-d4-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-1-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-10-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-100-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-100b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-101-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-101b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-102-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-102b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-103-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-103b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-104-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-104b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-105-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-105b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-106-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-106b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-107-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-107b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-108-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-108b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-109-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-109b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-11-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-110-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-110b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-111-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-111b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-112-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-112b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-113-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-113b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-114-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-114b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-115-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-115b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-116-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-116b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-117-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-117b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-118-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-119-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-120-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-121-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-122-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-123-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-123b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-124-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-124b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-125-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-125b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-126-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-126b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-127-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-127b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-128-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-128b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-129-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-129b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-13-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-130-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-130b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-131-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-131b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-132-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-132b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-133-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-133b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-134-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-134b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-135-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-135b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-136-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-136b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-137-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-137b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-138-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-138b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-139-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-139b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-14-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-140-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-140b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-141-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-141b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-142-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-142b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-143-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-143b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-144-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-145a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-145b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-146a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-146b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-147a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-147b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-148-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-149-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-149b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-14b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-14c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-14d-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-14e-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-15-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-150-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-151-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-152-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-153-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-154-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-155-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-155a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-155b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-155c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-155d-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-156-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-156b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-156c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-157-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-158-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-159-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-15b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-15c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-16-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-160-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-161-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-166-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-166a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-167-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-167a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-168-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-168a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-169-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-169a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-17-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-170-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-170a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-170b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-170c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-170d-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-171-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-172a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-172b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-173a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-173b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-174a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-174b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-175a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-175b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-175c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-176-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-177a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-177b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-178-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-179-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-18-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-180a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-181-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-182-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-183-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-184a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-184b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-184c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-184d-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-184e-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-184f-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-18a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-18b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-18c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-19-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-19b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-2-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-20-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-21-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-21b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-21c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-22-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-23-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-24-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-27-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-27a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-27b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-28-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-28b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-29-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-29b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-3-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-30-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-31-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-32-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-33-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-34-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-35-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-36-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-37-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-38-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-3a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-4-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-41-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-41a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-42-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-42a-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-43-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-43b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-44-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-44b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-44c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-44d-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-45-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-45b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-45c-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-46-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-46b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-47-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-48-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-49-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-5-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-50-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-51-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-52-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-53-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-54-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-55-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-56-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-57-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-57b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-59-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-6-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-60-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-61-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-62-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-63-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-64-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-65-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-66-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-66b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-67-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-68-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-69-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-7-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-72-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-72b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-73-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-73b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-74-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-74b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-75-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-75b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-76-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-76b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-77-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-77b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-78-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-78b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-79-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-7b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-8-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-80-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-81-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-81b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-82-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-82b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-83-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-86-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-87-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-87b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-88-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-88b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-89-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-9-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-90-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-90b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-91-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-92-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-93-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-94-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-94b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-95-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-96-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-96b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-97-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-97b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-98-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-98b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-99-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-99b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-d1-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-d1b-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-d2-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-d3-expected.txt:
+        * platform/efl/css3/selectors3/xml/css3-modsel-d4-expected.txt:
+        * platform/efl/css3/unicode-bidi-isolate-basic-expected.txt:
+
+2012-01-27  Matthew Delaney  &lt;mdelaney@apple.com&gt;
+
+        Update mac-lion canvas results
+        https://bugs.webkit.org/show_bug.cgi?id=77178
+        
+        2d.gradient.interpolate.colouralpha is failing due to one channel's value of \
one pixel being +        off by 4 just outside of the +/-3 range the test allows for \
tolerance. Upping the tolerance to +        +/-4 is reasonable but we've chosen not \
to modify locally this suite of pulled external tests. +
+        The set-colors test passes other than two color parsing checks. Thus, it's \
useful to track it +        with overall failing results in case any other check \
changes in the test. +
+        Reviewed by Andy Estes.
+
+        * platform/mac-lion/Skipped: Unskipping set-colors and \
2d.gradient.interpolate.colouralpha +        * platform/mac-lion/canvas: Added.
+        * platform/mac-lion/canvas/philip: Added.
+        * platform/mac-lion/canvas/philip/tests: Added.
+        * platform/mac-lion/canvas/philip/tests/2d.gradient.interpolate.colouralpha-expected.txt: \
Added. +        * platform/mac-snowleopard/canvas/philip/tests/2d.gradient.interpolate.colouralpha-expected.txt: \
Added. +        * platform/mac-snowleopard/fast/canvas/set-colors-expected.txt:
+        * platform/mac/fast/canvas/set-colors-expected.txt:
+
+2012-01-27  Gyuyoung Kim  &lt;gyuyoung.kim@samsung.com&gt;
+
+        Unreviewed, EFL css2.1 rebaseline after r101343.
+
+        * platform/efl/css2.1/20110323/absolute-non-replaced-height-001-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-002-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-003-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-004-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-005-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-006-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-007-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-008-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-009-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-010-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-011-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-height-012-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-001-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-002-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-003-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-004-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-005-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-006-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-007-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-008-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-009-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-010-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-011-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-max-height-012-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-001-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-002-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-003-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-004-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-005-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-006-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-007-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-008-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-009-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-010-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-011-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-012-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-013-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-014-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-015-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-016-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-017-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-018-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-019-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-020-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-021-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-022-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-023-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-non-replaced-width-024-expected.txt:
 +        * platform/efl/css2.1/20110323/absolute-replaced-height-001-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-002-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-003-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-004-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-005-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-007-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-008-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-009-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-010-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-011-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-012-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-014-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-016-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-017-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-018-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-019-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-021-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-022-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-023-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-024-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-025-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-026-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-028-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-029-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-030-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-031-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-032-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-033-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-035-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-height-036-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-001-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-006-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-008-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-013-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-015-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-020-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-022-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-027-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-029-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-034-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-036-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-041-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-043-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-048-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-050-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-055-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-057-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-062-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-064-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-069-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-071-expected.txt:
+        * platform/efl/css2.1/20110323/absolute-replaced-width-076-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-001-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-002-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-003-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-004-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-005-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-006-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-007-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-008-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-009-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-010-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-011-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-012-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-013-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-014-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-015-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-height-016-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-width-001-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-width-002-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-width-003-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-width-004-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-width-005-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-width-006-expected.txt:
+        * platform/efl/css2.1/20110323/block-non-replaced-width-007-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-height-001-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-height-002-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-height-003-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-height-004-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-height-005-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-height-007-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-width-001-expected.txt:
+        * platform/efl/css2.1/20110323/block-replaced-width-006-expected.txt:
+        * platform/efl/css2.1/20110323/border-conflict-style-079-expected.txt:
+        * platform/efl/css2.1/20110323/border-conflict-style-088-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-height-001-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-001-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-002-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-003-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-004-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-005-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-006-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-007-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-008-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-009-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-010-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-011-expected.txt:
+        * platform/efl/css2.1/20110323/float-non-replaced-width-012-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-height-001-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-height-002-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-height-003-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-height-004-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-height-005-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-height-007-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-width-001-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-width-002-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-width-003-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-width-004-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-width-005-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-width-006-expected.txt:
+        * platform/efl/css2.1/20110323/float-replaced-width-011-expected.txt:
+        * platform/efl/css2.1/20110323/floating-replaced-height-008-expected.txt:
+        * platform/efl/css2.1/20110323/height-width-inline-table-001-expected.txt:
+        * platform/efl/css2.1/20110323/height-width-table-001-expected.txt:
+        * platform/efl/css2.1/20110323/inline-block-non-replaced-height-001-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-non-replaced-height-002-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-non-replaced-width-001-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-non-replaced-width-002-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-height-001-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-height-002-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-height-003-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-height-004-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-height-005-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-height-007-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-height-008-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-width-001-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-block-replaced-width-006-expected.txt:
 +        * platform/efl/css2.1/20110323/inline-non-replaced-height-002-expected.txt:
+        * platform/efl/css2.1/20110323/inline-non-replaced-height-003-expected.txt:
+        * platform/efl/css2.1/20110323/inline-non-replaced-width-001-expected.txt:
+        * platform/efl/css2.1/20110323/inline-non-replaced-width-002-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-height-001-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-height-002-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-height-003-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-height-004-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-height-005-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-height-007-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-height-008-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-width-001-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-width-006-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-width-011-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-width-012-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-width-013-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-width-014-expected.txt:
+        * platform/efl/css2.1/20110323/inline-replaced-width-015-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-001-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-002-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-003-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-004-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-005-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-006-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-007-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-008-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-009-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-010-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-012-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-013-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-014-expected.txt:
+        * platform/efl/css2.1/20110323/margin-applies-to-015-expected.txt:
+        * platform/efl/css2.1/20110323/replaced-elements-001-expected.txt:
+        * platform/efl/css2.1/20110323/replaced-intrinsic-001-expected.txt:
+        * platform/efl/css2.1/20110323/replaced-intrinsic-003-expected.txt:
+        * platform/efl/css2.1/20110323/replaced-intrinsic-004-expected.txt:
+        * platform/efl/css2.1/20110323/replaced-intrinsic-005-expected.txt:
+        * platform/efl/css2.1/20110323/replaced-min-max-001-expected.txt:
+        * platform/efl/css2.1/20110323/width-non-replaced-inline-001-expected.txt:
+        * platform/efl/css2.1/20110323/width-replaced-element-001-expected.txt:
+        * platform/efl/css2.1/t010403-shand-border-00-c-expected.txt:
+        * platform/efl/css2.1/t010403-shand-font-00-b-expected.txt:
+        * platform/efl/css2.1/t010403-shand-font-01-b-expected.txt:
+        * platform/efl/css2.1/t010403-shand-font-02-b-expected.txt:
+        * platform/efl/css2.1/t010403-shand-font-03-b-expected.txt:
+        * platform/efl/css2.1/t040102-keywords-00-b-expected.txt:
+        * platform/efl/css2.1/t040102-keywords-01-b-expected.txt:
+        * platform/efl/css2.1/t040103-case-00-b-expected.txt:
+        * platform/efl/css2.1/t040103-case-01-c-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-00-b-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-01-b-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-02-d-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-03-b-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-04-b-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-05-c-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-06-b-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-07-b-expected.txt:
+        * platform/efl/css2.1/t040103-escapes-08-b-expected.txt:
+        * platform/efl/css2.1/t040103-ident-00-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-01-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-02-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-03-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-04-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-05-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-06-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-07-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-08-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-09-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-10-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-11-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-12-c-expected.txt:
+        * platform/efl/css2.1/t040103-ident-13-c-expected.txt:
+        * platform/efl/css2.1/t040105-atkeyw-00-b-expected.txt:
+        * platform/efl/css2.1/t040105-atkeyw-01-b-expected.txt:
+        * platform/efl/css2.1/t040105-atkeyw-02-b-expected.txt:
+        * platform/efl/css2.1/t040105-atrule-00-b-expected.txt:
+        * platform/efl/css2.1/t040105-atrule-01-b-expected.txt:
+        * platform/efl/css2.1/t040105-atrule-02-b-expected.txt:
+        * platform/efl/css2.1/t040105-atrule-03-b-expected.txt:
+        * platform/efl/css2.1/t040105-atrule-04-b-expected.txt:
+        * platform/efl/css2.1/t040105-import-00-b-expected.txt:
+        * platform/efl/css2.1/t040105-import-01-b-expected.txt:
+        * platform/efl/css2.1/t040105-import-10-b-expected.txt:
+        * platform/efl/css2.1/t040109-c17-comments-00-b-expected.txt:
+        * platform/efl/css2.1/t040109-c17-comments-01-b-expected.txt:
+        * platform/efl/css2.1/t0402-c71-fwd-parsing-00-f-expected.txt:
+        * platform/efl/css2.1/t0402-c71-fwd-parsing-01-f-expected.txt:
+        * platform/efl/css2.1/t0402-c71-fwd-parsing-02-f-expected.txt:
+        * platform/efl/css2.1/t0402-c71-fwd-parsing-03-f-expected.txt:
+        * platform/efl/css2.1/t0402-c71-fwd-parsing-04-f-expected.txt:
+        * platform/efl/css2.1/t0402-syntax-01-f-expected.txt:
+        * platform/efl/css2.1/t0402-syntax-02-f-expected.txt:
+        * platform/efl/css2.1/t0402-syntax-03-f-expected.txt:
+        * platform/efl/css2.1/t0402-syntax-04-f-expected.txt:
+        * platform/efl/css2.1/t0402-syntax-05-f-expected.txt:
+        * platform/efl/css2.1/t0402-syntax-06-f-expected.txt:
+        * platform/efl/css2.1/t040302-c61-ex-len-00-b-a-expected.txt:
+        * platform/efl/css2.1/t040302-c61-phys-len-00-b-expected.txt:
+        * platform/efl/css2.1/t040302-c61-rel-len-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t040303-c62-percent-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t040304-c64-uri-00-a-g-expected.txt:
+        * platform/efl/css2.1/t040306-c63-color-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t040306-syntax-01-f-expected.txt:
+        * platform/efl/css2.1/t040307-syntax-01-b-expected.txt:
+        * platform/efl/css2.1/t050201-c12-grouping-00-b-expected.txt:
+        * platform/efl/css2.1/t0505-c16-descendant-00-e-expected.txt:
+        * platform/efl/css2.1/t0505-c16-descendant-01-e-expected.txt:
+        * platform/efl/css2.1/t0505-c16-descendant-02-e-expected.txt:
+        * platform/efl/css2.1/t050803-c14-classes-00-e-expected.txt:
+        * platform/efl/css2.1/t0509-c15-ids-00-a-expected.txt:
+        * platform/efl/css2.1/t0509-c15-ids-01-e-expected.txt:
+        * platform/efl/css2.1/t0509-id-sel-syntax-01-f-expected.txt:
+        * platform/efl/css2.1/t0509-id-sel-syntax-02-b-expected.txt:
+        * platform/efl/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.txt:
+        * platform/efl/css2.1/t0511-c21-pseud-anch-00-e-i-expected.txt:
+        * platform/efl/css2.1/t0511-c21-pseud-link-00-e-expected.txt:
+        * platform/efl/css2.1/t0511-c21-pseud-link-01-e-expected.txt:
+        * platform/efl/css2.1/t0511-c21-pseud-link-02-e-expected.txt:
+        * platform/efl/css2.1/t0511-c21-pseud-link-03-e-expected.txt:
+        * platform/efl/css2.1/t051103-c21-activ-ln-00-e-i-expected.txt:
+        * platform/efl/css2.1/t051103-c21-focus-ln-00-e-i-expected.txt:
+        * platform/efl/css2.1/t051103-c21-hover-ln-00-e-i-expected.txt:
+        * platform/efl/css2.1/t051103-dom-hover-01-c-io-expected.txt:
+        * platform/efl/css2.1/t051103-dom-hover-02-c-io-expected.txt:
+        * platform/efl/css2.1/t0602-c13-inh-underlin-00-e-expected.txt:
+        * platform/efl/css2.1/t0602-c13-inheritance-00-e-expected.txt:
+        * platform/efl/css2.1/t0602-inherit-bdr-pad-b-00-expected.txt:
+        * platform/efl/css2.1/t0603-c11-import-00-b-expected.txt:
+        * platform/efl/css2.1/t060401-c32-cascading-00-b-expected.txt:
+        * platform/efl/css2.1/t060402-c31-important-00-b-expected.txt:
+        * platform/efl/css2.1/t060403-c21-pseu-cls-00-e-i-expected.txt:
+        * platform/efl/css2.1/t060403-c21-pseu-id-00-e-i-expected.txt:
+        * platform/efl/css2.1/t0801-c412-hz-box-00-b-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt:
+        * platform/efl/css2.1/t0803-c5502-mrgn-r-03-c-expected.txt:
+        * platform/efl/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-mrgn-l-02-c-expected.txt:
+        * platform/efl/css2.1/t0803-c5504-mrgn-l-03-c-expected.txt:
+        * platform/efl/css2.1/t0803-c5505-imrgn-00-a-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5505-mrgn-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0803-c5505-mrgn-01-e-a-expected.txt:
+        * platform/efl/css2.1/t0803-c5505-mrgn-02-c-expected.txt:
+        * platform/efl/css2.1/t0803-c5505-mrgn-03-c-ag-expected.txt:
+        * platform/efl/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt:
+        * platform/efl/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-padn-r-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-padn-r-01-c-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-padn-r-02-f-expected.txt:
+        * platform/efl/css2.1/t0804-c5507-padn-r-03-f-expected.txt:
+        * platform/efl/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-padn-l-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-padn-l-01-b-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-padn-l-02-f-expected.txt:
+        * platform/efl/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt:
+        * platform/efl/css2.1/t0804-c5510-ipadn-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5510-padn-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t0804-c5510-padn-01-e-a-expected.txt:
+        * platform/efl/css2.1/t0804-c5510-padn-02-f-expected.txt:
+        * platform/efl/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.txt:
+        * platform/efl/css2.1/t0805-c5511-brdr-tw-02-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5511-brdr-tw-03-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5512-brdr-rw-00-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.txt:
+        * platform/efl/css2.1/t0805-c5512-brdr-rw-02-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5512-brdr-rw-03-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.txt:
+        * platform/efl/css2.1/t0805-c5513-brdr-bw-02-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5513-brdr-bw-03-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5514-brdr-lw-00-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.txt:
+        * platform/efl/css2.1/t0805-c5514-brdr-lw-02-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5514-brdr-lw-03-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5515-brdr-w-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5515-brdr-w-01-b-g-expected.txt:
+        * platform/efl/css2.1/t0805-c5515-brdr-w-02-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5515-ibrdr-00-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5516-brdr-c-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5516-ibrdr-c-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5517-brdr-s-00-c-expected.txt:
+        * platform/efl/css2.1/t0805-c5517-ibrdr-s-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5518-brdr-t-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5518-brdr-t-01-e-expected.txt:
+        * platform/efl/css2.1/t0805-c5518-ibrdr-t-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5519-brdr-r-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5519-brdr-r-02-e-expected.txt:
+        * platform/efl/css2.1/t0805-c5519-ibrdr-r-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5520-brdr-b-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5520-brdr-b-01-e-expected.txt:
+        * platform/efl/css2.1/t0805-c5520-ibrdr-b-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5521-brdr-l-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5521-brdr-l-02-e-expected.txt:
+        * platform/efl/css2.1/t0805-c5521-ibrdr-l-00-a-expected.txt:
+        * platform/efl/css2.1/t0805-c5522-brdr-00-b-expected.txt:
+        * platform/efl/css2.1/t0805-c5522-brdr-01-b-g-expected.txt:
+        * platform/efl/css2.1/t0805-c5522-brdr-02-e-expected.txt:
+        * platform/efl/css2.1/t0805-c5522-ibrdr-00-a-expected.txt:
+        * platform/efl/css2.1/t090204-display-change-01-b-ao-expected.txt:
+        * platform/efl/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-00-d-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-01-d-g-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-02-c-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-03-c-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-04-c-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-fit-00-d-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-fit-01-d-g-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-wrap-00-e-expected.txt:
+        * platform/efl/css2.1/t0905-c414-flt-wrap-01-d-g-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltblck-00-d-ag-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltblck-01-d-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltclr-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-flthw-00-c-g-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltinln-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
+        * platform/efl/css2.1/t0905-c5525-fltwidth-03-c-g-expected.txt:
+        * platform/efl/css2.1/t0905-c5526-fltclr-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t0905-c5526-flthw-00-c-g-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-00-d-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-01-b-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-02-d-g-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-03-b-g-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-ln-00-d-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-ln-01-d-g-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-ln-02-d-expected.txt:
+        * platform/efl/css2.1/t090501-c414-flt-ln-03-d-expected.txt:
+        * platform/efl/css2.1/t090501-c5525-flt-l-00-b-g-expected.txt:
+        * platform/efl/css2.1/t090501-c5525-flt-r-00-b-g-expected.txt:
+        * platform/efl/css2.1/t1002-c5523-width-00-b-g-expected.txt:
+        * platform/efl/css2.1/t1002-c5523-width-01-b-g-expected.txt:
+        * platform/efl/css2.1/t1002-c5523-width-02-b-g-expected.txt:
+        * platform/efl/css2.1/t100303-c412-blockw-00-d-ag-expected.txt:
+        * platform/efl/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.txt:
+        * platform/efl/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.txt:
+        * platform/efl/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.txt:
+        * platform/efl/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.txt:
+        * platform/efl/css2.1/t1004-c5524-width-00-b-g-expected.txt:
+        * platform/efl/css2.1/t1005-c5524-width-00-b-g-expected.txt:
+        * platform/efl/css2.1/t1005-c5524-width-01-b-g-expected.txt:
+        * platform/efl/css2.1/t1008-c44-ln-box-00-d-ag-expected.txt:
+        * platform/efl/css2.1/t1008-c44-ln-box-01-d-ag-expected.txt:
+        * platform/efl/css2.1/t1008-c44-ln-box-02-d-ag-expected.txt:
+        * platform/efl/css2.1/t1008-c44-ln-box-03-d-ag-expected.txt:
+        * platform/efl/css2.1/t100801-c42-ibx-ht-00-d-a-expected.txt:
+        * platform/efl/css2.1/t100801-c544-valgn-00-a-ag-expected.txt:
+        * platform/efl/css2.1/t100801-c544-valgn-01-d-ag-expected.txt:
+        * platform/efl/css2.1/t100801-c544-valgn-02-d-agi-expected.txt:
+        * platform/efl/css2.1/t100801-c544-valgn-03-d-agi-expected.txt:
+        * platform/efl/css2.1/t100801-c544-valgn-04-d-agi-expected.txt:
+        * platform/efl/css2.1/t100801-c548-leadin-00-d-a-expected.txt:
+        * platform/efl/css2.1/t100801-c548-ln-ht-00-c-a-expected.txt:
+        * platform/efl/css2.1/t100801-c548-ln-ht-01-b-ag-expected.txt:
+        * platform/efl/css2.1/t100801-c548-ln-ht-02-b-ag-expected.txt:
+        * platform/efl/css2.1/t100801-c548-ln-ht-03-d-ag-expected.txt:
+        * platform/efl/css2.1/t100801-c548-ln-ht-04-d-ag-expected.txt:
+        * platform/efl/css2.1/t1202-counter-00-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-01-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-02-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-03-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-04-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-05-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-06-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-07-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-08-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-09-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-11-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-12-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-13-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-14-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-15-b-expected.txt:
+        * platform/efl/css2.1/t1202-counter-16-f-expected.txt:
+        * platform/efl/css2.1/t1202-counters-00-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-01-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-02-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-03-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-04-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-05-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-06-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-07-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-08-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-09-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-11-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-12-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-13-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-14-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-15-b-expected.txt:
+        * platform/efl/css2.1/t1202-counters-16-c-expected.txt:
+        * platform/efl/css2.1/t1202-counters-17-d-expected.txt:
+        * platform/efl/css2.1/t1202-counters-18-f-expected.txt:
+        * platform/efl/css2.1/t1204-implied-00-b-expected.txt:
+        * platform/efl/css2.1/t1204-implied-01-c-expected.txt:
+        * platform/efl/css2.1/t1204-implied-02-d-expected.txt:
+        * platform/efl/css2.1/t1204-multiple-00-c-expected.txt:
+        * platform/efl/css2.1/t1204-multiple-01-c-expected.txt:
+        * platform/efl/css2.1/t1204-order-00-c-expected.txt:
+        * platform/efl/css2.1/t1204-order-01-d-expected.txt:
+        * platform/efl/css2.1/t1204-root-e-expected.txt:
+        * platform/efl/css2.1/t120401-scope-00-b-expected.txt:
+        * platform/efl/css2.1/t120401-scope-01-c-expected.txt:
+        * platform/efl/css2.1/t120401-scope-02-c-expected.txt:
+        * platform/efl/css2.1/t120401-scope-03-c-expected.txt:
+        * platform/efl/css2.1/t120401-scope-04-d-expected.txt:
+        * platform/efl/css2.1/t120403-content-none-00-c-expected.txt:
+        * platform/efl/css2.1/t120403-display-none-00-c-expected.txt:
+        * platform/efl/css2.1/t120403-visibility-00-c-expected.txt:
+        * platform/efl/css2.1/t1205-c561-list-displ-00-b-expected.txt:
+        * platform/efl/css2.1/t1205-c563-list-type-00-b-expected.txt:
+        * platform/efl/css2.1/t1205-c563-list-type-01-b-expected.txt:
+        * platform/efl/css2.1/t1205-c564-list-img-00-b-g-expected.txt:
+        * platform/efl/css2.1/t1205-c565-list-pos-00-b-expected.txt:
+        * platform/efl/css2.1/t1205-c566-list-stl-00-e-ag-expected.txt:
+        * platform/efl/css2.1/t1401-c531-color-00-a-expected.txt:
+        * platform/efl/css2.1/t1402-c45-bg-canvas-00-b-expected.txt:
+        * platform/efl/css2.1/t140201-c532-bgcolor-00-a-expected.txt:
+        * platform/efl/css2.1/t140201-c532-bgcolor-01-b-expected.txt:
+        * platform/efl/css2.1/t140201-c533-bgimage-00-a-expected.txt:
+        * platform/efl/css2.1/t140201-c533-bgimage-01-b-g-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgre-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgre-01-b-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgreps-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgreps-01-c-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgreps-02-c-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgreps-03-c-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgreps-04-c-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c534-bgreps-05-c-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c535-bg-fixd-00-b-g-expected.txt:
+        * platform/efl/css2.1/t140201-c536-bgpos-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c536-bgpos-01-b-ag-expected.txt:
+        * platform/efl/css2.1/t140201-c537-bgfxps-00-c-ag-expected.txt:
+        * platform/efl/css2.1/t1503-c522-font-family-00-b-expected.txt:
+        * platform/efl/css2.1/t1504-c523-font-style-00-b-expected.txt:
+        * platform/efl/css2.1/t1504-c543-txt-decor-00-d-g-expected.txt:
+        * platform/efl/css2.1/t1505-c524-font-var-00-b-expected.txt:
+        * platform/efl/css2.1/t1506-c525-font-wt-00-b-expected.txt:
+        * platform/efl/css2.1/t1507-c526-font-sz-01-b-a-expected.txt:
+        * platform/efl/css2.1/t1507-c526-font-sz-02-b-a-expected.txt:
+        * platform/efl/css2.1/t1507-c526-font-sz-03-f-a-expected.txt:
+        * platform/efl/css2.1/t1601-c547-indent-00-b-a-expected.txt:
+        * platform/efl/css2.1/t1601-c547-indent-01-d-expected.txt:
+        * platform/efl/css2.1/t1602-c43-center-00-d-ag-expected.txt:
+        * platform/efl/css2.1/t1602-c546-txt-align-00-b-expected.txt:
+        * platform/efl/css2.1/t1604-c541-word-sp-00-b-a-expected.txt:
+        * platform/efl/css2.1/t1604-c541-word-sp-01-b-a-expected.txt:
+        * platform/efl/css2.1/t1604-c542-letter-sp-00-b-a-expected.txt:
+        * platform/efl/css2.1/t1604-c542-letter-sp-01-b-a-expected.txt:
+        * platform/efl/css2.1/t1605-c545-txttrans-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t1606-c562-white-sp-00-b-ag-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-00-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-01-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-02-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-03-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-04-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-05-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-06-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-07-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-08-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-09-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-10-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-11-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-12-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-13-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-14-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-15-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-16-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-17-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-18-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-19-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-20-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-21-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-22-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-23-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-24-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-25-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-26-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-27-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-28-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-29-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-30-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-31-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-32-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-33-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-34-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-35-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-36-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-37-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-38-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-39-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-40-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-41-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-42-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-43-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-44-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-45-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-46-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-47-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-48-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-49-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-50-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-51-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-52-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-53-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-54-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-55-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-56-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-57-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-58-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-59-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-60-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-61-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-62-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-63-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-64-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-65-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-66-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-67-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-68-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-69-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-70-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-71-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-72-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-73-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-74-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-75-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-76-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-77-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-78-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-79-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-80-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-81-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-82-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-83-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-84-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-85-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-86-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-87-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-88-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-89-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-90-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-91-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-92-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-93-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-94-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-95-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-96-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-97-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-98-d-expected.txt:
+        * platform/efl/css2.1/t170602-bdr-conflct-w-99-d-expected.txt:
+
+2012-01-27  Gyuyoung Kim  &lt;gyuyoung.kim@samsung.com&gt;
+
+        Unreviewed, EFL css1 rebaseline after r101343.
+
+        * platform/efl/css1/basic/class_as_selector-expected.txt:
+        * platform/efl/css1/basic/comments-expected.txt:
+        * platform/efl/css1/basic/containment-expected.txt:
+        * platform/efl/css1/basic/contextual_selectors-expected.txt:
+        * platform/efl/css1/basic/grouping-expected.txt:
+        * platform/efl/css1/basic/id_as_selector-expected.txt:
+        * platform/efl/css1/basic/inheritance-expected.txt:
+        * platform/efl/css1/box_properties/border-expected.txt:
+        * platform/efl/css1/box_properties/border_bottom-expected.txt:
+        * platform/efl/css1/box_properties/border_bottom_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_bottom_width-expected.txt:
+        * platform/efl/css1/box_properties/border_bottom_width_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_color-expected.txt:
+        * platform/efl/css1/box_properties/border_color_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_left-expected.txt:
+        * platform/efl/css1/box_properties/border_left_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_left_width-expected.txt:
+        * platform/efl/css1/box_properties/border_left_width_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_right-expected.txt:
+        * platform/efl/css1/box_properties/border_right_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_right_width-expected.txt:
+        * platform/efl/css1/box_properties/border_right_width_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_style-expected.txt:
+        * platform/efl/css1/box_properties/border_style_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_top-expected.txt:
+        * platform/efl/css1/box_properties/border_top_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_top_width-expected.txt:
+        * platform/efl/css1/box_properties/border_top_width_inline-expected.txt:
+        * platform/efl/css1/box_properties/border_width-expected.txt:
+        * platform/efl/css1/box_properties/border_width_inline-expected.txt:
+        * platform/efl/css1/box_properties/clear-expected.txt:
+        * platform/efl/css1/box_properties/float-expected.txt:
+        * platform/efl/css1/box_properties/float_elements_in_series-expected.txt:
+        * platform/efl/css1/box_properties/float_margin-expected.txt:
+        * platform/efl/css1/box_properties/height-expected.txt:
+        * platform/efl/css1/box_properties/margin-expected.txt:
+        * platform/efl/css1/box_properties/margin_bottom-expected.txt:
+        * platform/efl/css1/box_properties/margin_bottom_inline-expected.txt:
+        * platform/efl/css1/box_properties/margin_inline-expected.txt:
+        * platform/efl/css1/box_properties/margin_left-expected.txt:
+        * platform/efl/css1/box_properties/margin_left_inline-expected.txt:
+        * platform/efl/css1/box_properties/margin_right-expected.txt:
+        * platform/efl/css1/box_properties/margin_right_inline-expected.txt:
+        * platform/efl/css1/box_properties/margin_top-expected.txt:
+        * platform/efl/css1/box_properties/margin_top_inline-expected.txt:
+        * platform/efl/css1/box_properties/padding-expected.txt:
+        * platform/efl/css1/box_properties/padding_bottom-expected.txt:
+        * platform/efl/css1/box_properties/padding_bottom_inline-expected.txt:
+        * platform/efl/css1/box_properties/padding_inline-expected.txt:
+        * platform/efl/css1/box_properties/padding_left-expected.txt:
+        * platform/efl/css1/box_properties/padding_left_inline-expected.txt:
+        * platform/efl/css1/box_properties/padding_right-expected.txt:
+        * platform/efl/css1/box_properties/padding_right_inline-expected.txt:
+        * platform/efl/css1/box_properties/padding_top-expected.txt:
+        * platform/efl/css1/box_properties/padding_top_inline-expected.txt:
+        * platform/efl/css1/box_properties/width-expected.txt:
+        * platform/efl/css1/cascade/cascade_order-expected.txt:
+        * platform/efl/css1/cascade/important-expected.txt:
+        * platform/efl/css1/classification/display-expected.txt:
+        * platform/efl/css1/classification/list_style-expected.txt:
+        * platform/efl/css1/classification/list_style_image-expected.txt:
+        * platform/efl/css1/classification/list_style_position-expected.txt:
+        * platform/efl/css1/classification/list_style_type-expected.txt:
+        * platform/efl/css1/classification/white_space-expected.txt:
+        * platform/efl/css1/color_and_background/background-expected.txt:
+        * platform/efl/css1/color_and_background/background_attachment-expected.txt:
+        * platform/efl/css1/color_and_background/background_color-expected.txt:
+        * platform/efl/css1/color_and_background/background_image-expected.txt:
+        * platform/efl/css1/color_and_background/background_position-expected.txt:
+        * platform/efl/css1/color_and_background/background_repeat-expected.txt:
+        * platform/efl/css1/color_and_background/color-expected.txt:
+        * platform/efl/css1/conformance/forward_compatible_parsing-expected.txt:
+        * platform/efl/css1/font_properties/font-expected.txt:
+        * platform/efl/css1/font_properties/font_family-expected.txt:
+        * platform/efl/css1/font_properties/font_style-expected.txt:
+        * platform/efl/css1/font_properties/font_variant-expected.txt:
+        * platform/efl/css1/font_properties/font_weight-expected.txt:
+        * platform/efl/css1/formatting_model/canvas-expected.txt:
+        * platform/efl/css1/formatting_model/floating_elements-expected.txt:
+        * platform/efl/css1/formatting_model/height_of_lines-expected.txt:
+        * platform/efl/css1/formatting_model/horizontal_formatting-expected.txt:
+        * platform/efl/css1/formatting_model/inline_elements-expected.txt:
+        * platform/efl/css1/formatting_model/replaced_elements-expected.txt:
+        * platform/efl/css1/formatting_model/vertical_formatting-expected.txt:
+        * platform/efl/css1/pseudo/anchor-expected.txt:
+        * platform/efl/css1/pseudo/pseudo_elements_in_selectors-expected.txt:
+        * platform/efl/css1/text_properties/letter_spacing-expected.txt:
+        * platform/efl/css1/text_properties/line_height-expected.txt:
+        * platform/efl/css1/text_properties/text_align-expected.txt:
+        * platform/efl/css1/text_properties/text_decoration-expected.txt:
+        * platform/efl/css1/text_properties/text_indent-expected.txt:
+        * platform/efl/css1/text_properties/text_transform-expected.txt:
+        * platform/efl/css1/text_properties/word_spacing-expected.txt:
+        * platform/efl/css1/units/color_units-expected.txt:
+        * platform/efl/css1/units/percentage_units-expected.txt:
+        * platform/efl/css1/units/urls-expected.txt:
+
+2012-01-27  Gyuyoung Kim  &lt;gyuyoung.kim@samsung.com&gt;
+
+        Unreviewed, EFL printing, scrollbars and transforms rebaseline after \
r101343. +
+        * platform/efl/printing/compositing-layer-printing-expected.txt:
+        * platform/efl/printing/page-count-relayout-shrink-expected.txt:
+        * platform/efl/printing/page-rule-in-media-query-expected.txt:
+        * platform/efl/scrollbars/basic-scrollbar-expected.txt:
+        * platform/efl/scrollbars/custom-scrollbar-with-incomplete-style-expected.txt:
 +        * platform/efl/scrollbars/disabled-scrollbar-expected.txt:
+        * platform/efl/scrollbars/scrollbar-buttons-expected.txt:
+        * platform/efl/scrollbars/scrollbar-orientation-expected.txt:
+        * platform/efl/scrollbars/scrollbars-on-positioned-content-expected.txt:
+        * platform/efl/transforms/2d/compound-transforms-vs-containers-expected.txt:
+        * platform/efl/transforms/2d/hindi-rotated-expected.txt:
+        * platform/efl/transforms/2d/transform-borderbox-expected.txt:
+        * platform/efl/transforms/2d/transform-fixed-container-expected.txt:
+        * platform/efl/transforms/2d/transform-origin-borderbox-expected.txt:
+
+2012-01-27  Gyuyoung Kim  &lt;gyuyoung.kim@samsung.com&gt;
+
+        Unreviewed, EFL animations, dom, editing, fonts and media rebaseline after \
r101343. +
+        * platform/efl/animations/missing-values-first-keyframe-expected.txt:
+        * platform/efl/animations/missing-values-last-keyframe-expected.txt:
+        * platform/efl/animations/state-at-end-event-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/documentgetinputencoding03-expected.txt:
 +        * platform/efl/dom/xhtml/level3/core/entitygetinputencoding02-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/entitygetxmlversion02-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri05-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri07-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri09-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri10-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri11-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri15-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri17-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodegetbaseuri18-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodelookupnamespaceuri01-expected.txt:
+        * platform/efl/dom/xhtml/level3/core/nodelookupprefix19-expected.txt:
+        * platform/efl/editing/unsupported-content/table-type-after-expected.txt:
+        * platform/efl/editing/unsupported-content/table-type-before-expected.txt:
+        * platform/efl/fonts/cursive-expected.txt:
+        * platform/efl/fonts/default-expected.txt:
+        * platform/efl/fonts/fantasy-expected.txt:
+        * platform/efl/fonts/monospace-expected.txt:
+        * platform/efl/fonts/sans-serif-expected.txt:
+        * platform/efl/fonts/serif-expected.txt:
+        * platform/efl/media/audio-controls-rendering-expected.txt:
+        * platform/efl/media/audio-repaint-expected.txt:
+        * platform/efl/media/controls-after-reload-expected.txt:
+        * platform/efl/media/controls-strict-expected.txt:
+        * platform/efl/media/controls-without-preload-expected.txt:
+        * platform/efl/media/media-controls-clone-expected.txt:
+        * platform/efl/media/video-aspect-ratio-expected.txt:
+        * platform/efl/media/video-controls-rendering-expected.txt:
+        * platform/efl/media/video-display-toggle-expected.txt:
+        * platform/efl/media/video-empty-source-expected.txt:
+        * platform/efl/media/video-layer-crash-expected.txt:
+        * platform/efl/media/video-transformed-expected.txt:
+        * platform/efl/media/video-zoom-controls-expected.txt:
+        * platform/efl/media/video-zoom-expected.txt:
+
+2012-01-27  Raymond Toy  &lt;rtoy@google.com&gt;
+
+        AudioPannerNode::setPanningModel() does not update m_panningModel properly
+        https://bugs.webkit.org/show_bug.cgi?id=66830
+
+        Reviewed by Kenneth Russell.
+
+        * webaudio/panner-set-model-expected.txt: Added.
+        * webaudio/panner-set-model.html: Added.
+
+2012-01-27  Michael Saboff  &lt;msaboff@apple.com&gt;
+
+        New Regression Test for r106075
+        https://bugs.webkit.org/show_bug.cgi?id=77262
+
+        Reviewed by Geoffrey Garen.
+
+        Added a test that verifies that a function called with less t


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic