summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-14 20:37:52 +0000
committerjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-14 20:37:52 +0000
commit1364d8b89dd74afd35a5d9fe4bb4f3c66d09c3c4 (patch)
tree913a938a768134c9a8c4fc82ea671dedaecf533f
parent4889eac10a1a56dc01cdb8c8e4be57da1a9a96f6 (diff)
downloadchromium_src-1364d8b89dd74afd35a5d9fe4bb4f3c66d09c3c4.zip
chromium_src-1364d8b89dd74afd35a5d9fe4bb4f3c66d09c3c4.tar.gz
chromium_src-1364d8b89dd74afd35a5d9fe4bb4f3c66d09c3c4.tar.bz2
Rebaselines fast/repaint/fixed.html to accomodate scrolling change introduced by r26143.
That commit should have also included the following commit message: This patch avoids unnecessary layout work by calling FrameView::layoutIfNecessaryRecursive() from WebFrameImpl::Layout() rather than manually recursing through frames and calling FrameView::layout() This patch should greatly help out slow scrolling on sites like gmail. Gmail has some position:fixed elements that prevent the renderer from simply blitting on a scroll event, so it has to repaint the onscreen elements. In order to avoid painting a stale or incorrect image the renderer has to check that layout is up-to-date before painting which invokes WebFrameImpl::Layout(). Previously, this called FrameView::layout() for each frame. This meant a lot of extra work was being done even if the render tree was up to date and didn't need any more layout work. This patch calls FrameView::layoutIfNeededRecursive() instead which checks the needsLayout() flag on each FrameView in the tree. In the case of gmail, the onscroll handler does not invalidate layout so this call returns nearly instantly. This matches WebKit/Safari behavior. On my workstation the times for scrolling a large thread in gmail look like this: Before: 40ms of layout, 19ms of painting on each scroll event After: 0ms of layout, 19ms of painting on each scroll event This changes the pixel results of fast/repaint/fixed.html, but the post-change results appear to be correct. Review URL: http://codereview.chromium.org/196112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26157 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.checksum2
-rw-r--r--webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.pngbin13473 -> 13489 bytes
-rw-r--r--webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.checksum2
-rw-r--r--webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.pngbin5254 -> 5273 bytes
-rwxr-xr-x[-rw-r--r--]webkit/tools/layout_tests/test_expectations.txt4657
5 files changed, 2329 insertions, 2332 deletions
diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.checksum
index 09286d7..0799a7a 100644
--- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.checksum
+++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.checksum
@@ -1 +1 @@
-0cd038f935e5b537e408063b69df53be \ No newline at end of file
+43bbe808a6e82f542706ec192087fd39 \ No newline at end of file
diff --git a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.png b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.png
index 4923e62..8f16798 100644
--- a/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.png
+++ b/webkit/data/layout_tests/platform/chromium-linux/LayoutTests/fast/repaint/fixed-expected.png
Binary files differ
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.checksum b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.checksum
index e94bd38..5089e52 100644
--- a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.checksum
+++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.checksum
@@ -1 +1 @@
-cc3f1ecb5e25851c3946d6408aa02a6c \ No newline at end of file
+c942a4856b9aa5495bf94882e8438937 \ No newline at end of file
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.png b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.png
index 5c5bca1..d52d781 100644
--- a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.png
+++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/repaint/fixed-expected.png
Binary files differ
diff --git a/webkit/tools/layout_tests/test_expectations.txt b/webkit/tools/layout_tests/test_expectations.txt
index a144051..f4f6c95 100644..100755
--- a/webkit/tools/layout_tests/test_expectations.txt
+++ b/webkit/tools/layout_tests/test_expectations.txt
@@ -1,2330 +1,2327 @@
-// This file consists of lines with specifications of what
-// to expect from layout test cases. The test cases can be directories
-// in which case the expectations apply to all test cases in that
-// directory and any subdirectory. The format of the file is along the
-// lines of:
-//
-// LayoutTests/fast/js/fixme.js = FAIL
-// LayoutTests/fast/js/flaky.js = FAIL PASS
-// LayoutTests/fast/js/crash.js = CRASH TIMEOUT FAIL PASS
-//
-// To add other options:
-// SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
-// DEBUG : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
-// DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
-// LINUX DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
-// BUG1234 DEBUG MAC : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
-//
-// BUG[0-9]+: See this bug for more information. Every test that isn't marked
-// WONTFIX should have a BUG annotation.
-// SKIP: Doesn't run the test.
-// SLOW: The test takes a long time to run, but does not timeout indefinitely.
-// WONTFIX: For tests that we never intend to pass on a given platform.
-// DEBUG: Expectations apply only to the debug build.
-// RELEASE: Expectations apply only to release build.
-// LINUX/WIN/MAC: Expectations apply only to these platforms.
-//
-// The format of a test line is as follows:
-// METADATA : relative/path/to/test.html = EXPECTATIONS
-//
-// For example,
-// LINUX : LayoutTests/media = PASS FAIL
-//
-// The above means that all the media tests are flaky, but only on Linux.
-//
-// Notes:
-// -A test cannot be both SLOW and TIMEOUT
-// -A test can be included twice, but not via the same path.
-// -If a test is included twice, then the more precise path wins.
-// -CRASH tests cannot be WONTFIX
-
-// -----------------------------------------------------------------
-// SLOW TESTS
-// -----------------------------------------------------------------
-
-BUG_OJAN SLOW : LayoutTests/fast/js/regexp-overflow.html = PASS
-BUG_OJAN SLOW : LayoutTests/http/tests/misc/DOMContentLoaded-event.html = PASS
-BUG_OJAN SLOW : LayoutTests/http/tests/navigation/multiple-back-forward-entries.html = PASS
-BUG_OJAN SLOW : LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html = PASS
-BUG_OJAN SLOW MAC LINUX : LayoutTests/http/tests/xmlhttprequest/small-chunks-response-text.html = PASS
-BUG_OJAN SLOW WIN RELEASE : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS
-BUG_OJAN SLOW LINUX : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS
-BUG18702 MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS TIMEOUT
-BUG_OJAN SLOW WIN MAC : LayoutTests/svg/custom/invisible-text-after-scrolling.xhtml = PASS
-BUG_OJAN SLOW : LayoutTests/tables/mozilla/other/slashlogo.html = PASS
-
-// -----------------------------------------------------------------
-// SKIPPED TESTS
-// -----------------------------------------------------------------
-
-// Since V8 is more interruptible than other engines, they use the standard
-// long-running-script mechanism to handle very-long-running regexps too.
-// See http://code.google.com/p/v8/issues/detail?id=287
-WONTFIX SKIP : LayoutTests/fast/js/regexp-overflow-too-big.html = TIMEOUT
-
-// XHTML tests. These tests seem like they work, but only because the
-// expected output expects to see JS errors. There is no point in running
-// these tests, because they are giving us a false sense of testing that isn't
-// really happening. Furthermore, since they appear to pass if we do try to
-// run them, we can't even list them as permanently expected to fail.
-BUG793944 WONTFIX SKIP : LayoutTests/dom/xhtml = PASS
-
-// We do not want to support Legacy mac encodings on Windows/Linux.
-// On Mac, we can support them by building platform/text/mac, but
-// probably we don't want there, either.
-WONTFIX SKIP WIN LINUX : LayoutTests/fast/encoding/char-encoding-mac.html = FAIL
-
-// Fails due to different window.close() rules. We need to decide whether we
-// ever expect to pass this. Now also timing out.
-BUG753420 WONTFIX SKIP : LayoutTests/fast/dom/open-and-close-by-DOM.html = FAIL
-
-// Skip because of WebKit bug 18512. These bugs "poison" future tests, causing
-// all SVG objects with fill="red" to be rendered in green.
-WONTFIX SKIP : LayoutTests/svg/custom/fill-SVGPaint-interface.svg = PASS
-WONTFIX SKIP : LayoutTests/svg/custom/getPresentationAttribute.svg = PASS
-
-// WML is still an inprogress feature upstream. Chromium does not build
-// with WML support, so skip its tests.
-WONTFIX SKIP : LayoutTests/wml = FAIL
-WONTFIX SKIP : LayoutTests/http/tests/wml = FAIL
-WONTFIX SKIP : LayoutTests/fast/wml = FAIL
-
-// These tests are based on the JSC JavaScript profiler. The V8 JavaScript
-// profiler is in development and will use a different approach than JSC and
-// most likely these tests will always be JSC specific.
-WONTFIX SKIP : LayoutTests/fast/profiler = FAIL TIMEOUT
-
-// This test doesn't terminate because it contains exponential
-// regexps. It is safe to disable because we run the same tests
-// (sans the nonterminating ones) as part of the v8 tests.
-WONTFIX SKIP : LayoutTests/fast/regex/test1.html = PASS
-
-// We use worker_uitests to run workers tests. Don't run them in test_shell.
-WONTFIX SKIP : LayoutTests/fast/workers = PASS TIMEOUT FAIL
-WONTFIX SKIP : LayoutTests/http/tests/workers = PASS TIMEOUT FAIL
-WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/workers = PASS TIMEOUT FAIL
-WONTFIX SKIP : LayoutTests/http/tests/eventsource/workers = PASS TIMEOUT FAIL
-
-// Page Cache - based tests. Chromium disables page cache because the WebKit page cache keeps previously
-// loaded pages alive in memory to be able to quickly substitute them when user clicks History buttons.
-// Chromium wants those to be separate navigations made via browser process to be able to make decision
-// on which renderer process to use for each of them.
-WONTFIX SKIP BUG19635 : LayoutTests/fast/harness/use-page-cache.html = TIMEOUT FAIL
-WONTFIX SKIP BUG19635 : LayoutTests/fast/dom/Window/timer-resume-on-navigation-back.html = TIMEOUT FAIL
-// Depends on page cache, as far as I can tell.
-WONTFIX SKIP BUG10635 : LayoutTests/fast/events/pageshow-pagehide-on-back-cached.html = TIMEOUT FAIL
-
-// -----------------------------------------------------------------
-// FAILING TESTS
-// -----------------------------------------------------------------
-
-// We don't intend to pass all of these cases, so this is an expected fail.
-// Window resizing is not implemented in chrome.
-BUG1137420 WONTFIX : LayoutTests/fast/dom/Window/window-resize.html = FAIL
-
-// This test is completely timing dependent. It is testing the time
-// between a key event and a search event. You cannot count on this
-// always being exactly the same, so we allow this to either PASS or FAIL
-// but not CRASH or TIMEOUT.
-WONTFIX DEBUG SLOW WIN LINUX : LayoutTests/fast/forms/search-event-delay.html = FAIL PASS
-WONTFIX DEBUG SLOW MAC : LayoutTests/fast/forms/search-event-delay.html = FAIL
-
-// Chrome uses different keyboard accelerators from those used by Safari, so
-// these tests will always fail.
-// TODO(pinkerton): these should probably pass on Mac since we want Emacs
-// keybindings but they currently do not.
-WONTFIX LINUX WIN : LayoutTests/editing/pasteboard/emacs-cntl-y-001.html = FAIL
-WONTFIX : LayoutTests/editing/pasteboard/emacs-ctrl-a-k-y.html = FAIL
-WONTFIX : LayoutTests/editing/pasteboard/emacs-ctrl-k-y-001.html = FAIL
-WONTFIX : LayoutTests/editing/input/emacs-ctrl-o.html = FAIL
-
-// Checks for very kjs-specific garbage collector behavior.
-// Would have to be implemented much differently to work in v8.
-WONTFIX : LayoutTests/fast/dom/gc-10.html = FAIL
-
-// This fails because we're missing various useless apple-specific
-// properties on the window object.
-// This test also timeouts in Debug mode.
-BUG1058654 WONTFIX : LayoutTests/fast/dom/Window/window-properties.html = FAIL TIMEOUT
-
-// Safari specific test to ensure that JavaScript errors aren't logged when in
-// private browsing mode.
-WONTFIX : LayoutTests/http/tests/security/cross-frame-access-private-browsing.html = FAIL
-
-// We don't care about dashboard compatibility mode.
-WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html = FAIL
-WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/svg-created-by-xhr-disallowed-in-dashboard.html = FAIL
-WONTFIX : LayoutTests/svg/custom/embedded-svg-disallowed-in-dashboard.xml = FAIL
-WONTFIX : LayoutTests/svg/custom/manually-parsed-embedded-svg-disallowed-in-dashboard.html = FAIL
-WONTFIX : LayoutTests/svg/custom/manually-parsed-svg-disallowed-in-dashboard.html = FAIL
-WONTFIX SKIP : LayoutTests/svg/custom/svg-disallowed-in-dashboard-object.html = FAIL
-WONTFIX : LayoutTests/fast/canvas/canvas-gradient-addStop-error.html = FAIL
-
-
-// Chrome uses different keyboard accelerators from those used by Safari, so
-// these tests will always fail.
-// TODO(ericroman): can the following 2 tests be removed from this list, since they pass?
-WONTFIX : LayoutTests/fast/events/keydown-1.html = FAIL
-WONTFIX LINUX WIN : LayoutTests/fast/events/option-tab.html = FAIL
-
-// Chrome does not support WebArchives.
-BUG10395 WONTFIX SKIP : LayoutTests/webarchive/loading = FAIL TIMEOUT
-BUG10395 WONTFIX : LayoutTests/webarchive = PASS
-BUG10395 WONTFIX : LayoutTests/svg/webarchive = FAIL PASS
-BUG10395 WONTFIX : LayoutTests/svg/custom/image-with-prefix-in-webarchive.svg = FAIL PASS
-BUG10395 WONTFIX SKIP : LayoutTests/http/tests/webarchive = FAIL PASS
-BUG10395 WONTFIX SKIP : LayoutTests/svg/webarchive/svg-cursor-subresources.svg = FAIL
-BUG10395 WONTFIX SKIP : LayoutTests/webarchive/test-css-url-resources-in-stylesheets.html = FAIL
-BUG10395 WONTFIX SKIP : LayoutTests/webarchive/test-css-url-resources-inline-styles.html = FAIL
-
-// We don't support ACCELERATED_COMPOSITING. Skipping because some tests in this
-// directory don't have pixel results.
-BUG15733 WONTFIX SKIP : LayoutTests/compositing = FAIL PASS TIMEOUT
-
-// Run the Mac-specific platform tests, but only to check for crashes.
-WONTFIX : LayoutTests/platform/gtk = FAIL PASS
-WONTFIX : LayoutTests/platform/mac = FAIL PASS TIMEOUT
-WONTFIX : LayoutTests/platform/mac-leopard = FAIL PASS
-WONTFIX : LayoutTests/platform/mac-tiger = FAIL PASS
-WONTFIX : LayoutTests/platform/qt = FAIL PASS
-WONTFIX LINUX MAC : LayoutTests/platform/win = FAIL PASS
-
-// This is a Safari specific test to make WebKit behave like AppKit on the Mac.
-// We do not support it because PLATFORM(MAC) is not defined for the mac version.
-WONTFIX MAC : LayoutTests/platform/mac/editing/deleting/backward-delete.html = FAIL
-
-// Ignored because we do not have OBJC bindings
-WONTFIX SKIP : LayoutTests/editing/pasteboard/paste-RTFD.html = FAIL
-WONTFIX SKIP : LayoutTests/editing/pasteboard/paste-TIFF.html = FAIL
-WONTFIX SKIP : LayoutTests/plugins/jsobjc-dom-wrappers.html = FAIL
-WONTFIX SKIP : LayoutTests/plugins/jsobjc-simple.html = FAIL
-WONTFIX SKIP : LayoutTests/plugins/root-object-premature-delete-crash.html = FAIL
-WONTFIX SKIP : LayoutTests/plugins/throw-on-dealloc.html = FAIL
-WONTFIX SKIP : LayoutTests/plugins/undefined-property-crash.html = FAIL
-
-// Uses __apple_runtime_object
-WONTFIX SKIP : LayoutTests/plugins/call-as-function-test.html = FAIL
-
-// Ignore test because it tries to load .pdf files in <img> tags.
-WONTFIX LINUX WIN : LayoutTests/fast/images/pdf-as-image-landscape.html = FAIL
-WONTFIX LINUX WIN : LayoutTests/fast/images/pdf-as-image.html = FAIL
-WONTFIX LINUX WIN : LayoutTests/fast/replaced/pdf-as-image.html = FAIL
-
-// This test tries to print a PDF file as the expected result. I don't think
-// we plan on supporting this anytime soon.
-WONTFIX SKIP : LayoutTests/printing/media-queries-print.html = PASS
-
-// Chrome doesn't call the willCacheResponse callback (a method
-// of ResourceHandleClient). That function is Mac-specific.
-WONTFIX SKIP : LayoutTests/http/tests/misc/willCacheResponse-delegate-callback.html = FAIL
-
-// Checks for very kjs-specific garbage collector
-// behavior. Gc-9 is completely braindamaged; it tests that certain
-// properties are reset by the garbage collector. It looks to pass recently.
-WONTFIX : LayoutTests/fast/dom/gc-9.html = PASS FAIL
-
-// This test checks that ((new Error()).message is undefined, which is
-// a direct contradiction of the javascript spec 15.11.4.3 which
-// says that it must be a string.
-WONTFIX : LayoutTests/fast/js/kde/evil-n.html = FAIL
-
-// This test is broken. The regular expression used contains an error
-// which kjs swallows and returns false, which is the expected result,
-// but for which we issue a syntax error.
-WONTFIX : LayoutTests/fast/js/code-serialize-paren.html = FAIL
-
-// These tests check for a kjs-specific extension, that source file
-// name and line numbers are available as properties on exception
-// objects. We handle error positions differently.
-WONTFIX : LayoutTests/fast/js/exception-linenums-in-html-1.html = FAIL
-WONTFIX : LayoutTests/fast/js/exception-linenums-in-html-2.html = FAIL
-WONTFIX : LayoutTests/fast/js/exception-linenums.html = FAIL
-WONTFIX : LayoutTests/fast/js/exception-expression-offset.html = FAIL
-
-// These tests rely on specific details of decompilation of
-// functions. V8 always returns the source code as written; there's
-// no decompilation or pretty printing involved except for
-// certain "native" functions where the V8 output does not include
-// newline characters. This is working as intended and we don't care
-// if the tests pass or fail. (It should probably simply be re-baselined.)
-WONTFIX : LayoutTests/fast/js/function-names.html = FAIL PASS
-
-// This test relies on KJS specific implementation
-// (window.GCController.getJSObjectCount), which we have no intention of
-// supporting.
-WONTFIX SKIP : LayoutTests/fast/dom/Window/timeout-released-on-close.html = FAIL
-
-// These tests expect a tiff decoder, which we don't have.
-WONTFIX LINUX WIN : LayoutTests/fast/images/embed-image.html = FAIL
-WONTFIX LINUX WIN : LayoutTests/fast/images/object-image.html = FAIL
-
-// Safari has a unique handling of the BOM characters among browsers.
-// There is a strong suspicion that this is a security problem, so we
-// follow the rest of the browsers on this one.
-WONTFIX : LayoutTests/fast/js/removing-Cf-characters.html = FAIL
-
-// These tests fail in all but the PST/PDT time zone.
-// Another reason for failure is that, for compatability, we don't obey
-// the ECMA standard on DST exactly. We use the OS's facilities to
-// convert to local time for dates within the UNIX 32-bit epoch,
-// and follow the ECMA rules for dates outside that range.
-// The ECMA rules say to use current DST rules for all dates,
-// and that all dates that are separated by an exact multiple of
-// 28 years must behave exactly the same.
-// OS local time services are more accurate than this ECMA rule,
-// which is a discrepancy.
-WONTFIX SKIP : LayoutTests/fast/js/date-DST-time-cusps.html = PASS FAIL
-WONTFIX SKIP : LayoutTests/fast/js/date-big-setdate.html = PASS FAIL
-
-// The following tests fail because of difference in how the test shell
-// navigation controller tracks navigations as compared to how the Mac
-// implementation does it.
-WONTFIX : LayoutTests/http/tests/history/redirect-200-refresh-0-seconds.pl = FAIL
-WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-0-seconds.html = FAIL
-WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-2-seconds.html = FAIL
-WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-before-load.html = FAIL
-WONTFIX : LayoutTests/http/tests/history/redirect-meta-refresh-0-seconds.html = FAIL
-
-// This test expects weird behavior of __defineGetter__ on the
-// window object. It expects variables introduced with 'var x = value'
-// to behave differently from variables introduced with 'y = value'.
-// This just seems wrong and should have very low priority.
-// Agreed, not required for Beta, we can debate this with WebKit post Beta
-// (eseidel, 4/25)
-// Ignore this until we see evidence that we need to support it.
-WONTFIX : LayoutTests/fast/dom/getter-on-window-object2.html = FAIL
-
-// V8 doesn't stable sort and we currently have no intention of
-// changing this. It is tracked by:
-// http://code.google.com/p/v8/issues/detail?id=90
-WONTFIX : LayoutTests/fast/js/comparefn-sort-stability.html = FAIL
-WONTFIX : LayoutTests/fast/js/sort-stability.html = FAIL
-
-// We have no indication that anyone misses this and have currently no
-// intention of implementing it.
-WONTFIX : LayoutTests/fast/js/function-dot-arguments.html = FAIL
-
-// This is a Safari specific test used to document the set of global
-// constructors they expose and the exact way they are printed. Not
-// important.
-WONTFIX : LayoutTests/fast/js/global-constructors.html = FAIL
-
-// This test is not reliable. The behavior depends on exactly how the
-// stack limit is reached. We're happy with our behavior on this test
-// as long as we don't crash.
-WONTFIX : LayoutTests/fast/js/global-recursion-on-full-stack.html = FAIL PASS
-
-// Actually passes, just needs a new image baseline.
-WIN LINUX BUG_JAMESR : LayoutTests/fast/repaint/fixed.html = FAIL
-
-// -----------------------------------------------------------------
-// CHROME REWRITTEN TESTS
-// -----------------------------------------------------------------
-
-// These tests have been rewritten, with the original being ignored,
-// because they rely on being able to shadow the 'top' variable on the
-// global object. For security we disallow shadowing of top.
-WONTFIX : LayoutTests/editing/selection/click-before-and-after-table.html = FAIL
-
-// We're taking a different approach on this test than Webkit does, related to
-// whether we create a window via a plugin when target is _blank.
-BUG849085 WONTFIX SKIP : LayoutTests/plugins/get-url-with-blank-target.html = FAIL
-
-// This test doesn't work on the bbot. Works locally.
-WONTFIX SKIP : chrome/http/tests/plugins/get-file-url.html = FAIL PASS TIMEOUT
-
-// Dashboard-related test
-WONTFIX SKIP : LayoutTests/platform/mac/fast/css/dashboard-region-parser.html = FAIL
-
-// Not a test?
-WONTFIX SKIP : LayoutTests/http/tests/incremental/pause-in-script-element.pl = FAIL
-
-// This tests for an arbitrary limit set in JSCRE to terminate regular
-// expressions with an exponential matching behavior. Since the V8
-// regular expression engine can be preempted from the outside, we do not
-// need to limit the execution this way. Firefox also keeps running
-// on this one.
-WONTFIX : LayoutTests/fast/regex/slow.html = TIMEOUT
-
-// Test to verify legacy MAC encodings. We don't want to support them and
-// have to skip this test.
-WONTFIX SKIP : LayoutTests/fast/encoding/char-decoding-mac.html = FAIL
-
-// WebKit QT Build-specific tests
-WONTFIX SKIP : LayoutTests/platform/qt/view/fixed-layout-size.html = FAIL
-
-// These don't have pixel results and rely on ObjC bindings. Don't run until they have pixel results.
-WONTFIX SKIP : LayoutTests/platform/mac/editing/pasteboard/dataTransfer-set-data-file-url.html = FAIL
-WONTFIX SKIP : LayoutTests/http/tests/security/dataTransfer-set-data-file-url.html = FAIL
-
-// The issue is which global object to use as the implicit
-// receiver for cross-frame calls. Currently, IE, Firefox and Chrome
-// agree and only Safari is doing it this way.
-BUG5053 WONTFIX : LayoutTests/fast/frames/cross-site-this.html = FAIL
-
-// This tests a Safari incompatibility. This test should fail since
-// it contains syntax errors that JSC for some reason choose not to
-// throw. V8 follows the spec.
-WONTFIX : LayoutTests/fast/js/reparsing-semicolon-insertion.html = FAIL
-
-// These tests relate to transform/3d which is a work in progress and is not
-// even run by the WebKit folk. They should be enabled whenever WebKit begins
-// testing them by default. The bug to re-enable is:
-// http://code.google.com/p/chromium/issues/detail?id=8455
-WONTFIX SKIP : LayoutTests/transforms/3d = FAIL
-
-// Copying with no selection is sometimes supposed to work
-// Also skipped by Apple on Windows (rdar://problem/5015941)
-BUG20404 : LayoutTests/editing/execCommand/copy-without-selection.html = FAIL
-
-// This is a faulty test and need to change so it works on Windows.
-// onload race condition due to poorly designed test.
-// Works fine when run stand-alone. Not needed for Beta.
-// Also skipped by Apple on Windows, due to intermittent failure
-// (rdar://5313536)
-BUG10270 WIN : LayoutTests/fast/dom/frame-loading-via-document-write.html = TIMEOUT FAIL
-
-// -----------------------------------------------------------------
-// LIGHTTPD
-// -----------------------------------------------------------------
-// This are failing for different reasons under our new lighttpd configuration
-// TODO(deanm): Address all of these via lighttpd if possible, otherwise fork.
-// Maybe flaky and need to be forked?
-
-// Difference in caching headers
-BUG18978 MAC : LayoutTests/http/tests/xmlhttprequest/cache-override.html = FAIL
-// LightTPD doesn't accept unknown HTTP methods
-BUG18978 SKIP : LayoutTests/http/tests/xmlhttprequest/methods-lower-case.html = TIMEOUT CRASH
-BUG18978 : LayoutTests/http/tests/xmlhttprequest/methods-async.html = TIMEOUT
-BUG18978 LINUX MAC : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method.html = FAIL
-BUG18978 WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method.html = FAIL TIMEOUT
-// LightTPD doesn't accept unknown HTTP methods and passes CGIs a Content-Type
-// even when a request didn't send the header.
-BUG18978 WIN LINUX : LayoutTests/http/tests/xmlhttprequest/methods.html = FAIL
-BUG18978 MAC RELEASE: LayoutTests/http/tests/xmlhttprequest/methods.html = FAIL TIMEOUT
-BUG18978 MAC DEBUG: LayoutTests/http/tests/xmlhttprequest/methods.html = FAIL
-// This passes when run in Chrome. It appears to be because of a difference
-// in how lighttpd serves up the svn resource image (or the image
-// contained in the svg image).
-BUG18978 : LayoutTests/http/tests/security/canvas-remote-read-svg-image.html = FAIL
-// Another lighttpd quirk.
-BUG8941 LINUX WIN : LayoutTests/http/tests/xmlhttprequest/web-apps/013.html = FAIL
-BUG8941 MAC : LayoutTests/http/tests/xmlhttprequest/web-apps/013.html = FAIL TIMEOUT
-BUG8941 WIN LINUX : LayoutTests/http/tests/xmlhttprequest/web-apps/012.html = FAIL
-
-// -----------------------------------------------------------------
-// TEXT
-// -----------------------------------------------------------------
-
-// This class of test fails because of size differences in text runs.
-// Mostly this is because of international text rendering differences.
-
-// The complex charater composition is not working correctly in these tests.
-BUG20509 LINUX WIN : LayoutTests/fast/forms/input-text-maxlength.html = FAIL
-BUG20509 LINUX WIN : LayoutTests/fast/forms/input-text-paste-maxlength.html = FAIL
-
-// Incrorect results, in incorrect international font metrics.
-BUG20521 LINUX WIN : LayoutTests/fast/text/atsui-multiple-renderers.html = FAIL
-BUG20521 LINUX WIN : LayoutTests/fast/text/atsui-pointtooffset-calls-cg.html = FAIL
-BUG20521 LINUX WIN : LayoutTests/fast/text/atsui-rtl-override-selection.html = FAIL
-
-// This test checks that we hack around a bug in helvetica. We fail to.
-BUG20519 LINUX WIN : LayoutTests/fast/text/wide-zero-width-space.html = FAIL
-
-// More missing international text overides, not needed for Beta.
-// Capitalization results match Safari, even if "not fully correct"
-BUG20547 LINUX WIN : LayoutTests/fast/text/capitalize-boundaries.html = FAIL
-
-// Different button line-heights, our behavior looks wrong.
-BUG20551 LINUX WIN : LayoutTests/fast/forms/control-restrict-line-height.html = FAIL
-BUG20551 LINUX WIN : LayoutTests/fast/replaced/table-percent-height.html = FAIL
-BUG20551 LINUX WIN : LayoutTests/fast/replaced/table-percent-height-text-controls.html = FAIL
-
-
-// -----------------------------------------------------------------
-// URL
-// -----------------------------------------------------------------
-
-// Form submission (GET) on non-standard url does not append a query.
-// Defering these tests as the expected behavior is wonky, and shouldn't affect
-// existing apps one way or another.
-// Implicit expectation in this test is that you can "set query" on a data URL,
-// and it should replace the first "?" substring. This makes absolutely no
-// sense.
-BUG1089231 : LayoutTests/fast/events/stopPropagation-submit.html = FAIL
-
-BUG10271 MAC LINUX : LayoutTests/fast/events/dispatchEvent-crash.html = CRASH FAIL
-
-// -----------------------------------------------------------------
-// PENDING TESTS (forked to pending/, need to be sent upstream)
-// -----------------------------------------------------------------
-
-// These tests don't work with fast timers due to setTimeout
-// races. Pending versions have these fixed.
-// Upstreaming pending test needs work.
-// See https://bugs.webkit.org/show_bug.cgi?id=21536
-BUG972450 WIN LINUX : LayoutTests/fast/repaint/bugzilla-6473.html = PASS FAIL
-
-// -----------------------------------------------------------------
-// Tests deferred until we provide support for a particular feature.
-// -----------------------------------------------------------------
-
-// These tests rely on the keygen tag, we need to implement
-// WebCore::signedPublicKeyAndChallengeString to support them.
-BUG20566 : LayoutTests/fast/html/keygen.html = FAIL
-BUG20566 : LayoutTests/fast/invalid/residual-style.html = FAIL
-
-// -----------------------------------------------------------------
-// Other
-// -----------------------------------------------------------------
-
-// Vertical scrollbar created when there is no overflow.
-// See also https://bugs.webkit.org/show_bug.cgi?id=24434 .
-BUG20826 LINUX WIN : LayoutTests/fast/forms/textarea-scrollbar-height.html = FAIL
-
-// Pixeltest failure: Form control metrics incorrect
-BUG10273 LINUX : LayoutTests/http/tests/navigation/javascriptlink-frames.html = FAIL PASS
-
-// Mac Safari under certain circumstances automatically places
-// a caret in editable document even when none was requested programatically.
-// We don't intend to copy this feature (at least not for Beta).
-BUG20844 LINUX WIN : LayoutTests/editing/selection/designmode-no-caret.html = FAIL
-
-// The end result looks right, but the event messages differ.
-BUG845400 LINUX WIN : LayoutTests/editing/pasteboard/paste-xml.xhtml = FAIL
-
-// Directionality of mixed-direction text in selected choice should
-// match that in the <select> option lists.
-// Low priority, unclear if test expectations are correct (see bug)
-BUG849411 : LayoutTests/fast/forms/select-writing-direction-natural.html = FAIL
-
-// requires support for layoutTestController.encodeHostName()
-BUG850875 : LayoutTests/fast/encoding/idn-security.html = FAIL
-
-// These layout tests to see if link colors change after visiting a page. They
-// does this by using layoutTestController.keepWebHistory() to turn on a
-// temporary web history. layoutTestController.keepWebHistory() is not
-// implemented in test shell.
-// This is a test tool problem, not a Chrome problem.
-BUG852346 : LayoutTests/fast/history/clicked-link-is-visited.html = FAIL
-BUG842346 : LayoutTests/fast/history/subframe-is-visited.html = FAIL
-
-// We don't support NPN_Enumerate, but don't know of any plugin
-// which depends on that functionality. So we ignore this for beta.
-BUG849056 : LayoutTests/plugins/netscape-enumerate.html = FAIL
-
-// This tests the screen's pixel depth, which we don't set on the buildbots
-// so it depends on the users settings. Making this a broken test for us.
-// The test must be fixed to not depend on user settings and rebaselined. post-beta.
-BUG10274 WIN LINUX : LayoutTests/fast/dom/Window/window-screen-properties.html = FAIL PASS
-
-// Expectations for this test changed upstream. We should fix this test, but
-// it doesn't need to block the current release
-BUG10275 : LayoutTests/http/tests/security/cross-frame-access-put.html = FAIL
-
-// We don't support support window.resizeTo (nor is it planned for Beta)
-BUG982602 : LayoutTests/fast/dom/Window/window-resize-and-move-arguments.html = FAIL
-
-// TODO(joshia): Need some changes to the test shell in order to support
-// Java applet related unit tests. So disable the following for now.
-BUG879449 : LayoutTests/fast/replaced/applet-disabled-positioned.html = FAIL
-BUG879449 : LayoutTests/fast/replaced/applet-rendering-java-disabled.html = FAIL
-
-// Due to differences in error pages. Needs re-baselining.
-BUG1204878 : LayoutTests/http/tests/navigation/post-goback1.html = FAIL
-
-// Since we don't have Aqua-themed controls, don't ignore the
-// box-shadow properties of controls that request Aqua theming. But since Aqua
-// controls are rare on the web, defer this fix.
-BUG21118 WIN LINUX : LayoutTests/fast/forms/box-shadow-override.html = FAIL
-
-// These tests are not valid: the so-called expected results are not known to
-// be correct.
-// TODO(ojan): They are *our* tests.
-// It seems silly to skip our own tests when we can change/delete them.
-// I'm marking them as deferred for now, but we should do something with them.
-BUG849072 SKIP : chrome/http/mime = PASS
-
-// These tests all depend on DOM Storage events which are not yet supported.
-BUG4360 : LayoutTests/storage/domstorage/window-attributes-exist.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/localstorage/iframe-events.html = TIMEOUT
-BUG4360 : LayoutTests/storage/domstorage/sessionstorage/iframe-events.html = TIMEOUT
-BUG4360 : LayoutTests/storage/domstorage/localstorage/simple-events.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/sessionstorage/simple-events.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/localstorage/index-get-and-set.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/sessionstorage/index-get-and-set.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/localstorage/onstorage-attribute-markup.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/sessionstorage/onstorage-attribute-markup.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/localstorage/onstorage-attribute-setattribute.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/sessionstorage/onstorage-attribute-setattribute.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/localstorage/onstorage-attribute-setwindow.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/sessionstorage/onstorage-attribute-setwindow.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/localstorage/string-conversion.html = FAIL
-BUG4360 : LayoutTests/storage/domstorage/sessionstorage/string-conversion.html = FAIL
-
-// Our DOM Storage implementation doesn't use WebKit's private browsing feature (even for incognito mode).
-WONTFIX : LayoutTests/storage/domstorage/localstorage/private-browsing-affects-storage.html = FAIL
-WONTFIX : LayoutTests/storage/domstorage/sessionstorage/private-browsing-affects-storage.html = FAIL
-
-// Depends on SessionStorage. I'm not sure if this is working yet, but I don't think we need to SKIP it.
-BUG4360 : LayoutTests/http/tests/loading/deleted-host-in-resource-load-delegate-callback.html = TIMEOUT
-
-// Database
-BUG4359 SKIP : LayoutTests/storage/close-during-stress-test.html = PASS
-BUG4359 SKIP : LayoutTests/storage/database-lock-after-reload.html = PASS
-BUG4359 SKIP : LayoutTests/storage/empty-statement.html = PASS
-BUG4359 SKIP : LayoutTests/storage/execute-sql-args.html = PASS
-BUG4359 SKIP : LayoutTests/storage/hash-change-with-xhr.html = PASS
-BUG4359 SKIP : LayoutTests/storage/multiple-databases-garbage-collection.html = PASS
-BUG4359 SKIP : LayoutTests/storage/multiple-transactions.html = PASS
-BUG4359 SKIP : LayoutTests/storage/open-database-empty-version.html = PASS
-BUG4359 SKIP : LayoutTests/storage/private-browsing-readonly.html = PASS
-BUG4359 SKIP : LayoutTests/storage/quota-tracking.html = PASS
-BUG4359 SKIP : LayoutTests/storage/sql-data-types.html = PASS
-BUG4359 SKIP : LayoutTests/storage/sql-data-types.js = PASS
-BUG4359 SKIP : LayoutTests/storage/success-callback.html = PASS
-BUG4359 SKIP : LayoutTests/storage/transaction-callback-exception-crash.html = PASS
-BUG4359 SKIP : LayoutTests/storage/transaction-error-callback.html = PASS
-BUG4359 SKIP : LayoutTests/fast/js/exceptions-thrown-in-callbacks.html = PASS
-
-// Implement HTML5 Geolocation API.
-BUG11246 : LayoutTests/fast/dom/Geolocation = FAIL
-
-// Implement HTML5 EventSource API. Skipping, because most of these time out and
-// slow down the test run.
-BUG19625 SKIP : LayoutTests/fast/eventsource = TIMEOUT
-BUG19625 SKIP : LayoutTests/http/tests/eventsource = TIMEOUT
-
-// Implement HTML5 datalist element.
-BUG20226 : LayoutTests/fast/forms/datalist-nonoption-child.html = FAIL
-BUG20226 : LayoutTests/fast/forms/datalist.html = FAIL
-BUG20292 : LayoutTests/fast/forms/input-list.html = FAIL
-BUG20292 : LayoutTests/fast/forms/input-selectedoption.html = FAIL
-
-// Fails due to storage APIs not implemented. Might be worth re-baselining
-// temporarily so the rest of the conditions are still tested.
-BUG1124568 : LayoutTests/fast/dom/Window/window-function-name-getter-precedence.html = FAIL
-
-// These tests are disabled until <audio> and <video> tags are supported.
-// Disable <video> and <audio> tests for mac and linux until there is
-// proper support.
-BUG4363 LINUX MAC SKIP : LayoutTests/media = TIMEOUT
-BUG4363 LINUX MAC SKIP : LayoutTests/fast/media = PASS FAIL
-BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/media = FAIL
-BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/security/local-video-poster-from-remote.html = FAIL TIMEOUT
-BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/security/local-video-source-from-remote.html = PASS FAIL
-BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/security/local-video-src-from-remote.html = PASS FAIL
-
-// These tests are for <audio> and <video> and they do not run well on Windows.
-BUG13907 WIN SLOW : LayoutTests/http/tests/security/local-video-source-from-remote.html = FAIL
-BUG13907 WIN : LayoutTests/http/tests/media/remove-while-loading.html = FAIL
-BUG13907 WIN : LayoutTests/http/tests/media/video-play-stall-seek.html = FAIL
-BUG13907 WIN : LayoutTests/http/tests/media/video-play-stall.html = FAIL
-BUG13907 WIN : LayoutTests/http/tests/media/video-seekable-stall.html = FAIL
-
-// Disabling since try bots use Chromium FFmpeg DLLs, which means we can no
-// longer decode WebKit's test clips because they use H.264, AAC, etc.
-BUG16779 SKIP : LayoutTests/accessibility/media-element.html = TIMEOUT
-BUG16779 SKIP : LayoutTests/media/audio-constructor-autobuffer.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/audio-delete-while-slider-thumb-clicked.html = TIMEOUT
-BUG16779 SKIP : LayoutTests/media/audio-delete-while-step-button-clicked.html = TIMEOUT
-BUG16779 SKIP : LayoutTests/media/controls-after-reload.html = TIMEOUT
-BUG16779 SKIP : LayoutTests/media/controls-drag-timebar.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/controls-right-click-on-timebar.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/media-startTime.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/progress-event-total.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/progress-event.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/remove-from-document.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-append-source.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-aspect-ratio.html = FAIL
-BUG16779 SKIP : LayoutTests/media/video-autoplay.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-buffered.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-canvas-source.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-click-dblckick-standalone.html = PASS TIMEOUT CRASH
-BUG16779 SKIP : LayoutTests/media/video-controls-transformed.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-controls-zoomed.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-controls.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-currentTime-set.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-currentTime-set2.html = PASS FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-currentTime.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-display-toggle.html = FAIL TIMEOUT CRASH
-BUG16779 SKIP : LayoutTests/media/video-dom-autobuffer.html = PASS FAIL
-BUG16779 SKIP : LayoutTests/media/video-dom-autoplay.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-dom-src.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-error-abort.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-layer-crash.html = FAIL
-BUG16779 SKIP : LayoutTests/media/video-load-networkState.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-load-readyState.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-loop.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-muted.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-no-autoplay.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-pause-empty-events.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-play-empty-events.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-played-collapse.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-played-ranges-1.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-played-reset.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-seek-past-end-paused.html = PASS FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-seek-past-end-playing.html = PASS FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-seekable.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-seeking.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-size-intrinsic-scale.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-size.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-source-add-src.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-source-error.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-source-type-params.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-source-type.html = PASS FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-src-change.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-src-invalid-remove.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-timeupdate-during-playback.html = FAIL CRASH TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-transformed.html = FAIL
-BUG16779 SKIP : LayoutTests/media/video-volume.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-zoom.html = FAIL
-BUG19779 SKIP : LayoutTests/media/video-no-audio.html = TIMEOUT
-BUG16779 SKIP : LayoutTests/media/audio-constructor-src.html = FAIL
-BUG16779 SKIP : LayoutTests/media/audio-constructor.html = FAIL
-BUG16779 SKIP : LayoutTests/media/media-load-event.html = FAIL
-BUG16779 SKIP : LayoutTests/media/audio-controls-rendering.html = FAIL
-BUG16779 SKIP : LayoutTests/media/video-controls-visible-audio-only.html = FAIL
-BUG16779 SKIP : LayoutTests/media/progress-event-at-least-one.html = FAIL TIMEOUT
-BUG16779 SKIP : LayoutTests/media/video-controls-rendering.html = FAIL
-BUG16779 SKIP : LayoutTests/media/video-zoom-controls.html = FAIL
-BUG16779 SKIP : LayoutTests/media/video-error-does-not-exist.html = TIMEOUT
-// We don't support MP2 audio so skip this test.
-BUG16779 SKIP : LayoutTests/media/audio-mpeg-supported.html = FAIL
-// audio/3gpp mime type, does not play in Chromium yet.
-BUG16779 SKIP : LayoutTests/media/audio-data-url.html = FAIL
-
-// This test crashes in debug build not in release build.
-BUG13907 WIN : LayoutTests/media/video-can-play-type.html = FAIL
-// This test crashes in debug build.
-BUG13907 WIN DEBUG : LayoutTests/media/video-document-types.html = FAIL CRASH
-BUG13907 WIN RELEASE : LayoutTests/media/video-document-types.html = PASS FAIL
-//BUG13907 WIN : LayoutTests/media/video-src-remove.html = FAIL
-BUG13907 WIN : LayoutTests/media/controls-styling.html = FAIL
-BUG13907 SKIP : LayoutTests/media/controls-strict.html = FAIL
-BUG17397 SKIP WIN : LayoutTests/media/audio-no-installed-engines.html = FAIL
-
-// Very flakey after r24022. Not sure if because of that change though.
-BUG20004 WIN : LayoutTests/media/video-play-pause-events.html = TIMEOUT
-
-BUG13907 SKIP : LayoutTests/media/video-empty-source.html = TIMEOUT
-BUG13907 : LayoutTests/fast/layers/video-layer.html = FAIL
-BUG13907 WIN : LayoutTests/media/event-attributes.html = FAIL
-
-// Crash on Mac and Linux. Need investigation.
-BUG_JIANLI MAC LINUX : LayoutTests/fast/events/drag-to-navigate.html = TIMEOUT CRASH
-
-// Function arguments object is copied for each access.
-BUG941049 : LayoutTests/fast/js/kde/function_arguments.html = FAIL
-
-// Need a setAuthorAndUserStylesEnabled method in
-// layoutTestController. Now we have preference to enable/disable user
-// styles(not work now), we still need to add a preference to enable/disable
-// styles of both author and user.
-// Deferring, we don't support user-controlled UA stylesheets (in beta)
-// Actually, gonna SKIP because it causes an additional error message in:
-// LayoutTests/fast/css/display-none-inline-style-change-crash.html somehow
-// the message is dumped after the #EOF, which causes an additional
-// error in the header of the following test.
-BUG973468 SKIP : LayoutTests/fast/css/disabled-author-styles.html = FAIL
-
-// It looks like the upstream test is incorrectly using font-family: Times
-// instead of font-family: times new roman. This broke when we recently moved
-// more of our font default settings to 'times new roman' from 'Times'. This
-// should be fixed upstream. https://bugs.webkit.org/show_bug.cgi?id=16348
-BUG10277 LINUX : LayoutTests/fast/css/font-face-default-font.html = FAIL
-
-// We don't support dynamic fonts on Linux.
-// Once we have the sandbox working, we should re-evaluate this.
-BUG10278 LINUX : LayoutTests/fast/css/font-face-implicit-local-font.html = FAIL
-BUG10278 LINUX : LayoutTests/fast/css/font-face-unicode-range.html = FAIL
-
-// The v8 bindings allow shadowing of all properties on the global
-// object. If you use 'var prop = value' you will get a new variable
-// named prop that shadows builtin properties on the global object.
-// This behavior is consistent and I'm reluctant to make the massive
-// change that would be needed to implement the inconsistent handling
-// of this that KJS has (some properties can be shadowed and others
-// can't). This should have low priority.
-// We currently match IE and the plan was to convince KJS to change
-// post-beta, but the bug is here:
-// https://bugs.webkit.org/show_bug.cgi?id=16644 , and it's unclear
-// what the resolution was.
-// window-property-shadowing-name.html has also been affected by
-// r8532 and now fails.
-BUG10279 : LayoutTests/fast/dom/Window/window-property-shadowing-name.html = TIMEOUT FAIL
-BUG10279 : LayoutTests/fast/js/var-declarations-shadowing.html = FAIL
-
-// Implement full JSON support in V8
-BUG14885 : LayoutTests/fast/js/JSON-parse.html = FAIL
-BUG14885 : LayoutTests/fast/js/JSON-stringify.html = FAIL TIMEOUT
-BUG14885 : LayoutTests/fast/js/JSON-parse-reviver.html = FAIL
-BUG14885 : LayoutTests/fast/js/JSON-stringify-replacer.html = FAIL
-
-// User stylesheets not currently supported by chrome.
-// Webkit supports them by doing filesystem operations directly.
-// This is disallowed in a sandboxed renderer. The test fails in
-// test_shell.exe because the necessary filesystem stubs are notImplemented(),
-// and would need to be proxied through the browser
-BUG1042838 : LayoutTests/http/tests/security/local-user-CSS-from-remote.html = FAIL
-
-// Extra space at end of test results. Since this is a crash test, a
-// FAIL here is just as good as running the test normally.
-// FAIL results from an extra newline at the top of the results
-// the checked in results do not include the PASS text.
-// May only need re-baselining?
-BUG1126050 : LayoutTests/http/tests/navigation/changing-frame-hierarchy-in-onload.html = FAIL PASS
-
-// This test has hover effects that change the font size. This test also
-// moves the mouse around, resulting in a layout that dances around.
-// Depending upon when the snapshot is taken we get different results.
-BUG10280 WIN LINUX : LayoutTests/fast/inline/dirtyLinesForInline.html = FAIL PASS
-
-// Need to implement LayoutTestController.setCacheModel
-BUG13920 : LayoutTests/fast/dom/HTMLScriptElement/nested-execution.html = FAIL
-
-// Radial gradients don't have offset focal point
-BUG8696 WIN LINUX : LayoutTests/fast/gradients/generated-gradients.html = FAIL
-BUG8696 WIN LINUX : LayoutTests/fast/gradients/simple-gradients.html = FAIL
-BUG8696 WIN LINUX : LayoutTests/fast/gradients/crash-on-zero-radius.html = FAIL
-
-BUG10385 : LayoutTests/fast/dom/dom-constructors.html = FAIL
-BUG10387 SKIP : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-image-not-loaded-svg.svg = FAIL
-
-BUG10412 WIN LINUX : LayoutTests/fast/table/vertical-align-baseline.html = FAIL
-BUG20505 : LayoutTests/http/tests/misc/SVGFont-delayed-load.html = FAIL
-BUG20507 : LayoutTests/http/tests/uri/resolve-encoding-relative.html = FAIL
-
-BUG10401 : LayoutTests/plugins/npruntime.html = TIMEOUT FAIL
-BUG6735 : LayoutTests/plugins/netscape-throw-exception.html = FAIL
-
-BUG10432 WIN LINUX : LayoutTests/fast/overflow/004.html = FAIL
-BUG10433 : LayoutTests/fast/dom/Window/webkitConvertPoint.html = FAIL
-
-BUG9071 MAC WIN DEBUG SLOW : LayoutTests/editing/selection/drag-to-contenteditable-iframe.html = FAIL PASS
-BUG9071 LINUX : LayoutTests/editing/selection/drag-to-contenteditable-iframe.html = FAIL
-BUG10436 WIN LINUX : LayoutTests/fast/block/float/nested-clearance.html = FAIL
-
-
-// -----------------------------------------------------------------
-// SVG TESTS
-// -----------------------------------------------------------------
-
-// These are regressions from 1.0, but deemed DEFERable for 2.0.
-BUG8635 LINUX WIN : LayoutTests/svg/custom/pattern-y-offset.svg = FAIL
-BUG8635 LINUX WIN : LayoutTests/svg/batik/paints/patternRegions.svg = FAIL
-BUG8635 LINUX WIN : LayoutTests/svg/custom/pattern-cycle-detection.svg = FAIL
-
-// Shows garbage instead of an image
-BUG8635 LINUX WIN : LayoutTests/svg/W3C-SVG-1.1/struct-use-01-t.svg = FAIL
-
-BUG19559 LINUX WIN : LayoutTests/svg/batik/text/textEffect.svg = FAIL
-BUG19559 LINUX WIN : LayoutTests/svg/batik/text/textEffect3.svg = FAIL
-
-BUG8763 LINUX WIN : LayoutTests/svg/custom/use-on-g-containing-foreignObject-and-image.svg = FAIL
-
-// smiley.png should be shown with xml:base and xml:base on parent.
-BUG10281 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-image-07-t.svg = FAIL
-
-// Not showing images when they should be
-BUG10281 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-image-02-b.svg = FAIL
-BUG10281 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-symbol-01-b.svg = FAIL
-
-// Radial gradients with offset focal points are not implemented in Skia.
-// See comment in WebCore/platform/graphics/skia/GradientSkia.cpp
-BUG8696 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-13-b.svg = FAIL
-
-// Merge 39744:39829 - regression
-BUG10284 RELEASE : LayoutTests/svg/custom/path-bad-data.svg = FAIL
-
-// Upstream dumprendertree changes caused the expected to change.
-// Now our baseline is out of date, and we differ from Mac expected on the
-// caret position in the last line of the text output.
-BUG10285 WIN LINUX : LayoutTests/svg/custom/foreignObject-crash-on-hover.xml = FAIL
-
-// Merge 39744:39913? - regressions
-BUG10286 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-02-t.svg = FAIL PASS CRASH
-
-BUG10287 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/coords-units-01-b.svg = FAIL PASS
-
-BUG10288 WIN LINUX : LayoutTests/svg/batik/text/verticalText.svg = FAIL
-
-BUG10289 WIN LINUX : LayoutTests/svg/batik/masking/maskRegions.svg = FAIL
-
-// Bug in Skia, see https://bugs.webkit.org/show_bug.cgi?id=24534 .
-BUG10291 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-06-b.svg = FAIL
-BUG10291 WIN LINUX : LayoutTests/svg/batik/paints/patternRegionA.svg = FAIL
-BUG10291 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-pattern-01-b.svg = FAIL
-
-BUG10415 WIN LINUX : LayoutTests/svg/custom/pattern-with-transformation.svg = FAIL
-
-// -----------------------------------------------------------------
-// End SVG Regressions
-// -----------------------------------------------------------------
-
-// Selection wrong.
-BUG10292 MAC LINUX : LayoutTests/editing/selection/5354455-1.html = FAIL
-
-// Missing scrollbar.
-BUG10294 LINUX : LayoutTests/fast/frames/onlyCommentInIFrame.html = FAIL
-
-// Compact support was removed from WebKit by Hyatt and layout tests rebaselined in r40259.
-
-BUG10295 MAC : LayoutTests/fast/dom/prototype-chain.html = FAIL
-
-// Font differences, requiring overriden metrics, not a real bug, not fixing for Beta
-BUG10296 MAC : LayoutTests/fast/text/international/bidi-menulist.html = FAIL
-BUG10296 LINUX : LayoutTests/fast/transforms/transform-on-inline.html = FAIL
-BUG10296 LINUX : LayoutTests/fast/transforms/transform-table-row.html = FAIL
-BUG10296 LINUX : LayoutTests/svg/batik/paints/patternPreserveAspectRatioA.svg = FAIL
-// Needs to be rebaselined.
-BUG10296 LINUX : LayoutTests/svg/custom/deep-dynamic-updates.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/custom/foreign-object-skew.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-33-t.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/custom/gradient-stroke-width.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/custom/dominant-baseline-hanging.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/batik/text/textLength.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/batik/text/textProperties.svg = FAIL PASS
-BUG10296 LINUX : LayoutTests/svg/custom/gradient-stop-corner-cases.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/custom/pattern-deep-referencing.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/custom/text-dom-01-f.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/hixie/perf/007.xml = FAIL
-BUG10296 LINUX : LayoutTests/svg/hixie/text/003a.xml = FAIL
-BUG10296 LINUX : LayoutTests/svg/hixie/viewbox/preserveAspectRatio/001.xml = FAIL
-BUG10296 LINUX : LayoutTests/svg/hixie/viewbox/preserveAspectRatio/002.xml = FAIL
-BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-36-t.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-40-t.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-41-t.svg = FAIL
-BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-14-b.svg = FAIL
-
-// Pixel test passes. Texts differ by 1 on SVGRenderText bounding box.
-BUG10297 LINUX : LayoutTests/svg/custom/scrolling-embedded-svg-file-image-repaint-problem.html = FAIL
-
-// No anti-aliasing on the text.
-BUG10298 LINUX : LayoutTests/svg/custom/use-on-disallowed-foreign-object-3.svg = FAIL
-
-// Marking this again as failed. This test failed even after rebaseline due to
-// the fact that the font is not specified in the test and it seems that the
-// test falls back on a different font locally than on the buildbot so the
-// baseline is invalid. This might indicate a failure in our font fallback code
-// or might be expected and that we should either go with the buildbot output
-// or change the test upstream to specify explicitly what font to use.
-// The mask part of this test is totally wrong.
-BUG3244 LINUX WIN : LayoutTests/fast/backgrounds/svg-as-background-6.html = FAIL
-
-// The failures listed below have never passed in Chromium and need to be
-// investigated, categorized, and (one hopes) fixed.
-
-// These test fail full text diff (but not simplified diff) most likely due
-// to differing implementations of SVG fonts. They may or may not represent
-// real bugs which need fixin'
-
-// pixeltest failure: font baseline should be on the path, not the centerline
-// There's no baseline at all for this!
-BUG992321 SKIP : LayoutTests/svg/batik/text/smallFonts.svg = FAIL
-
-// pixeltest failure: font baseline should be on the path, not the centerline
-BUG992321 LINUX WIN : LayoutTests/svg/batik/text/verticalTextOnPath.svg = FAIL
-BUG992321 LINUX WIN : LayoutTests/svg/custom/path-textPath-simulation.svg = FAIL
-
-// This test fails because of an oddity in stroke width calculation. A
-// line is stroked horizontally from Y=100 with stroke width 100, we consider
-// it to be occupying the scan lines from Y=50 to Y=149 inclusive, which
-// is a total of 100 lines. Apple expects it to be occupying Y=150 as
-// well. The specification isn't very specific on which behavior is correct,
-// but I feel like ours makes more sense.
-// The crash started occuring after the WebKit merge 43242:43321
-BUG992321 : LayoutTests/svg/custom/stroke-width-click.svg = FAIL CRASH
-
-// The red marker is not drawing the same way as the mac.
-BUG992321 LINUX WIN : LayoutTests/svg/custom/marker-changes.svg = PASS FAIL
-
-BUG992321 LINUX WIN : LayoutTests/svg/hixie/text/003.html = FAIL
-
-// SVG combined with font metrics.
-BUG992321 LINUX : LayoutTests/svg/hixie/text/001-broken.xml = FAIL
-
-// This is an interesting one.
-// The test has an error which causes it to output a message to the console.
-// Apple's expected results include this error. Actually, Apple's expected
-// results include the error twice, because (apparently unique among console
-// debugging messages) it's generated during rendering. The problem is that
-// we end up invoking the renderer twice when we're doing pixel tests, once
-// otherwise, so we get different results depending on whether pixel tests are
-// enabled. (Neither matches Apple's exactly... when we have pixel tests on,
-// the duplicate error message ends up at the end of the file, while Apple's
-// results have them both at the top.) But this test doesn't represent a real
-// failure in any way and nothing needs to be done to fix it. I'm leaving it
-// in tests_fixable in case we change the test shell's webview delegate to
-// ignore console messages while doing a pixel dump
-BUG992321 : LayoutTests/svg/custom/clip-path-referencing-use2.svg = FAIL PASS
-
-// These two tests have a highlight color that is different from the Mac,
-// which is normal because selection color is different between Mac and
-// Windows, but even so it still doesn't look identical because there is still
-// some problem with the fill color for the text.
-BUG10300 WIN LINUX : LayoutTests/svg/text/text-deco-01-b.svg = FAIL
-BUG10300 LINUX : LayoutTests/svg/text/text-text-08-b.svg = FAIL PASS
-
-// SVG masks aren't quite working yet.
-// Might also be related to https://bugs.webkit.org/show_bug.cgi?id=21910
-// New tests. We should fix these, but they don't need to block the current release
-BUG3244 LINUX WIN : LayoutTests/fast/backgrounds/svg-as-mask.html = FAIL
-BUG3244 LINUX WIN : LayoutTests/fast/backgrounds/animated-svg-as-mask.html = FAIL
-
-BUG10302 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-10-b.svg = FAIL
-
-BUG10303 MAC : LayoutTests/svg/css/getComputedStyle-basic.xhtml = FAIL
-BUG10303 LINUX : LayoutTests/svg/custom/pattern-rotate.svg = FAIL
-
-// I find it hard to care too much about SVG failures.
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-04-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-05-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-06-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-07-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-30-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-desc-02-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/interact-zoom-01-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-spacing-01-b.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-text-01-b.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/batik/text/textPosition.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/carto.net/slider.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/carto.net/textbox.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/carto.net/window.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/custom/coords-relative-units-transforms.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/custom/use-referencing-nonexisting-symbol.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/hixie/perf/003.xml = FAIL
-BUG10304 LINUX : LayoutTests/svg/hixie/perf/004.xml = FAIL
-BUG10304 LINUX : LayoutTests/svg/hixie/perf/005.xml = TIMEOUT FAIL
-BUG10304 LINUX : LayoutTests/svg/hixie/perf/006.xml = FAIL
-BUG10304 LINUX : LayoutTests/svg/hixie/text/003b.xml = FAIL
-BUG10304 LINUX : LayoutTests/svg/text/text-spacing-01-b.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/text/text-text-01-b.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-01-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-02-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-03-b.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-04-b.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-05-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-06-t.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-07-b.svg = FAIL
-// Our gradients are wrong here.
-BUG10304 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-08-b.svg = FAIL
-BUG10304 LINUX : LayoutTests/svg/carto.net/button.svg = FAIL
-
-// New tests. We should fix these, but they don't need to block the current release
-BUG10305 WIN LINUX : LayoutTests/svg/custom/use-instanceRoot-as-event-target.xhtml = FAIL
-BUG10305 : LayoutTests/svg/custom/use-instanceRoot-event-listeners.xhtml = FAIL
-
-// Probably need to change the test upstream to describe it better and use no
-// hard coded numbers.
-BUG19897 WIN LINUX : LayoutTests/svg/custom/getscreenctm-in-mixed-content2.xhtml = FAIL
-
-BUG10306 LINUX : LayoutTests/svg/carto.net/combobox.svg = FAIL
-
-// There are a ugly room between black strokes and white painting of characters.
-BUG10307 WIN : LayoutTests/svg/W3C-SVG-1.1/filters-example-01-b.svg = FAIL
-
-// Linux pixeltest failure: slightly different shade of composited
-// alpha in bottom group.
-BUG10310 LINUX : LayoutTests/svg/W3C-SVG-1.1/masking-opacity-01-b.svg = FAIL
-
-// Fixed upstream, see https://bugs.webkit.org/show_bug.cgi?id=21910.
-// However, we need to support focal point for radial gradients.
-BUG8696 LINUX WIN : LayoutTests/fast/backgrounds/svg-as-background-3.html = FAIL
-
-//
-// -----------------------------------------------------------------
-// End of SVG tests
-// -----------------------------------------------------------------
-
-// This fails because of differences between how CG and Skia tests for
-// a point in a path. See
-// http://code.google.com/p/chromium/issues/detail?id=7465 for details.
-BUG10311 WIN LINUX : LayoutTests/fast/canvas/pointInPath.html = FAIL
-
-// These fail the pixel tests in debug mode because they have
-// unpainted space (filled red in Debug but not in Release).
-// https://bugs.webkit.org/show_bug.cgi?id=8423
-BUG1115062 WIN LINUX : LayoutTests/tables/mozilla_expected_failures/bugs/bug178855.xml = FAIL PASS
-
-// Fails on webkit windows as well.
-BUG1166644 WIN LINUX : LayoutTests/fast/events/attempt-scroll-with-no-scrollbars.html = FAIL
-
-// The test may require a proper version of Java 6 RC 10 plugin
-// installed to run.
-BUG10313 : LayoutTests/plugins/bindings-test.html = FAIL
-
-
-// No glyph for U+FFFD (Replacement Character : black diamond with
-// question mark) in them
-BUG10315 WIN LINUX : LayoutTests/fast/encoding/invalid-UTF-8.html = FAIL
-
-// These require application cache to be enabled. Skip the tests because
-// they're all timing out. TODO(tc): Upstream changes to the test so they
-// fail quickly if window.applicationCache is undefined (then we don't have to
-// skip them).
-BUG2844 SKIP : LayoutTests/http/tests/appcache = TIMEOUT FAIL
-
-// V8 failures as a result of the WebKit merge.
-// http://code.google.com/p/v8/issues/detail?id=92
-
-// v8: A setter that is added to a prototype after the inline cache is
-// recorded will not be called.
-BUG1344252 : LayoutTests/fast/js/pic/cached-prototype-setter.html = FAIL
-
-// We have the wrong shadow for "This".
-// It appears we're not obeying the "transparent" fill color.
-BUG10317 LINUX : LayoutTests/fast/css/shadow-multiple.html = FAIL
-
-// Problems with getImageData and toDataURL.
-// We should fix this test, but it wasn't passing for the 1.0 release, so
-// it doesn't need to block the current release
-BUG2972 LINUX WIN : LayoutTests/fast/canvas/canvas-getImageData.html = FAIL
-
-// We're much closer now. To fully pass this we need encoders for jpg
-// and gif, which is a low priority.
-BUG10318 WIN LINUX : LayoutTests/fast/canvas/toDataURL-supportedTypes.html = FAIL
-
-// More tests that fail because of masks not working properly.
-// New tests. We should fix these, but they don't need to block the current release
-BUG10319 WIN LINUX : LayoutTests/fast/backgrounds/mask-composite.html = FAIL
-BUG10319 WIN LINUX : LayoutTests/fast/backgrounds/repeat/mask-negative-offset-repeat.html = FAIL
-BUG10319 WIN LINUX : LayoutTests/fast/borders/block-mask-overlay-image.html = FAIL
-BUG10319 WIN LINUX : LayoutTests/fast/borders/inline-mask-overlay-image.html = FAIL
-
-// This test finishes while in the middle of a CSS animation. This is
-// intentional, but it makes pixel results unreliable.
-// http://bugs.webkit.org/show_bug.cgi?id=21491
-// CSS animations should not block our next release.
-BUG10320 SKIP : LayoutTests/transitions/opacity-transition-zindex.html = PASS
-
-// Issue 3273: TextInputController::firstRectForCharacterRange not implemented
-// http://code.google.com/p/chromium/issues/detail?id=3273
-BUG10321 : LayoutTests/editing/selection/move-left-right.html = FAIL
-BUG10321 MAC : LayoutTests/platform/mac/editing/input/caret-primary-bidi.html = FAIL
-BUG10321 MAC : LayoutTests/platform/mac/editing/input/firstrectforcharacterrange-plain.html = FAIL
-BUG10321 MAC : LayoutTests/platform/mac/editing/input/range-for-empty-document.html = FAIL
-
-// Regression from the 41362:41402 merge.
-BUG8402 MAC : LayoutTests/fast/forms/drag-out-of-textarea.html = FAIL PASS
-
-// This test fails because (in Chromium) it includes the full path to the
-// subframe URL. Need to teach dumpResourceLoadCallbacks() about relative
-// URLs.
-BUG8407 : LayoutTests/fast/loader/main-document-url-for-non-http-loads.html = FAIL
-
-// These tests are flaky as of 2009/06/09. Need to investigate.
-
-// <body><canvas height=100></canvas></body> is 1 px taller than upstream.
-BUG13809 WIN LINUX : LayoutTests/fast/canvas/canvas-empty-image-pattern.html = FAIL
-
-// We don't draw the spelling markers at all in test shell.
-BUG11577 WIN LINUX : LayoutTests/editing/spelling/inline_spelling_markers.html = FAIL
-BUG11577 LINUX : LayoutTests/editing/spelling/spellcheck-attribute.html = FAIL
-BUG11577 WIN LINUX : LayoutTests/editing/spelling/spelling-linebreak.html = FAIL
-
-// ----------------------------------------------------------------------------
-// NEW FOR THE MERGE
-//
-// These tests need to have their output inspected to make sure it's reasonable
-// and then baselined if necessary.
-// ----------------------------------------------------------------------------
-
-// Accessibility is off in the browser, and accessibility is not a priority
-// for the current release.
-// Need to implement window.accessibilityController for these to work.
-BUG10322 : LayoutTests/accessibility = FAIL PASS
-BUG10322 : LayoutTests/accessibility/non-native-image-crash.html = PASS
-BUG10322 : LayoutTests/accessibility/input-slider.html = TIMEOUT CRASH
-BUG10322 : LayoutTests/platform/mac/accessibility = FAIL
-BUG10322 : LayoutTests/platform/mac-snowleopard/accessibility = FAIL
-BUG10322 : LayoutTests/platform/win/accessibility = FAIL
-
-// Border radius not anti-aliased.
-// New test. We should fix it, but it doesn't need to block the current release
-BUG10322 WIN : LayoutTests/fast/borders/fieldsetBorderRadius.html = FAIL
-
-// This test isn't hanging, it just takes 12-13 seconds to run.
-BUG10322 SLOW : LayoutTests/http/tests/misc/acid3.html = FAIL
-
-// Has failed for Chromium since it was first checked in.
-BUG10323 : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-no-content-length-onProgress.html = FAIL
-
-// Times out because this uses dom storage which we don't implement.
-BUG4360 SKIP : LayoutTests/security/autocomplete-cleared-on-back.html = TIMEOUT
-
-// Post-MERGE failures: these will all need to be fixed one day
-
-// Linux pixeltest failure: caret is in the wrong place
-// Upstream WebKit also skips this test and Safari with latest WebKit shows
-// same behavior as Chromium. Not required for beta so marking as deferred.
-BUG10324 WIN LINUX : LayoutTests/editing/selection/caret-rtl-2.html = FAIL
-
-// This test assumes we're using unix paths and looks for a file:///test
-// path. We correctly return file:///C:/test on Windows. We should fix
-// upstream
-// Expectations for this test changed upstream. We should fix this test, but
-// it doesn't need to block the current release
-BUG10325 WIN : LayoutTests/fast/dom/resource-locations-in-created-html-document.html = FAIL
-
-BUG10326 DEBUG : LayoutTests/http/tests/messaging/cross-domain-message-event-dispatch.html = TIMEOUT FAIL PASS
-
-// GURL/KURL difference in handling of "http:".
-// New test. We should fix it, but it doesn't need to block the current release
-BUG7386 : LayoutTests/http/tests/security/postMessage/invalid-origin-throws-exception.html = FAIL
-
-// Linux pixeltest failure: Font mismatch
-BUG10327 LINUX : LayoutTests/tables/mozilla_expected_failures/bugs/bug14007-2.html = FAIL
-
-// On Linux, we don't seem to be getting Helvetica Bold for all cases.
-BUG10328 LINUX : LayoutTests/fast/css/font-face-multiple-faces.html = FAIL
-
-// Got flakey (both debug and release) around r3581 (ananta).
-// New test. We should fix it, but it doesn't need to block the current release
-BUG10329 WIN : LayoutTests/http/tests/plugins/geturlnotify-from-npp-destroystream.html = FAIL PASS
-
-// Uses ahem font and expects line heights to match some pixel value.
-// We should be able to pass this -- not sure what's wrong.
-BUG10331 LINUX : LayoutTests/css2.1/t1008-c44-ln-box-02-d-ag.html = FAIL
-
-// Looks like we're failing the test -- there are red boogers in the box that should be all green.
-BUG10332 LINUX : LayoutTests/css2.1/t1605-c545-txttrans-00-b-ag.html = FAIL
-
-// Linux: color off by one. Rounding error?
-BUG10333 LINUX : LayoutTests/editing/deleting/deletionUI-single-instance.html = FAIL
-
-BUG10334 MAC : LayoutTests/editing/selection/select-from-textfield-outwards.html = FAIL
-
-// Asks for "system" fonts, which we don't support at all.
-BUG10335 LINUX : LayoutTests/fast/css/css2-system-fonts.html = FAIL
-
-// Large fonts have different metrics.
-BUG10336 LINUX : LayoutTests/fast/css/font-face-descriptor-multiple-values.html = FAIL
-
-// Wants Helvetica, Monaco. It's still testing something useful, but we may
-// need to check in a wrong-looking baseline. Windows looks wrong too.
-BUG10337 LINUX : LayoutTests/fast/css/font-face-locally-installed.html = FAIL
-
-// Font metrics wrong, despite using Lucida Grande?
-BUG10338 LINUX : LayoutTests/fast/events/updateLayoutForHitTest.html = FAIL
-
-// Layout totally different -- wrong font selected?
-BUG10340 LINUX : LayoutTests/fast/frames/viewsource-attribute.html = FAIL
-
-// Linux flaky: sometimes I get scrollbars and sometimes not.
-BUG10341 LINUX : LayoutTests/fast/lists/001.html = FAIL PASS
-
-// We fail to load a file URL with a port number -- how does this work on
-// Windows?
-BUG10342 MAC LINUX : LayoutTests/fast/loader/file-URL-with-port-number.html = FAIL
-
-// Text doesn't display at all -- maybe we don't have the slow font
-// code enabled?
-BUG10343 LINUX : LayoutTests/fast/text/atsui-kerning-and-ligatures.html = FAIL
-BUG10343 LINUX : LayoutTests/fast/text/atsui-partial-selection.html = FAIL
-BUG10343 LINUX : LayoutTests/fast/text/atsui-small-caps-punctuation-size.html = FAIL
-BUG10343 LINUX : LayoutTests/fast/text/cg-vs-atsui.html = FAIL
-
-// Started timing out with agl's complext text change. Page is verrry slow.
-BUG10343 LINUX : LayoutTests/fast/text/large-text-composed-char.html = TIMEOUT FAIL
-
-// Missing text -- slow font path unimplemented?
-BUG10344 LINUX : LayoutTests/fast/text/should-use-atsui.html = FAIL
-
-// We print to stderr when a failure happens while importing XSL;
-// should disable this in libxml.
-BUG10347 MAC LINUX : LayoutTests/fast/xsl/transform-xhr-doc.xhtml = FAIL
-
-// Linux pixeltest failure: Failing to apply style
-BUG10349 LINUX : LayoutTests/fast/forms/select-style.html = FAIL
-
-// Linux pixeltest failure: The text suggests that the radios should not
-// overlap, but it's very close and quite different from the Windows version
-BUG10350 LINUX : LayoutTests/fast/replaced/width100percent-radio.html = FAIL
-
-// Linux pixel tests: the select arrow is clipping wrong on one line.
-BUG10666 LINUX : chrome/fast/forms/basic-selects.html = FAIL
-
-// These tests are marked as failing on Linux because they depend on QuickTime.
-// See the bug for more discussion.
-BUG15797 LINUX : LayoutTests/fast/dom/object-embed-plugin-scripting.html = FAIL
-BUG15797 LINUX : LayoutTests/plugins/embed-attributes-setting.html = FAIL
-
-// Depends on plugin support.
-BUG10351 MAC : LayoutTests/accessibility/plugin.html = FAIL
-BUG10351 MAC : LayoutTests/fast/dom/object-embed-plugin-scripting.html = FAIL
-
-BUG10351 MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug8499.html = FAIL
-BUG10673 MAC : chrome/plugins/call-as-function.html = FAIL
-BUG10351 MAC : LayoutTests/http/tests/plugins/cross-frame-object-access.html = FAIL
-// Skip because we throw an exception before we get to dumpAsText.
-BUG10351 SKIP MAC : LayoutTests/http/tests/plugins/geturlnotify-from-npp-destroystream.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/embed-attributes-setting.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/embed-inside-object.html = TIMEOUT
-BUG10351 MAC : LayoutTests/plugins/get-empty-url.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/get-url-that-the-resource-load-delegate-will-disallow.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/getintidentifier-special-values.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/geturl-replace-query.html = TIMEOUT
-BUG10351 MAC : LayoutTests/plugins/inner-html-display-none.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/invoke.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/mouse-events.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/netscape-destroy-plugin-script-objects.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/netscape-dom-access.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/netscape-get-property-return-value.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/netscape-identifier-conversion.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/netscape-invoke-default.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/plugin-remove-subframe.html = FAIL
-BUG10351 MAC : LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html = TIMEOUT
-BUG10351 MAC : LayoutTests/plugins/netscape-plugin-map-data-to-src.html = FAIL
-BUG10667 MAC : chrome/plugins/get-file-url.html = TIMEOUT
-// Skip because we throw an exception before we get to dumpAsText.
-BUG10667 SKIP MAC : chrome/plugins/get-url-with-blank-target.html = FAIL
-BUG10667 MAC : chrome/plugins/multiple-plugins.html = FAIL
-BUG10667 MAC : chrome/plugins/nested-plugin-objects.html = FAIL
-BUG10667 MAC : chrome/plugins/refcount-leaks.html = FAIL
-BUG10667 MAC : chrome/plugins/return-npobject.html = FAIL
-BUG10667 MAC : chrome/plugins/script-object-invoke.html = FAIL
-BUG10667 MAC : pending/plugins/iframe-shims.html = FAIL
-
-// NEW FOR MERGE 36102:37604
-
-// New test. We should fix it, but it doesn't need to block the current release
-BUG10352 : LayoutTests/fast/js/arguments.html = FAIL
-// New test. We should fix it, but it doesn't need to block the current release
-BUG10352 : LayoutTests/fast/js/primitive-method-this.html = FAIL
-// See bug http://code.google.com/p/chromium/issues/detail?id=7868,
-// not urgent for current release.
-BUG10352 : LayoutTests/http/tests/plugins/local-geturl-from-remote.html = FAIL
-// These two depend on which webkit features are enabled. For instance, it checks
-// if the Audio constructor is available which is only the case if AUDIO is enabled.
-BUG10352 : LayoutTests/fast/dom/constructors-cached-navigate.html = FAIL
-
-// MERGE REGRESSIONS 36102:37604
-
-BUG10353 LINUX : LayoutTests/fast/events/mouse-click-events.html = FAIL
-// These tests are wrong because of:
-// https://bugs.webkit.org/show_bug.cgi?id=24161. This is not
-// important for current release.
-BUG10353 WIN LINUX : LayoutTests/fast/forms/listbox-deselect-scroll.html = FAIL
-BUG10353 WIN LINUX : LayoutTests/fast/forms/listbox-selection-2.html = FAIL
-BUG10353 WIN LINUX : LayoutTests/fast/forms/select-item-background-clip.html = FAIL
-BUG10353 WIN LINUX : LayoutTests/fast/forms/textarea-rows-cols.html = FAIL
-
-// Form control scrollbars seem to be drawn incorrectly.
-BUG10353 LINUX : LayoutTests/fast/replaced/width100percent-textarea.html = FAIL
-BUG10668 : chrome/fast/dom/xss-DENIED-javascript-variations.html = FAIL
-// This test sometimes fails indefinitely, other times it takes 1-2 seconds.
-BUG14009 WIN MAC LINUX : LayoutTests/http/tests/misc/dns-prefetch-control.html = TIMEOUT PASS FAIL
-
-// NEW FOR MERGE 37604:38097
-// This is a Safari specific test used to document the set of global
-// constructors they expose and the exact way they are printed. Not
-// important - we might even want to ignore it.
-// New tests. We should fix these, but they doesn't need to block the current
-// release
-BUG10354 WIN LINUX : LayoutTests/fast/layers/opacity-transforms.html = FAIL
-BUG10354 MAC : LayoutTests/plugins/netscape-construct.html = FAIL
-
-// MERGE 38389:38450
-// WebKit regression: https://bugs.webkit.org/show_bug.cgi?id=20342
-// Fails upstream, deferring for now.
-BUG10357 : LayoutTests/fast/dom/cssTarget-crash.html = TIMEOUT CRASH
-
-// MERGE 38500:39550: New tests
-// Missing expected results
-BUG10358 SKIP MAC LINUX : LayoutTests/animations/animation-drt-api.html = PASS
-
-// MERGE 38625:38653: Expectations changed upstream
-BUG10359 MAC : LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer.html = FAIL
-
-// MERGE 38625:38653: New tests
-BUG10360 MAC : LayoutTests/fast/css/getComputedStyle/computed-style.html = FAIL
-
-
-// MERGE 38653:38729: New tests
-
-// New test. We should fix it, but it doesn't need to block the current release
-BUG10361 : LayoutTests/http/tests/misc/single-character-pi-stylesheet.xhtml = FAIL
-
-// Windows is missing the green box.
-BUG8729 WIN : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL
-
-// -----------------------------------------------------------------
-// MAC PORT TESTS
-// -----------------------------------------------------------------
-
-//
-// *** TESTS TO WORK ON FIRST ***
-// These tests fail because of work that needs to be done in Mac TestShell to
-// bring it up to par with Win TestShell. These tests pass on Win and should
-// pass on Mac once we fix the bugs.
-//
-
-// We've bucketed tests into groupings for why they're failing. Please try
-// to add new failures in the appropriate bucket.
-
-// text fields wrong width
-BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug53690-1.html = FAIL
-BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug9024.html = FAIL
-BUG10670 MAC : chrome/fast/forms/basic-buttons.html = FAIL
-BUG10670 MAC : chrome/fast/forms/basic-inputs.html = FAIL
-BUG10670 MAC : chrome/fast/forms/basic-selects.html = FAIL
-
-// we're waiting on upstreaming a change to how textarea padding works. rather
-// than rebasing, we'll wait for the upstream (which ojan said should happen
-// early in Jan 09).
-BUG10364 MAC : LayoutTests/fast/css/resize-corner-tracking.html = FAIL
-BUG10364 MAC : LayoutTests/http/tests/navigation/reload-subframe-object.html = TIMEOUT FAIL
-
-// bad key event handling
-BUG10366 MAC : LayoutTests/fast/events/option-tab.html = FAIL
-
-// event failures
-BUG10367 MAC : LayoutTests/fast/events/attempt-scroll-with-no-scrollbars.html = CRASH FAIL
-
-// selection
-BUG10369 MAC : LayoutTests/editing/selection/5109817.html = FAIL
-BUG10369 LINUX : LayoutTests/editing/selection/5354455-2.html = FAIL
-
-// incorrect layout
-BUG10370 MAC : LayoutTests/fast/css/font-weight-1.html = FAIL
-
-// not loading local files
-BUG10371 SLOW MAC : LayoutTests/fast/loader/local-CSS-from-local.html = FAIL
-BUG10371 MAC : LayoutTests/fast/loader/local-JavaScript-from-local.html = FAIL TIMEOUT
-BUG10371 MAC : LayoutTests/fast/loader/local-image-from-local.html = FAIL
-
-// Error from CGImageSourceUpdateData but everything else is correct.
-BUG10373 MAC : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL
-
-// window.open crashes (some of these are flaky, in that they don't always
-// crash, and are noted as such)
-BUG10374 MAC : LayoutTests/plugins/open-and-close-window-with-plugin.html = CRASH TIMEOUT FAIL
-
-// Not really sure why these are failing at the moment
-BUG10376 MAC : LayoutTests/fast/dom/isindex-002.html = FAIL
-BUG10376 MAC : LayoutTests/fast/events/init-events.html = FAIL
-
-// These two have a different object type in the dom dump. Plugin-related.
-// Ignored on Win/Linux because they rely on QT to provide a TIFF decoder.
-BUG10378 MAC : LayoutTests/fast/images/embed-image.html = FAIL CRASH
-BUG10378 MAC : LayoutTests/fast/images/object-image.html = FAIL CRASH
-
-BUG10381 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-03-t.svg = FAIL PASS
-
-// These may be similar timing issue as above.
-BUG10382 MAC RELEASE : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
-BUG10382 MAC : LayoutTests/transitions/shorthand-border-transitions.html = FAIL PASS
-
-// The following are flaky in that some times the timeout or crash, but we think
-// it is because of bugs in other parts of the code and not specific to what
-// these tests are doing. The are being noted here so we can get the buildbots
-// green so new mac regressions are caught much quicker.
-// (there are a few others marked w/ multiple status like this in other parts of
-// the file, but they were left there as the comments in those areas are valid.)
-BUG10384 MAC : LayoutTests/fast/dom/Window/new-window-opener.html = CRASH TIMEOUT FAIL
-BUG10384 MAC : LayoutTests/fast/forms/focus2.html = CRASH FAIL
-
-BUG10384 MAC : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = TIMEOUT FAIL PASS
-
-BUG10399 MAC : LayoutTests/fast/encoding/char-encoding-mac.html = FAIL
-
-// -----------------------------------------------------------------
-// END MAC PORT TESTS
-// -----------------------------------------------------------------
-
-// Linux pixeltest failure: alpha=0.5 red (1,0,0) atop yellow (1,1,0) is
-// coming out with with a slightly-less-than-100% red channel. This test fails
-// because we enforce non-transparent color in Font::drawGlyphs.
-BUG700464 LINUX : LayoutTests/fast/css/hsla-color.html = FAIL
-
-// Implement layoutTestController.testRepaint()
-BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-horizontal.html = FAIL
-BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-strict-horizontal.html = FAIL
-BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-strict-vertical.html = FAIL
-BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-vertical.html = FAIL
-BUG21510 WIN LINUX : LayoutTests/fast/repaint/text-shadow-horizontal.html = FAIL
-BUG21510 WIN LINUX : LayoutTests/fast/repaint/text-shadow.html = FAIL
-
-// Implement layoutTestController.display()
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/body-background-image.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/clip-with-layout-delta.html = FAIL
-
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-1.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-2.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-6.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-8.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-9.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-overflow.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/make-children-non-inline.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/overflow-outline-repaint.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/repaint/selected-replaced.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/canvas/canvas-incremental-repaint-2.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/canvas/canvas-incremental-repaint.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/backgrounds/solid-color-context-restore.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/dynamic/containing-block-change.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/forms/hidden-listbox.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/forms/listbox-clip.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/overflow/hidden-scrollbar-resize.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/reflections/inline-crash.html = FAIL
-BUG8630 WIN LINUX : LayoutTests/fast/text/font-initial.html = FAIL
-BUG8630 WIN LINUX : pending/fast/repaint/bugzilla-6473.html = FAIL
-
-BUG8630 LINUX : LayoutTests/svg/custom/use-detach.svg = FAIL PASS
-
-BUG18772 LINUX : LayoutTests/fast/backgrounds/001.html = CRASH FAIL PASS
-
-// Linux checksum computation produces results, different from Windows or upstream.
-BUG21386 LINUX : LayoutTests/fast/repaint/erase-overflow.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/inline-block-resize.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/inline-overflow.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/invisible-objects.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/layer-full-repaint.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/layer-hide-when-needs-layout.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/layer-visibility.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/overflow-clip-subtree-layout.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/subtree-root-clip-2.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/subtree-root-clip-3.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/subtree-root-clip.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/table-col-background.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/table-row.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/repaint/table-section-overflow.html = FAIL
-BUG21386 LINUX : LayoutTests/fast/layers/layer-content-visibility-change.html = FAIL
-
-// Linux pixeltest failure: Failing to rotate the form control
-BUG10390 LINUX : LayoutTests/fast/transforms/transformed-focused-text-input.html = FAIL
-
-// TODO(tc): flaky.
-BUG10391 LINUX : LayoutTests/fast/events/5056619.html = FAIL PASS
-
-// Failed with r6844 (dglazkov)
-BUG10392 MAC LINUX : LayoutTests/http/tests/navigation/error404-goback.html = TIMEOUT FAIL
-
-// This test appears to pass on Linux, despite it referencing feed:// URLs which
-// we don't support. Needs more investigation.
-// Expectations for this test changed upstream. We should fix this test, but
-// it doesn't need to block the current release
-BUG10393 : LayoutTests/http/tests/security/feed-urls-from-remote.html = FAIL PASS
-
-// Skipped as this tests window.sessionStorage, which we don't
-// support. Enable once we turn on DOM_STORAGE.
-BUG4360 SKIP : LayoutTests/http/tests/navigation/post-goback-repost-policy.html = TIMEOUT
-
-// Probably just needs to be rebaselined. We generate the png before the
-// image in the iframe loads so its dimensions are 0x0.
-// TODO(tc): Failing on buildbots
-BUG10394 WIN LINUX : LayoutTests/fast/events/standalone-image-drag-to-editable.html = FAIL
-
-// Merge 39309:39335 Regressions (RenderButton::setupInnerStyle regression).
-BUG5737 LINUX : LayoutTests/fast/box-sizing/percentage-height.html = FAIL
-BUG5737 LINUX : LayoutTests/fast/forms/001.html = FAIL
-BUG5737 LINUX : LayoutTests/fast/forms/input-first-letter.html = FAIL
-
-// The (x) in type=search inputs appears to be slightly broken. This test will also need a rebaseline.
-BUG20439 WIN LINUX : LayoutTests/fast/forms/search-transformed.html = FAIL
-
-// Linux's rotated text output looks terrible.
-BUG10397 LINUX : LayoutTests/fast/transforms/transformed-document-element.html = FAIL
-
-// Merge 39744:39913? - regressions
-BUG10403 LINUX : LayoutTests/http/tests/misc/uncacheable-script-repeated.html = TIMEOUT PASS
-BUG10403 LINUX : LayoutTests/svg/custom/animate-path-morphing.svg = FAIL PASS
-BUG10403 LINUX : LayoutTests/svg/custom/circular-marker-reference-1.svg = FAIL PASS
-BUG10403 LINUX : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
-
-// might need to be rebaselined in win, 'DRAFT' rendering incorrect before
-BUG10405 WIN : LayoutTests/svg/custom/struct-use-09-b.svg = FAIL
-
-// Popup-menu doesn't draw in layout tests
-BUG10408 MAC : LayoutTests/fast/forms/menulist-no-overflow.html = FAIL
-
-// Pass locally but fail on the bots.
-BUG10409 MAC : LayoutTests/fast/forms/002.html = FAIL
-BUG10409 MAC LINUX : LayoutTests/svg/custom/clip-path-units-changes.svg = FAIL
-
-// intermittent failures on the buildbot
-BUG10411 : LayoutTests/svg/custom/gradient-stop-style-change.svg = FAIL PASS
-
-// New tests added in http://trac.webkit.org/changeset/40424
-// Renders the width of "600" off by 3. Looks OK but could still be a bug
-// that we shouldn't rebaseline.
-BUG10417 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-fonts-02-t.svg = FAIL
-BUG10417 LINUX : LayoutTests/svg/text/text-fonts-02-t.svg = FAIL
-
-// New test. We should fix it, but it doesn't need to block the current release
-BUG10418 WIN LINUX : LayoutTests/transitions/zero-duration-with-non-zero-delay-end.html = FAIL PASS
-BUG10418 SLOW MAC : LayoutTests/fast/events/click-count.html = PASS
-BUG10418 WIN LINUX : LayoutTests/animations/change-keyframes.html = FAIL PASS
-
-// TODO(dsh): These started to fail after r9202.
-BUG10419 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-path-01-b.svg = FAIL
-BUG10419 LINUX : LayoutTests/svg/text/text-path-01-b.svg = FAIL
-
-// We could fix this test for us and upstream it if the test shell user agent
-// would let us differentiate test_shell and WebKit DumpTreeNode.
-BUG7482 : LayoutTests/http/tests/misc/timer-vs-loading.html = FAIL PASS TIMEOUT
-
-// Regressions from WebKit merge 40722:40785
-//
-// These ones look to just need fresh pixel baselines (likely caused by
-// transformation matrices now using doubles instead of floats):
-BUG10420 LINUX : LayoutTests/fast/transforms/matrix-02.html = FAIL
-// Misc failures:
-// New test. We should fix it, but it doesn't need to block the current release
-BUG10420 LINUX : LayoutTests/svg/W3C-SVG-1.1/types-basicDOM-01-b.svg = FAIL
-BUG10420 LINUX : LayoutTests/svg/custom/use-transform.svg = FAIL
-
-// Regressions from WebKit merge to 40864
-// Likely just needs a rebaseline.
-BUG10421 LINUX : LayoutTests/fast/block/positioning/001.html = FAIL PASS
-
-// Regressions from WebKit merge 40847-40875
-BUG10423 LINUX : LayoutTests/fast/box-shadow/basic-shadows.html = FAIL
-
-// Regressions from WebKit merge 40875:41017
-BUG10426 LINUX : LayoutTests/fast/css-generated-content/beforeAfter-interdocument.html = FAIL
-// Selection highlight colors are wrong.
-BUG10426 LINUX : LayoutTests/fast/lists/drag-into-marker.html = FAIL
-
-// Flaky since the merge 41017:41057.
-BUG10428 WIN LINUX : LayoutTests/fast/canvas/fillrect_gradient.html = FAIL PASS
-
-// It's not clear that the test isn't wrong here. It believes that middle
-// aligning 15px Ahem should end up in a certain spot. But we have the
-// x-height correct and we're still one px off.
-BUG10429 LINUX : LayoutTests/css2.1/t100801-c544-valgn-01-d-ag.html = FAIL
-
-// New failures from Merge 41078:41149
-BUG10430 LINUX : LayoutTests/fast/text/atsui-spacing-features.html = FAIL
-BUG10430 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-intro-05-t.svg = FAIL
-BUG10430 LINUX : LayoutTests/svg/text/text-fonts-01-t.svg = FAIL
-BUG10430 LINUX : LayoutTests/svg/text/text-intro-05-t.svg = FAIL
-
-// New tests from merge 41181:41217
-
-// Regressions from merge 41217:41268
-// Other failures
-BUG10434 LINUX : LayoutTests/css1/text_properties/vertical_align.html = FAIL
-// SVG Mask-related tests. Most likely result of http://trac.webkit.org/changeset/41266.
-BUG10434 LINUX : LayoutTests/svg/W3C-SVG-1.1/masking-intro-01-f.svg = FAIL
-
-// Regression from merge 41268:41286
-// We don't render linear gradient on text stroke.
-BUG10435 LINUX : LayoutTests/fast/canvas/canvas-text-alignment.html = FAIL
-BUG10435 MAC : LayoutTests/editing/pasteboard/copy-standalone-image.html = FAIL
-// See above comment about this test on linux/win.
-BUG10435 MAC : LayoutTests/editing/selection/designmode-no-caret.html = FAIL
-BUG10435 DEBUG WIN : LayoutTests/editing/selection/move-by-line-001.html = FAIL PASS
-
-// New tests added in the 41420:41447 merge that fail (just needs a new baseline):
-BUG10437 LINUX : LayoutTests/fast/css-generated-content/hit-test-generated-content.html = FAIL
-
-// From webkit merge 41447:41498
-BUG10438 MAC : LayoutTests/plugins/netscape-plugin-setwindow-size-2.html = FAIL
-BUG10438 MAC : LayoutTests/plugins/netscape-plugin-setwindow-size.html = FAIL
-BUG10438 MAC : LayoutTests/plugins/destroy-stream-twice.html = TIMEOUT
-
-// Flakey. Not clear when it started, but it was before 3/9/09.
-// This test also started failing with the merge of March 25th 2009
-BUG10441 LINUX : LayoutTests/fast/clip/outline-overflowClip.html = FAIL PASS
-BUG10441 LINUX DEBUG : LayoutTests/transitions/transition-end-event-transform.html = FAIL PASS
-
-// Timing out starting 03/10/09
-BUG10442 MAC : LayoutTests/fast/dom/navigator-detached-no-crash.html = TIMEOUT PASS FAIL
-
-// The text extends outside the selection on linux (was happening before the
-// merge).
-BUG10446 LINUX : LayoutTests/editing/execCommand/selectAll.html = FAIL
-
-// Regressions from merge 41559:41588, probably just needs rebaselining.
-BUG10675 MAC : chrome/fast/forms/basic-textareas-quirks.html = FAIL
-BUG10675 MAC : chrome/fast/forms/basic-textareas.html = FAIL
-
-// Started failing 3/12/09. Unclear which CL caused it though.
-BUG10448 MAC : LayoutTests/fast/overflow/image-selection-highlight.html = FAIL
-
-// Newly added tests with merge 41588:41613.
-// They pass on windows given a new baseline and likely only need to be given
-// platform specific baselines for Linux and Mac.
-BUG10450 LINUX : LayoutTests/fast/css/percent-top-value-with-relative-position.html = FAIL
-
-// Newly added test from 41613:41660 -- relies on ScriptCallStack::state() -- dglazkov should fix.
-BUG9156 MAC LINUX WIN : LayoutTests/fast/js/console-non-string-values.html = FAIL
-
-// New failures from 41660:41709
-// Newly added tests.
-BUG9161 MAC LINUX WIN : LayoutTests/fast/forms/basic-textareas.html = FAIL
-BUG20894 : LayoutTests/http/tests/xmlhttprequest/access-control-basic-whitelist-request-headers.html = FAIL
-
-// Tests that fail in debug mode on linux
-BUG10454 DEBUG LINUX : LayoutTests/svg/custom/mask-excessive-malloc.svg = CRASH
-
-// This test hits a stack-overflow exception earlier in debug mode than in
-// release mode on Windows.
-//
-// Hits the stack overflow earlier than before the new compiler in both
-// release and debug mode on Linux and Mac.
-//
-// http://code.google.com/p/v8/issues/detail?id=277
-BUG10457 MAC : LayoutTests/fast/js/large-expressions.html = FAIL
-BUG10457 DEBUG WIN : LayoutTests/fast/js/large-expressions.html = FAIL
-
-
-// Merge 41768:41807
-// Perhaps just needs new baseline?
-// These tests were rebaselined with failure long ago. We shouldn't do this, and
-// instead work upstream to improve tests so that they don't fail.
-// Linux-only failures
-BUG10458 LINUX : LayoutTests/editing/inserting/6633727.html = FAIL
-BUG10458 LINUX : LayoutTests/fast/block/float/overlapping-floats-with-overflow-hidden.html = FAIL
-BUG10458 MAC LINUX : LayoutTests/fast/dom/java-applet-calls.html = FAIL
-// Just need rebaseline
-BUG10458 LINUX : LayoutTests/fast/forms/textarea-width.html = FAIL
-BUG10458 LINUX : LayoutTests/fast/parser/comment-in-textarea.html = FAIL
-
-// Missing expected results
-BUG10461 SKIP : LayoutTests/platform/mac/fast/text/international/Geeza-Pro-vertical-metrics-adjustment.html = PASS
-
-// New failures from merge
-BUG10463 WIN LINUX : LayoutTests/editing/selection/hit-test-anonymous.html = FAIL
-BUG10463 WIN LINUX : LayoutTests/fast/forms/listbox-hit-test-zoomed.html = FAIL
-BUG10463 WIN LINUX : LayoutTests/fast/forms/slider-zoomed.html = FAIL
-
-// New tests, need Chromium baseline.
-BUG10465 LINUX : LayoutTests/fast/borders/border-image-border-radius.html = FAIL
-BUG10465 LINUX : LayoutTests/fast/clip/overflow-border-radius-clip.html = FAIL
-
-// Needs rebaseline. See WebKit 41948
-BUG10468 MAC : LayoutTests/fast/replaced/border-radius-clip.html = FAIL
-BUG10468 WIN DEBUG : LayoutTests/fast/replaced/border-radius-clip.html = FAIL
-
-// Mac flaky failures.
-BUG10472 MAC : LayoutTests/svg/css/glyph-orientation-rounding-test.xhtml = FAIL PASS
-
-// <input type="search">; various failures, some tests may simply need new
-// baselines, others have more problems.
-BUG10473 LINUX : LayoutTests/fast/forms/placeholder-pseudo-style.html = FAIL
-BUG10473 LINUX : LayoutTests/fast/forms/placeholder-set-value.html = FAIL
-BUG10473 LINUX : LayoutTests/fast/forms/search-display-none-cancel-button.html = FAIL
-BUG10473 LINUX : LayoutTests/fast/forms/search-placeholder-value-changed.html = FAIL
-BUG10473 LINUX : LayoutTests/fast/forms/searchfield-heights.html = FAIL
-BUG10473 LINUX : LayoutTests/fast/replaced/width100percent-searchfield.html = FAIL
-
-// Changed in http://trac.webkit.org/changeset/42082
-BUG9704 : LayoutTests/http/tests/navigation/onload-navigation-iframe-timeout.html = TIMEOUT
-BUG9704 : LayoutTests/http/tests/navigation/onload-navigation-iframe.html = TIMEOUT
-BUG10477 : LayoutTests/http/tests/navigation/onload-navigation-iframe-2.html = TIMEOUT
-
-// Merge WebKit: 42026:42115 new tests
-BUG10475 WIN LINUX : LayoutTests/fast/block/positioning/negative-rel-position.html = FAIL
-// This test isn't just slow -- sometimes it times out indefinitely.
-BUG10475 WIN : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html = TIMEOUT PASS
-BUG10475 MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html = TIMEOUT PASS
-BUG10475 WIN LINUX : LayoutTests/fast/forms/range-thumb-height-percentage.html = FAIL
-
-SKIP BUG9613 : LayoutTests/fast/dom/clientWidthAfterDocumentIsRemoved.html = PASS
-
-BUG10476 WIN RELEASE: LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-post.html = FAIL PASS
-
-// Merge WebKit 42133:42199 regressions
-BUG10477 LINUX : LayoutTests/fast/events/context-no-deselect.html = FAIL
-// All platforms fail because Chrome allows XHR to local directories and Safari doesn't.
-// Mac also has unimplemented test shell features.
-BUG20450 LINUX WIN : LayoutTests/fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html = FAIL
-BUG20458 MAC : LayoutTests/fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html = FAIL
-// Flaky since rev 13111.
-BUG10478 MAC : LayoutTests/fast/events/standalone-image-drag-to-editable.html = FAIL PASS
-
-// These tests were affected by rolling out WebKit i8n patches.
-// Was only WIN, also fail on LINUX since merge 43346:43361
-BUG9768 LINUX WIN : LayoutTests/fast/forms/select-initial-position.html = FAIL
-// Was only WIN, also fail on LINUX since merge 43346:43361
-BUG9768 LINUX WIN : LayoutTests/fast/forms/select-visual-hebrew.html = FAIL
-// Was only WIN, also fail on LINUX since merge 43346:43361
-BUG9768 LINUX WIN : LayoutTests/fast/forms/visual-hebrew-text-field.html = FAIL
-// Linux looks ok, rebaselined.
-BUG9768 WIN : LayoutTests/fast/text/cg-fallback-bolding.html = FAIL
-BUG9768 WIN : LayoutTests/fast/text/international/001.html = FAIL
-BUG9768 WIN : LayoutTests/fast/text/international/002.html = FAIL
-BUG9768 WIN : LayoutTests/fast/text/international/003.html = FAIL
-BUG9768 WIN : LayoutTests/fast/text/international/wrap-CJK-001.html = FAIL
-
-// Merge WebKit 42200:42244 regressions
-BUG9786 : LayoutTests/fast/dom/Window/dom-access-from-closure-iframe.html = FAIL
-BUG9786 : LayoutTests/fast/dom/Window/dom-access-from-closure-window.html = FAIL
-BUG9786 : LayoutTests/http/tests/security/cross-frame-access-history-prototype.html = FAIL
-BUG9786 : LayoutTests/http/tests/security/cross-frame-access-location-prototype.html = FAIL
-BUG9786 : LayoutTests/http/tests/security/cross-frame-access-document-direct.html = TIMEOUT
-BUG9787 WIN : LayoutTests/svg/W3C-SVG-1.1/animate-elem-41-t.svg = FAIL
-BUG9787 : LayoutTests/svg/W3C-SVG-1.1/coords-trans-01-b.svg = FAIL
-BUG9787 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/painting-render-01-b.svg = FAIL
-BUG10479 RELEASE MAC : LayoutTests/fast/dom/Window/window-object-cross-frame-calls.html = FAIL PASS CRASH
-BUG10479 MAC : LayoutTests/svg/hixie/perf/001.xml = FAIL
-BUG10479 MAC : LayoutTests/svg/hixie/perf/002.xml = FAIL
-
-BUG9798 WIN DEBUG : LayoutTests/fast/encoding/char-encoding.html = FAIL PASS
-BUG9798 WIN DEBUG : LayoutTests/http/tests/misc/redirect-with-quotes.php = TIMEOUT PASS
-BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/basic-auth.html = TIMEOUT PASS
-BUG9798 MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/basic-auth.html = TIMEOUT PASS
-BUG9798 WIN DEBUG : LayoutTests/editing/execCommand/paste-2.html = FAIL PASS
-BUG9798 WIN DEBUG : LayoutTests/editing/selection/4776665.html = FAIL PASS
-BUG9798 DEBUG : LayoutTests/svg/custom/path-bad-data.svg = CRASH FAIL
-BUG9798 LINUX DEBUG : chrome/fast/dom/extensions/interval.html = CRASH FAIL PASS
-BUG9798 LINUX : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = FAIL PASS
-BUG9798 LINUX : LayoutTests/http/tests/misc/BOM-override-script.html = TIMEOUT PASS
-BUG9798 LINUX DEBUG : LayoutTests/svg/text/text-text-07-t.svg = FAIL PASS
-BUG9798 LINUX : LayoutTests/tables/mozilla/bugs/45621.html = FAIL PASS CRASH
-BUG9798 LINUX : LayoutTests/transitions/shorthand-border-transitions.html = FAIL PASS
-BUG9798 LINUX DEBUG : LayoutTests/transitions/transition-timing-function.html = FAIL PASS
-BUG9798 LINUX RELEASE : LayoutTests/svg/carto.net/colourpicker.svg = FAIL PASS
-BUG9798 MAC : LayoutTests/svg/custom/use-instanceRoot-as-event-target.xhtml = TIMEOUT FAIL
-BUG9798 WIN DEBUG : LayoutTests/http/tests/misc/empty-file-formdata.html = TIMEOUT PASS
-BUG9798 WIN DEBUG : LayoutTests/http/tests/misc/refresh-headers.php = TIMEOUT PASS
-BUG9798 WIN RELEASE : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe.html = TIMEOUT PASS
-BUG9798 WIN RELEASE : LayoutTests/http/tests/uri/utf8-path.html = TIMEOUT PASS
-BUG9798 WIN MAC : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-header.html = TIMEOUT PASS
-BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout.html = TIMEOUT PASS
-BUG9798 WIN MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache.html = TIMEOUT PASS
-BUG9798 : LayoutTests/http/tests/xmlhttprequest/failed-auth.html = TIMEOUT PASS
-BUG9798 WIN RELEASE : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
-BUG9797 LINUX DEBUG : LayoutTests/svg/carto.net/colourpicker.svg = FAIL
-BUG9797 WIN DEBUG : LayoutTests/editing/execCommand/paste-1.html = FAIL PASS
-BUG9797 WIN LINUX : LayoutTests/editing/pasteboard/subframe-dragndrop-1.html = FAIL PASS
-BUG9797 BUG9798 WIN DEBUG : LayoutTests/http/tests/xmlhttprequest/state-after-network-error.html = CRASH TIMEOUT PASS
-
-// Failed in WebKit merge 42287:42324
-BUG9916 WIN LINUX : LayoutTests/css2.1/t0803-c5502-mrgn-r-02-c.html = FAIL
-
-// New tests or failures from WebKit merge 42324:42364. Re-baselined on
-// Windows. Probably just need the same on other platforms.
-BUG9962 LINUX : LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug.html = FAIL
-BUG9962 MAC : LayoutTests/fast/js/function-apply-aliased.html = FAIL
-
-// Regressions from WebKit merge 43264:42403, possibly due to r42375.
-BUG9992 WIN LINUX : LayoutTests/fast/text/shadow-no-blur.html = FAIL
-
-// Regressions from WebKit merge 43264:42403, unknown cause(s)
-BUG10055 LINUX DEBUG : LayoutTests/editing/execCommand/paste-1.html = FAIL PASS
-BUG10055 MAC : LayoutTests/fast/events/updateLayoutForHitTest.html = FAIL
-BUG10055 LINUX DEBUG : LayoutTests/svg/text/text-tselect-02-f.svg = FAIL PASS
-
-// This test was changed upstream in http://trac.webkit.org/changeset/42447
-// to include window.showModalDialog, which we give as undefined.
-BUG10530 : LayoutTests/fast/dom/Window/window-function-frame-getter-precedence.html = FAIL
-
-// Need rebaselining for Linux, from WebKit merge 42580:42609
-// The content editable div is wider on linux than on windows.
-BUG11122 LINUX : LayoutTests/fast/forms/caret-rtl.html = FAIL
-
-// New tests from WebKit Merge 42609:42671
-BUG10760 LINUX : LayoutTests/fast/forms/input-text-scroll-left-on-blur.html = FAIL
-BUG10760 LINUX : LayoutTests/fast/inline/25277-2.html = FAIL
-BUG10760 LINUX : LayoutTests/fast/inline/25277.html = FAIL
-BUG10760 MAC : LayoutTests/svg/custom/marker-overflow-clip.svg = FAIL
-BUG10760 LINUX : LayoutTests/svg/custom/marker-child-changes.svg = PASS FAIL
-BUG10760 LINUX MAC : LayoutTests/svg/custom/marker-viewBox-changes.svg = PASS FAIL
-
-// Needs investigation, perhaps just needs to be re-baselined on all
-// platforms.
-BUG10859 LINUX MAC : LayoutTests/fast/dom/HTMLSelectElement/named-options.html = FAIL
-BUG10861 WIN : LayoutTests/fast/dom/HTMLSelectElement/named-options.html = FAIL
-
-// New failures from WebKit Merge 42671:42725
-BUG10861 WIN : LayoutTests/http/tests/plugins/post-url-file.html = PASS
-BUG10861 MAC : LayoutTests/http/tests/plugins/post-url-file.html = TIMEOUT
-
-// New failures from WebKit merge 42725:42805
-// Because of WebKit change http://trac.webkit.org/changeset/42740,
-// DumpRenderTree now dumps additional info on the element that was
-// passed to the policy delegate. So the dump changes.
-// We need to reflect the change in test shell.
-BUG11000 : LayoutTests/fast/encoding/mailto-always-utf-8.html = FAIL CRASH
-BUG11000 : LayoutTests/fast/loader/policy-delegate-action-hit-test-zoomed.html = FAIL
-BUG11000 : LayoutTests/http/tests/misc/policy-delegate-called-twice.html = FAIL
-BUG11000 : LayoutTests/http/tests/misc/redirect-to-external-url.html = FAIL
-
-// New failures from WebKit merge 42725:42805
-// WebKit change http://trac.webkit.org/changeset/42785
-// added a test which submits a form and then uses history.back()
-// to go back. in test_shell history.back() does not go back,
-// so the test timeouts.
-BUG11001 LINUX MAC WIN : LayoutTests/http/tests/history/back-to-post.php = TIMEOUT
-
-// New failures from WebKit merge 42725:42805
-// Reasons unknown..
-BUG11012 LINUX MAC : LayoutTests/http/tests/security/xss-DENIED-xml-external-entity.xhtml = FAIL
-
-// Need Linux rebaselines from WebKit Merge 42805:42932
-BUG11123 LINUX : LayoutTests/editing/inserting/4960120-1.html = FAIL
-BUG11123 LINUX : LayoutTests/fast/css/nested-layers-with-hover.html = FAIL
-BUG11123 LINUX : LayoutTests/fast/forms/textarea-scrollbar.html = FAIL
-BUG11123 LINUX : LayoutTests/fast/forms/textarea-scrolled-type.html = FAIL
-
-// Chrome does not support WebArchives (just like Safari for Windows),
-// although we might eventually want to on Mac.
-WONTFIX SKIP : LayoutTests/webarchive/adopt-attribute-styled-body-webarchive.html = FAIL
-WONTFIX SKIP : LayoutTests/webarchive/adopt-attribute-styled-node-webarchive.html = FAIL
-WONTFIX SKIP : LayoutTests/webarchive/adopt-inline-styled-node-webarchive.html = FAIL
-
-// Regressions from WebKit Merge 42932:42994
-BUG11239 MAC DEBUG : LayoutTests/svg/custom/js-late-marker-and-object-creation.svg = FAIL PASS
-
-// Regressions from WebKit Merge 42932:42994 due to text metric changes.
-BUG11251 WIN : LayoutTests/fast/forms/textarea-width.html = FAIL
-BUG11251 WIN LINUX : LayoutTests/fast/forms/text-control-intrinsic-widths.html = FAIL
-BUG11251 : chrome/fast/forms/textarea-metrics.html = FAIL
-BUG11251 WIN LINUX : LayoutTests/svg/custom/svg-fonts-in-text-controls.html = FAIL
-BUG11251 WIN LINUX : LayoutTests/fast/forms/textarea-metrics.html = FAIL
-
-// Regressions from WebKit Merge 43059:43114
-BUG11322 : LayoutTests/editing/text-iterator/basic-iteration.html = FAIL
-
-// Regresssions from WebKit Merge 43114:43242 that just need to be re-baselined.
-BUG11483 LINUX : LayoutTests/fast/forms/input-text-double-click.html = FAIL
-BUG11483 LINUX : LayoutTests/svg/text/foreignObject-repaint.xml = FAIL
-
-// Regressions from WebKit merge 43242:43321. These just need to re-baselining:
-BUG_DARIN LINUX : LayoutTests/fast/forms/select-dirty-parent-pref-widths.html = FAIL
-BUG_DARIN LINUX : LayoutTests/svg/transforms/animated-path-inside-transformed-html.xhtml = FAIL
-BUG_DARIN LINUX : LayoutTests/svg/transforms/text-with-pattern-inside-transformed-html.xhtml = FAIL
-BUG_DARIN LINUX : LayoutTests/svg/transforms/text-with-pattern-with-svg-transform.svg = FAIL
-
-// Regressions from WebKit merge 43242:43321.
-BUG_DARIN LINUX DEBUG : LayoutTests/transitions/mask-transitions.html = FAIL PASS
-
-// TODO(erg): Attempted to rebaseline these tests as part of the above
-// 43346:43361 rebaseling from http://trac.webkit.org/changeset/43355. Turned
-// tree red. May be more involved then just rebaselining.
-BUG11613 LINUX : LayoutTests/editing/deleting/5168598.html = FAIL
-BUG11613 LINUX : LayoutTests/editing/inserting/5607069-2.html = FAIL
-
-// This needs to be rebaselined. See http://trac.webkit.org/changeset/43378
-BUG11669 LINUX : LayoutTests/fast/layers/remove-only-this-layer-update.html = FAIL
-
-// May need rebaselining for mac/linux, or may need nothing at all. Triage after has run
-// on mac/linux buildbot. See http://crbug.com/11763.
-BUG11763 LINUX : LayoutTests/fast/layers/self-painting-outline.html = FAIL PASS
-
-// This test got moved (and the baselines have been moved accordingly), but now as a result
-// it seems to be failing?!
-BUG11795 WIN LINUX : LayoutTests/http/tests/misc/favicon-as-image.html = FAIL
-BUG11795 MAC : LayoutTests/http/tests/misc/favicon-as-image.html = FAIL CRASH
-
-// Already baselined for chromium-win, may need to be done for mac/linux as well.
-BUG11796 LINUX : LayoutTests/fast/forms/search-styled.html = FAIL
-
-// Flaky Windows/Linux Tests
-BUG11898 LINUX MAC DEBUG : LayoutTests/svg/dom/SVGScriptElement/script-set-href.svg = FAIL PASS
-BUG11898 WIN DEBUG : LayoutTests/http/tests/misc/submit-get-in-utf16be.html = TIMEOUT PASS
-BUG18772 WIN DEBUG : LayoutTests/http/tests/navigation/post-goback-same-url.html = TIMEOUT PASS
-
-// Need LINUX/Mac rebaselines after WebKit Update 437150:43770
-BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test1.html = FAIL
-BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test2.html = FAIL
-BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test3.html = FAIL
-BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test4.html = FAIL
-
-// New test, added in http://trac.webkit.org/changeset/43822, fails for us
-BUG12197 : LayoutTests/editing/pasteboard/get-data-text-plain-drop.html = FAIL
-
-// xhtml mp tests were added in http://trac.webkit.org/changeset/43865 and are
-// skipped on all platforms upstream.
-BUG12254 SKIP : LayoutTests/fast/xhtmlmp/check-doctype-declaration.xhtml = FAIL
-BUG12254 SKIP : LayoutTests/fast/xhtmlmp/check-rootelement.xhtml = FAIL
-BUG12254 SKIP : LayoutTests/fast/xhtmlmp/noscript-in-multiscripts.xhtml = FAIL
-BUG12254 SKIP : LayoutTests/fast/xhtmlmp/noscript-nested.xhtml = FAIL
-BUG12254 SKIP : LayoutTests/fast/xhtmlmp/noscript.xhtml = FAIL
-
-// wap css tests were added in http://trac.webkit.org/changeset/43887 and are
-// skipped on all platforms upstream.
-BUG12310 SKIP : LayoutTests/fast/wcss/marquee-dir.xhtml = FAIL
-BUG12310 SKIP : LayoutTests/fast/wcss/marquee-loop.xhtml = FAIL
-BUG12310 SKIP : LayoutTests/fast/wcss/marquee-speed.xhtml = FAIL
-BUG12310 SKIP : LayoutTests/fast/wcss/marquee-style.xhtml = FAIL
-
-// Details for all of these are in the bugs.
-BUG12341 DEBUG WIN : LayoutTests/editing/selection/4975120.html = PASS FAIL
-BUG12354 : LayoutTests/plugins/netscape-invoke-browserfuncs.html = FAIL
-BUG12361 : LayoutTests/http/tests/cookies/double-quoted-value-with-semi-colon.html = FAIL
-
-// webkit 44010+44027 introducted new tests
-BUG12477 : LayoutTests/http/tests/local/drag-over-remote-content.html = FAIL
-BUG12477 : LayoutTests/http/tests/security/drag-over-remote-content-iframe.html = FAIL
-
-// WebKit 44202:44252 introduced new tests
-BUG12881 WIN LINUX : LayoutTests/fast/forms/isindex-placeholder.html = FAIL
-BUG12881 WIN LINUX : LayoutTests/fast/borders/border-radius-constraints.html = FAIL
-BUG12881 WIN LINUX : LayoutTests/fast/borders/border-radius-split-inline.html = FAIL
-
-// WebKit 44202:44252 introduced new failures (old tests)
-BUG12882 WIN : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = FAIL
-BUG12882 WIN : LayoutTests/fast/box-shadow/basic-shadows.html = FAIL
-
-// WebKit 44286:44342
-BUG13174 WIN DEBUG : LayoutTests/transitions/shorthand-border-transitions.html = PASS FAIL
-
-// WebKit 44438:44544
-BUG13721 LINUX : LayoutTests/fast/dynamic/positioned-movement-with-positioned-children.html = FAIL
-
-BUG14207 WIN LINUX DEBUG : LayoutTests/tables/mozilla/bugs/bug28341.html = PASS FAIL
-
-// Newly added test http://trac.webkit.org/changeset/44816
-BUG14673 : LayoutTests/http/tests/xmlhttprequest/cross-origin-no-authorization.html = FAIL TIMEOUT
-
-// Need investigation: test shell crashers.
-BUG14752 LINUX : LayoutTests/http/tests/cache/subresource-expiration.html = CRASH FAIL PASS
-BUG14751 LINUX DEBUG: LayoutTests/css2.1/atrule_longest_match.html = CRASH PASS
-BUG14767 LINUX : LayoutTests/dom/html/level1/core/documentgetdoctypenodtd.html = CRASH FAIL PASS
-
-BUG14832 : LayoutTests/editing/selection/user-drag-element-and-user-select-none.html = FAIL
-BUG14831 : LayoutTests/fast/events/event-trace.html = FAIL
-
-// WebKit 44928:44943
-BUG14946 : LayoutTests/fast/js/date-toisostring.html = FAIL
-
-// WebKit 44969:45017
-
-// The Mac layout test buildbots haven't generated a package for 20 days so
-// the rebaselining tool isn't working for this --agl
-BUG15125 MAC SKIP : chrome/fast/text/fake-italic.html = FAIL
-
-// WebKit 45017:45086
-BUG15217 : LayoutTests/fast/js/dictionary-no-cache.html = FAIL
-BUG15217 MAC : LayoutTests/fast/js/switch-behaviour.html = FAIL
-
-// WebKit 45086:45111
-BUG15270 : LayoutTests/fast/js/excessive-comma-usage.html = FAIL
-
-// WebKit 45134:45176
-
-
-// WebKit 45247:45270
-BUG15478 SKIP : LayoutTests/fast/frames/viewsource-on-image-file.html = FAIL
-BUG15478 SKIP : LayoutTests/platform/qt/fast/events/event-sender-keydown-frame.html = FAIL
-
-// WebKit 45270:45287
-BUG15490 LINUX : LayoutTests/editing/deleting/25322-1.html = PASS FAIL CRASH
-
-// Flaky for a while on DEBUG; also related to BUG17974
-BUG15267 LINUX DEBUG : LayoutTests/transitions/cancel-transition.html = PASS FAIL
-
-// WebKit 45431:45444
-BUG10384 MAC : LayoutTests/fast/events/frame-tab-focus.html = CRASH FAIL
-BUG11613 LINUX : LayoutTests/fast/forms/tabbing-input-iframe.html = FAIL
-BUG11613 LINUX : LayoutTests/fast/overflow/scrollRevealButton.html = FAIL
-
-// WebKit 45473:45487
-BUG15873 WIN LINUX : LayoutTests/fast/box-shadow/transform-fringing.html = FAIL
-BUG15873 WIN LINUX : LayoutTests/fast/transforms/shadows.html = FAIL
-
-
-// Webkit 45555:45558
-// This was removed from test_expectations when it was passing after the Webkit merge 45495:45535.
-// Not sure if this is a regression or some manner of flakiness.
-BUG11613 MAC : LayoutTests/http/tests/security/cross-frame-access-call.html = FAIL
-
-// WebKit merge 45601:45610
-BUG16162 : LayoutTests/fast/loader/subframe-navigate-during-main-frame-load.html = FAIL
-
-// Tests that rely on cross-process MessagePorts. No point in running them in
-// test_shell, since we'd have to use a completely different implementation from
-// what is used in the browser.
-WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc-2.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc-3.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc-4.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-channel-listener-circular-ownership.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-port-clone.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-port-deleted-document.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-port-deleted-frame.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-port-inactive-document.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-port-no-wrapper.html = FAIL
-WONTFIX SKIP : LayoutTests/fast/events/message-port.html = FAIL
-WONTFIX SKIP : LayoutTests/http/tests/security/MessagePort/event-listener-context.html = FAIL
-WONTFIX SKIP : chrome/fast/dom/messageport-gc.html = FAIL
-
-// WebKit tests regressions 20529:20532
-BUG16675 MAC : LayoutTests/fast/dynamic/flash-replacement-test.html = FAIL
-BUG16675 MAC : LayoutTests/fast/loader/loadInProgress.html = FAIL
-BUG16675 MAC DEBUG : LayoutTests/plugins/return-error-from-new-stream-callback-in-full-frame-plugin.html = FAIL
-
-
-// WebKit merge 42738:45840
-// New test, needs baseline.
-BUG16690 SKIP MAC : LayoutTests/fast/text/international/khmer-selection.html = FAIL
-
-// WebKit merge 42738:45840
-// New tests, need baseline.
-BUG16240 WIN SLOW : LayoutTests/http/tests/cache/subresource-expiration.html = PASS
-BUG16240 MAC : LayoutTests/http/tests/cache/subresource-expiration.html = PASS TIMEOUT
-
-// HTML5 DataGrid bindings are not enabled yet because the feature's not fully implemented.
-BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridColumns-basic.html = FAIL
-BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridColumns-dom.html = FAIL
-BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridColumns-dom-attributes.html = FAIL
-BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridDataSource-basic.html = FAIL
-
-
-// Failure since WebKit merge 45873:45916
-BUG16823 MAC : LayoutTests/editing/execCommand/4128080-2.html = FAIL
-BUG16823 MAC : LayoutTests/editing/inserting/insert-3786362-fix.html = FAIL
-BUG16823 MAC : LayoutTests/editing/inserting/insert-3907422-fix.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/19644-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/19644-2.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/4242293-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/4242293.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/4641033.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/4922709.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/4944770-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/4944770-2.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/4989774.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5027857.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5028447.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5065605.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5071074.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5075944-2.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5075944.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5368833.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5478250.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5601583-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5761530-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/5780697-2.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/block-wrappers-necessary.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/copy-paste-bidi.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/display-block-on-spans.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/drag-drop-modifies-page.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/input-field-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-4035648-fix.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-4038267-fix.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-4039777-fix.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-001.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-002.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-003.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-004.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-005.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-006.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-007.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-008.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-009.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-010.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-list-001.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-pre-001.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-pre-002.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-001.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-002.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-003.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-cells.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-001.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-002.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-003.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-004.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-005.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-006.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-007.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-008.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-009.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-010.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-011.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-012.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-013.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-014.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-015.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-016.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-017.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-018.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-at-tabspan-001.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-at-tabspan-002.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-at-tabspan-003.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/paste-unrendered-select.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/select-element-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/styled-element-markup.html = FAIL
-BUG16823 MAC : LayoutTests/editing/pasteboard/testcase-9507.html = FAIL
-BUG16823 MAC : LayoutTests/editing/selection/4895428-1.html = FAIL
-BUG16823 MAC : LayoutTests/editing/selection/4895428-4.html = FAIL
-BUG16823 MAC : LayoutTests/editing/selection/contains-boundaries.html = FAIL
-BUG16823 MAC : LayoutTests/editing/style/5065910.html = FAIL
-BUG16823 MAC : LayoutTests/editing/style/font-family-with-space.html = FAIL
-BUG16823 MAC : LayoutTests/editing/style/non-inheritable-styles.html = FAIL
-BUG16823 MAC : LayoutTests/editing/style/smoosh-styles-003.html = FAIL
-BUG16823 MAC : LayoutTests/fast/lists/drag-into-marker.html = FAIL
-
-// New test from WebKit merge 46050:46087
-BUG17170 : LayoutTests/fast/dom/prototype-inheritance.html = FAIL
-
-// New tests from WebKit merge 46087:46125
-BUG17255 LINUX WIN : LayoutTests/fast/box-shadow/spread.html = FAIL
-
-// Test failures from WebKit merge r46143:46194
-BUG17398 LINUX : LayoutTests/fast/borders/borderRadiusDashed02.html = FAIL
-BUG17398 LINUX : LayoutTests/fast/borders/borderRadiusDashed03.html = FAIL
-BUG17398 LINUX : LayoutTests/fast/css/pseudo-cache-stale.html = FAIL
-BUG17398 LINUX : LayoutTests/fast/forms/search-zoomed.html = FAIL
-
-// Test failures from WebKit merge r46194:46229
-BUG17497 WIN DEBUG : LayoutTests/media/unsupported-rtsp.html = FAIL
-BUG17499 MAC : LayoutTests/platform/mac/fast/loader/non-html-load-event.html = FAIL
-
-// not sure why this started failing
-BUG17509 LINUX : LayoutTests/fast/loader/local-CSS-from-local.html = FAIL
-BUG17509 LINUX : LayoutTests/fast/loader/local-JavaScript-from-local.html = FAIL TIMEOUT
-BUG17509 LINUX : LayoutTests/fast/loader/local-image-from-local.html = FAIL
-
-// New tests with WebKit merge 46288:46363
-BUG18116 : LayoutTests/fast/dom/constructed-objects-prototypes.html = FAIL
-BUG18116 : LayoutTests/fast/dom/prototype-inheritance-2.html = FAIL
-
-// Flaky. Timing?
-BUG18584 : LayoutTests/animations/change-one-anim.html = FAIL PASS
-BUG18584 DEBUG LINUX WIN : LayoutTests/animations/play-state.html = FAIL PASS
-BUG18584 : LayoutTests/transitions/shorthand-transitions.html = FAIL PASS
-
-// Flaky crashes
-BUG18656 MAC : LayoutTests/fast/dom/Window/window-lookup-precedence.html = FAIL CRASH
-BUG18724 LINUX DEBUG : LayoutTests/transitions/transition-drt-api-delay.html = PASS CRASH
-
-// Flaky timeout
-BUG18659 WIN : LayoutTests/http/tests/loading/redirect-methods.html = PASS TIMEOUT
-BUG18733 WIN MAC : LayoutTests/http/tests/xmlhttprequest/cross-origin-authorization.html = PASS TIMEOUT
-BUG18740 WIN : LayoutTests/http/tests/security/credentials-in-referer.html = PASS TIMEOUT
-
-// Test failures caused by re-enabling skia asserts.
-BUG18896 WIN LINUX DEBUG : LayoutTests/svg/batik/paints/gradientLimit.svg = FAIL
-BUG18896 LINUX DEBUG : LayoutTests/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr.html = PASS FAIL
-BUG18896 LINUX DEBUG : LayoutTests/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop.html = PASS FAIL
-
-// Test failures from WebKit merge 46894 to 46977
-BUG18939 : LayoutTests/fast/js/function-declaration.html = FAIL
-BUG18939 : LayoutTests/fast/js/prototypes.html = FAIL
-BUG18939 MAC : LayoutTests/editing/execCommand/toggle-compound-styles.html = FAIL
-
-// Fallout from webkit 47041:47189
-BUG19248 : LayoutTests/fast/js/const.html = FAIL
-
-BUG_LEVIN : LayoutTests/fast/dom/Window/window-property-shadowing.html = FAIL
-BUG_LEVIN : LayoutTests/storage/multiple-transactions-on-different-handles.html = TIMEOUT
-BUG_LEVIN WIN : LayoutTests/fast/events/mouse-click-events.html = FAIL
-
-// Fallout from webkit 47189:47265
-BUG_LEVIN WIN LINUX : LayoutTests/css2.1/t1503-c522-font-family-00-b.html = FAIL
-//BUG_LEVIN WIN LINUX : LayoutTests/fast/reflections/reflection-overflow-scroll.html = FAIL
-BUG_LEVIN WIN LINUX : LayoutTests/fast/text/monospace-width-cache.html = FAIL
-
-// Fallout from webkit 47265:47277
-BUG_MBELSHE : LayoutTests/fast/js/Array-isArray.html = FAIL
-
-BUG19519 WIN DEBUG : LayoutTests/fast/css/last-of-type-pseudo-class.html = FAIL PASS
-
-// Fallout from webkit 47305:47383
-
-// WebKit roll r47417:47528
-BUG19766 WIN : LayoutTests/svg/batik/text/textPosition.svg = FAIL
-BUG19766 WIN LINUX : LayoutTests/svg/batik/text/xmlSpace.svg = FAIL
-BUG19766 WIN LINUX : LayoutTests/tables/mozilla/bugs/bug83786.html = FAIL
-BUG19766 : LayoutTests/storage/open-database-while-transaction-in-progress.html = TIMEOUT
-BUG19766 LINUX : LayoutTests/fast/replaced/width100percent-menulist.html = FAIL
-
-// Fails due to textInputController.setInputMethod not implemented for Mac.
-BUG19665 MAC : LayoutTests/platform/mac/editing/input/hangul-enter-confirms-and-sends-keypress.html = FAIL
-BUG19665 MAC : LayoutTests/platform/mac/editing/input/kotoeri-enter-to-confirm-and-newline.html = FAIL
-
-// WebKit 47719:47732. New test. Time out on all 3 platforms.
-BUG20341 : LayoutTests/loader/go-back-to-different-window-size.html = TIMEOUT
-
-// WebKit 47777:47790 - getOwnPropertyDescriptor
-BUG20345 : LayoutTests/fast/js/getOwnPropertyDescriptor.html = FAIL
-
-// WebKit 47797:47804
-BUG20376 WIN : LayoutTests/media/audio-play-event.html = TIMEOUT
-// Was marked as flakey above (I commented it out).
-BUG20376 WIN : LayoutTests/media/video-src-remove.html = TIMEOUT FAIL
-
-// WebKit 47821:47827
-BUG20987 : LayoutTests/fast/events/pageshow-pagehide-on-back-uncached.html = FAIL
-BUG20987 : LayoutTests/fast/events/pageshow-pagehide.html = FAIL
-
-// This newly added test times out on Mac:
-BUG20438 MAC : chrome/plugins/get-url-with-iframe-target.html = TIMEOUT
-BUG20438 MAC : chrome/plugins/get-url-with-iframe-target-no-crash.html = TIMEOUT
-
-// Mac LayoutTest/http errors after removing blanket exception.
-BUG20748 MAC : LayoutTests/http/tests/plugins/npapi-response-headers.html = TIMEOUT
-BUG20748 MAC : LayoutTests/http/tests/security/frameNavigation/xss-DENIED-plugin-navigation.html = TIMEOUT
-BUG20748 MAC : LayoutTests/http/tests/plugins/get-url.html = TIMEOUT
-BUG20748 MAC : LayoutTests/http/tests/plugins/interrupted-get-url.html = TIMEOUT
-
-// started crashing at build 5804 then green until 5863 of webkit-dbg-2
-BUG20786 WIN DEBUG : LayoutTests/fast/dom/undetectable-style-filter.html = PASS CRASH
-// started crashing at build 5859 of webkit-dbg-2
-BUG20786 WIN DEBUG : LayoutTests/fast/dom/undetectable-document-all.html = PASS CRASH
-
-BUG10480 LINUX : LayoutTests/editing/selection/move-by-line-001.html = PASS FAIL
-
-// Flakey crashes in js tests. Cause unknown.
-BUG20886 WIN DEBUG : LayoutTests/fast/js/regexp-no-extensions.html = CRASH PASS
-BUG20886 WIN DEBUG : LayoutTests/fast/js/repeat-cached-vm-reentry.html = CRASH PASS
-BUG20886 WIN DEBUG : LayoutTests/fast/js/regexp-non-capturing-groups.html = CRASH PASS
-
-BUG20898 MAC DEBUG : LayoutTests/svg/W3C-SVG-1.1/painting-marker-02-f.svg = FAIL PASS
-
-// WebKit 48001:48020
-// Need to implement clearAllDatabases in layoutTestController.
-BUG20995 SKIP : LayoutTests/storage/statement-error-callback.html = FAIL
-
-// WebKit 48020:48030
-BUG21033 : LayoutTests/fast/events/message-port-multi.html = TIMEOUT
-BUG21033 : LayoutTests/fast/dom/Window/window-postmessage-args.html = FAIL
-BUG21033 WIN LINUX : LayoutTests/fast/events/init-events.html = FAIL
-
-// WebKit 48034:48061
-// Need to implement layoutTestController.addUserScript.
-BUG21113 : LayoutTests/userscripts/script-run-at-end.html = FAIL
-// undefined pageshowEvent.persisted cause the test hangs.
-BUG21136 : LayoutTests/fast/events/pageshow-pagehide-on-back-cached-with-frames.html = TIMEOUT
-// Accessing attributes of an object created with
-// "document.implementation.createDocumentType" causes NULL pointers
-BUG14091 : LayoutTests/fast/dom/DOMImplementation/detached-doctype.html = CRASH
-// The linux layout result in build bot shows the changed method does not
-// executed.
-BUG21141 LINUX : LayoutTests/fast/forms/select-double-onchange.html = FAIL
-BUG21141 LINUX : LayoutTests/fast/forms/select-script-onchange.html = FAIL
-// The test is flaky.
-BUG_VICTORW : LayoutTests/http/tests/security/javascriptURL/xss-ALLOWED-from-javascript-url-sub-frame-2-level.html = PASS CRASH
-
-// WebKit 48098:48155
-BUG21267 : LayoutTests/fast/events/click-focus-anchor.html = FAIL
-BUG21267 : LayoutTests/fast/events/tab-focus-anchor.html = FAIL
-
-BUG_JAPHET MAC : LayoutTests/animations/change-keyframes-name.html = FAIL PASS
-
-// Flaky as of WebKit r48155
-BUG_JAPHET WIN : LayoutTests/transitions/transition-end-event-transform.html = FAIL PASS
-
-// Flaky, not clear as of when.
-BUG21411 SLOW WIN LINUX DEBUG: LayoutTests/svg/dom/SVGScriptElement/script-load-and-error-events.svg = FAIL PASS
-
-// WebKit 48217:48239
-// Fails because we don't support layoutTestController.addUserStyleSheet().
-BUG21439 : LayoutTests/userscripts/simple-stylesheet.html = FAIL
-// New database test that fails.
-BUG21442 : LayoutTests/storage/test-authorizer.html = TIMEOUT
-
-// Need investigation after we enable file URL universal access in test shell.
-BUG_JIANLI WIN : LayoutTests/fast/events/dispatchEvent-crash.html = CRASH
-BUG_JIANLI : LayoutTests/editing/selection/drag-in-iframe.html = FAIL
-
-// New tests added in r48284
-BUG21644 : LayoutTests/http/tests/security/mixedContent/about-blank-iframe-in-main-frame.html = FAIL
-BUG21644 : LayoutTests/http/tests/security/mixedContent/data-url-iframe-in-main-frame.html = FAIL
-BUG21644 : LayoutTests/http/tests/security/mixedContent/insecure-css-in-main-frame.html = FAIL
-BUG21644 : LayoutTests/http/tests/security/mixedContent/insecure-iframe-in-main-frame.html = FAIL
-BUG21644 : LayoutTests/http/tests/security/mixedContent/insecure-image-in-main-frame.html = FAIL
-BUG21644 : LayoutTests/http/tests/security/mixedContent/redirect-http-to-https-iframe-in-main-frame.html = FAIL
-BUG21644 : LayoutTests/http/tests/security/mixedContent/redirect-https-to-http-iframe-in-main-frame.html = FAIL
-
-// New test added in r48318 (GoogleURL bug)
-BUG21764 : LayoutTests/fast/forms/ValidityState-typeMismatch-url.html = FAIL
-
-// New test added in r48336 (V8 bug)
-BUG21767 : LayoutTests/fast/js/Object-keys.html = FAIL
-BUG21767 : LayoutTests/http/tests/security/cross-frame-access-enumeration.html = TIMEOUT
+// This file consists of lines with specifications of what
+// to expect from layout test cases. The test cases can be directories
+// in which case the expectations apply to all test cases in that
+// directory and any subdirectory. The format of the file is along the
+// lines of:
+//
+// LayoutTests/fast/js/fixme.js = FAIL
+// LayoutTests/fast/js/flaky.js = FAIL PASS
+// LayoutTests/fast/js/crash.js = CRASH TIMEOUT FAIL PASS
+//
+// To add other options:
+// SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
+// DEBUG : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
+// DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
+// LINUX DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
+// BUG1234 DEBUG MAC : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
+//
+// BUG[0-9]+: See this bug for more information. Every test that isn't marked
+// WONTFIX should have a BUG annotation.
+// SKIP: Doesn't run the test.
+// SLOW: The test takes a long time to run, but does not timeout indefinitely.
+// WONTFIX: For tests that we never intend to pass on a given platform.
+// DEBUG: Expectations apply only to the debug build.
+// RELEASE: Expectations apply only to release build.
+// LINUX/WIN/MAC: Expectations apply only to these platforms.
+//
+// The format of a test line is as follows:
+// METADATA : relative/path/to/test.html = EXPECTATIONS
+//
+// For example,
+// LINUX : LayoutTests/media = PASS FAIL
+//
+// The above means that all the media tests are flaky, but only on Linux.
+//
+// Notes:
+// -A test cannot be both SLOW and TIMEOUT
+// -A test can be included twice, but not via the same path.
+// -If a test is included twice, then the more precise path wins.
+// -CRASH tests cannot be WONTFIX
+
+// -----------------------------------------------------------------
+// SLOW TESTS
+// -----------------------------------------------------------------
+
+BUG_OJAN SLOW : LayoutTests/fast/js/regexp-overflow.html = PASS
+BUG_OJAN SLOW : LayoutTests/http/tests/misc/DOMContentLoaded-event.html = PASS
+BUG_OJAN SLOW : LayoutTests/http/tests/navigation/multiple-back-forward-entries.html = PASS
+BUG_OJAN SLOW : LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html = PASS
+BUG_OJAN SLOW MAC LINUX : LayoutTests/http/tests/xmlhttprequest/small-chunks-response-text.html = PASS
+BUG_OJAN SLOW WIN RELEASE : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS
+BUG_OJAN SLOW LINUX : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS
+BUG18702 MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS TIMEOUT
+BUG_OJAN SLOW WIN MAC : LayoutTests/svg/custom/invisible-text-after-scrolling.xhtml = PASS
+BUG_OJAN SLOW : LayoutTests/tables/mozilla/other/slashlogo.html = PASS
+
+// -----------------------------------------------------------------
+// SKIPPED TESTS
+// -----------------------------------------------------------------
+
+// Since V8 is more interruptible than other engines, they use the standard
+// long-running-script mechanism to handle very-long-running regexps too.
+// See http://code.google.com/p/v8/issues/detail?id=287
+WONTFIX SKIP : LayoutTests/fast/js/regexp-overflow-too-big.html = TIMEOUT
+
+// XHTML tests. These tests seem like they work, but only because the
+// expected output expects to see JS errors. There is no point in running
+// these tests, because they are giving us a false sense of testing that isn't
+// really happening. Furthermore, since they appear to pass if we do try to
+// run them, we can't even list them as permanently expected to fail.
+BUG793944 WONTFIX SKIP : LayoutTests/dom/xhtml = PASS
+
+// We do not want to support Legacy mac encodings on Windows/Linux.
+// On Mac, we can support them by building platform/text/mac, but
+// probably we don't want there, either.
+WONTFIX SKIP WIN LINUX : LayoutTests/fast/encoding/char-encoding-mac.html = FAIL
+
+// Fails due to different window.close() rules. We need to decide whether we
+// ever expect to pass this. Now also timing out.
+BUG753420 WONTFIX SKIP : LayoutTests/fast/dom/open-and-close-by-DOM.html = FAIL
+
+// Skip because of WebKit bug 18512. These bugs "poison" future tests, causing
+// all SVG objects with fill="red" to be rendered in green.
+WONTFIX SKIP : LayoutTests/svg/custom/fill-SVGPaint-interface.svg = PASS
+WONTFIX SKIP : LayoutTests/svg/custom/getPresentationAttribute.svg = PASS
+
+// WML is still an inprogress feature upstream. Chromium does not build
+// with WML support, so skip its tests.
+WONTFIX SKIP : LayoutTests/wml = FAIL
+WONTFIX SKIP : LayoutTests/http/tests/wml = FAIL
+WONTFIX SKIP : LayoutTests/fast/wml = FAIL
+
+// These tests are based on the JSC JavaScript profiler. The V8 JavaScript
+// profiler is in development and will use a different approach than JSC and
+// most likely these tests will always be JSC specific.
+WONTFIX SKIP : LayoutTests/fast/profiler = FAIL TIMEOUT
+
+// This test doesn't terminate because it contains exponential
+// regexps. It is safe to disable because we run the same tests
+// (sans the nonterminating ones) as part of the v8 tests.
+WONTFIX SKIP : LayoutTests/fast/regex/test1.html = PASS
+
+// We use worker_uitests to run workers tests. Don't run them in test_shell.
+WONTFIX SKIP : LayoutTests/fast/workers = PASS TIMEOUT FAIL
+WONTFIX SKIP : LayoutTests/http/tests/workers = PASS TIMEOUT FAIL
+WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/workers = PASS TIMEOUT FAIL
+WONTFIX SKIP : LayoutTests/http/tests/eventsource/workers = PASS TIMEOUT FAIL
+
+// Page Cache - based tests. Chromium disables page cache because the WebKit page cache keeps previously
+// loaded pages alive in memory to be able to quickly substitute them when user clicks History buttons.
+// Chromium wants those to be separate navigations made via browser process to be able to make decision
+// on which renderer process to use for each of them.
+WONTFIX SKIP BUG19635 : LayoutTests/fast/harness/use-page-cache.html = TIMEOUT FAIL
+WONTFIX SKIP BUG19635 : LayoutTests/fast/dom/Window/timer-resume-on-navigation-back.html = TIMEOUT FAIL
+// Depends on page cache, as far as I can tell.
+WONTFIX SKIP BUG10635 : LayoutTests/fast/events/pageshow-pagehide-on-back-cached.html = TIMEOUT FAIL
+
+// -----------------------------------------------------------------
+// FAILING TESTS
+// -----------------------------------------------------------------
+
+// We don't intend to pass all of these cases, so this is an expected fail.
+// Window resizing is not implemented in chrome.
+BUG1137420 WONTFIX : LayoutTests/fast/dom/Window/window-resize.html = FAIL
+
+// This test is completely timing dependent. It is testing the time
+// between a key event and a search event. You cannot count on this
+// always being exactly the same, so we allow this to either PASS or FAIL
+// but not CRASH or TIMEOUT.
+WONTFIX DEBUG SLOW WIN LINUX : LayoutTests/fast/forms/search-event-delay.html = FAIL PASS
+WONTFIX DEBUG SLOW MAC : LayoutTests/fast/forms/search-event-delay.html = FAIL
+
+// Chrome uses different keyboard accelerators from those used by Safari, so
+// these tests will always fail.
+// TODO(pinkerton): these should probably pass on Mac since we want Emacs
+// keybindings but they currently do not.
+WONTFIX LINUX WIN : LayoutTests/editing/pasteboard/emacs-cntl-y-001.html = FAIL
+WONTFIX : LayoutTests/editing/pasteboard/emacs-ctrl-a-k-y.html = FAIL
+WONTFIX : LayoutTests/editing/pasteboard/emacs-ctrl-k-y-001.html = FAIL
+WONTFIX : LayoutTests/editing/input/emacs-ctrl-o.html = FAIL
+
+// Checks for very kjs-specific garbage collector behavior.
+// Would have to be implemented much differently to work in v8.
+WONTFIX : LayoutTests/fast/dom/gc-10.html = FAIL
+
+// This fails because we're missing various useless apple-specific
+// properties on the window object.
+// This test also timeouts in Debug mode.
+BUG1058654 WONTFIX : LayoutTests/fast/dom/Window/window-properties.html = FAIL TIMEOUT
+
+// Safari specific test to ensure that JavaScript errors aren't logged when in
+// private browsing mode.
+WONTFIX : LayoutTests/http/tests/security/cross-frame-access-private-browsing.html = FAIL
+
+// We don't care about dashboard compatibility mode.
+WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html = FAIL
+WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/svg-created-by-xhr-disallowed-in-dashboard.html = FAIL
+WONTFIX : LayoutTests/svg/custom/embedded-svg-disallowed-in-dashboard.xml = FAIL
+WONTFIX : LayoutTests/svg/custom/manually-parsed-embedded-svg-disallowed-in-dashboard.html = FAIL
+WONTFIX : LayoutTests/svg/custom/manually-parsed-svg-disallowed-in-dashboard.html = FAIL
+WONTFIX SKIP : LayoutTests/svg/custom/svg-disallowed-in-dashboard-object.html = FAIL
+WONTFIX : LayoutTests/fast/canvas/canvas-gradient-addStop-error.html = FAIL
+
+
+// Chrome uses different keyboard accelerators from those used by Safari, so
+// these tests will always fail.
+// TODO(ericroman): can the following 2 tests be removed from this list, since they pass?
+WONTFIX : LayoutTests/fast/events/keydown-1.html = FAIL
+WONTFIX LINUX WIN : LayoutTests/fast/events/option-tab.html = FAIL
+
+// Chrome does not support WebArchives.
+BUG10395 WONTFIX SKIP : LayoutTests/webarchive/loading = FAIL TIMEOUT
+BUG10395 WONTFIX : LayoutTests/webarchive = PASS
+BUG10395 WONTFIX : LayoutTests/svg/webarchive = FAIL PASS
+BUG10395 WONTFIX : LayoutTests/svg/custom/image-with-prefix-in-webarchive.svg = FAIL PASS
+BUG10395 WONTFIX SKIP : LayoutTests/http/tests/webarchive = FAIL PASS
+BUG10395 WONTFIX SKIP : LayoutTests/svg/webarchive/svg-cursor-subresources.svg = FAIL
+BUG10395 WONTFIX SKIP : LayoutTests/webarchive/test-css-url-resources-in-stylesheets.html = FAIL
+BUG10395 WONTFIX SKIP : LayoutTests/webarchive/test-css-url-resources-inline-styles.html = FAIL
+
+// We don't support ACCELERATED_COMPOSITING. Skipping because some tests in this
+// directory don't have pixel results.
+BUG15733 WONTFIX SKIP : LayoutTests/compositing = FAIL PASS TIMEOUT
+
+// Run the Mac-specific platform tests, but only to check for crashes.
+WONTFIX : LayoutTests/platform/gtk = FAIL PASS
+WONTFIX : LayoutTests/platform/mac = FAIL PASS TIMEOUT
+WONTFIX : LayoutTests/platform/mac-leopard = FAIL PASS
+WONTFIX : LayoutTests/platform/mac-tiger = FAIL PASS
+WONTFIX : LayoutTests/platform/qt = FAIL PASS
+WONTFIX LINUX MAC : LayoutTests/platform/win = FAIL PASS
+
+// This is a Safari specific test to make WebKit behave like AppKit on the Mac.
+// We do not support it because PLATFORM(MAC) is not defined for the mac version.
+WONTFIX MAC : LayoutTests/platform/mac/editing/deleting/backward-delete.html = FAIL
+
+// Ignored because we do not have OBJC bindings
+WONTFIX SKIP : LayoutTests/editing/pasteboard/paste-RTFD.html = FAIL
+WONTFIX SKIP : LayoutTests/editing/pasteboard/paste-TIFF.html = FAIL
+WONTFIX SKIP : LayoutTests/plugins/jsobjc-dom-wrappers.html = FAIL
+WONTFIX SKIP : LayoutTests/plugins/jsobjc-simple.html = FAIL
+WONTFIX SKIP : LayoutTests/plugins/root-object-premature-delete-crash.html = FAIL
+WONTFIX SKIP : LayoutTests/plugins/throw-on-dealloc.html = FAIL
+WONTFIX SKIP : LayoutTests/plugins/undefined-property-crash.html = FAIL
+
+// Uses __apple_runtime_object
+WONTFIX SKIP : LayoutTests/plugins/call-as-function-test.html = FAIL
+
+// Ignore test because it tries to load .pdf files in <img> tags.
+WONTFIX LINUX WIN : LayoutTests/fast/images/pdf-as-image-landscape.html = FAIL
+WONTFIX LINUX WIN : LayoutTests/fast/images/pdf-as-image.html = FAIL
+WONTFIX LINUX WIN : LayoutTests/fast/replaced/pdf-as-image.html = FAIL
+
+// This test tries to print a PDF file as the expected result. I don't think
+// we plan on supporting this anytime soon.
+WONTFIX SKIP : LayoutTests/printing/media-queries-print.html = PASS
+
+// Chrome doesn't call the willCacheResponse callback (a method
+// of ResourceHandleClient). That function is Mac-specific.
+WONTFIX SKIP : LayoutTests/http/tests/misc/willCacheResponse-delegate-callback.html = FAIL
+
+// Checks for very kjs-specific garbage collector
+// behavior. Gc-9 is completely braindamaged; it tests that certain
+// properties are reset by the garbage collector. It looks to pass recently.
+WONTFIX : LayoutTests/fast/dom/gc-9.html = PASS FAIL
+
+// This test checks that ((new Error()).message is undefined, which is
+// a direct contradiction of the javascript spec 15.11.4.3 which
+// says that it must be a string.
+WONTFIX : LayoutTests/fast/js/kde/evil-n.html = FAIL
+
+// This test is broken. The regular expression used contains an error
+// which kjs swallows and returns false, which is the expected result,
+// but for which we issue a syntax error.
+WONTFIX : LayoutTests/fast/js/code-serialize-paren.html = FAIL
+
+// These tests check for a kjs-specific extension, that source file
+// name and line numbers are available as properties on exception
+// objects. We handle error positions differently.
+WONTFIX : LayoutTests/fast/js/exception-linenums-in-html-1.html = FAIL
+WONTFIX : LayoutTests/fast/js/exception-linenums-in-html-2.html = FAIL
+WONTFIX : LayoutTests/fast/js/exception-linenums.html = FAIL
+WONTFIX : LayoutTests/fast/js/exception-expression-offset.html = FAIL
+
+// These tests rely on specific details of decompilation of
+// functions. V8 always returns the source code as written; there's
+// no decompilation or pretty printing involved except for
+// certain "native" functions where the V8 output does not include
+// newline characters. This is working as intended and we don't care
+// if the tests pass or fail. (It should probably simply be re-baselined.)
+WONTFIX : LayoutTests/fast/js/function-names.html = FAIL PASS
+
+// This test relies on KJS specific implementation
+// (window.GCController.getJSObjectCount), which we have no intention of
+// supporting.
+WONTFIX SKIP : LayoutTests/fast/dom/Window/timeout-released-on-close.html = FAIL
+
+// These tests expect a tiff decoder, which we don't have.
+WONTFIX LINUX WIN : LayoutTests/fast/images/embed-image.html = FAIL
+WONTFIX LINUX WIN : LayoutTests/fast/images/object-image.html = FAIL
+
+// Safari has a unique handling of the BOM characters among browsers.
+// There is a strong suspicion that this is a security problem, so we
+// follow the rest of the browsers on this one.
+WONTFIX : LayoutTests/fast/js/removing-Cf-characters.html = FAIL
+
+// These tests fail in all but the PST/PDT time zone.
+// Another reason for failure is that, for compatability, we don't obey
+// the ECMA standard on DST exactly. We use the OS's facilities to
+// convert to local time for dates within the UNIX 32-bit epoch,
+// and follow the ECMA rules for dates outside that range.
+// The ECMA rules say to use current DST rules for all dates,
+// and that all dates that are separated by an exact multiple of
+// 28 years must behave exactly the same.
+// OS local time services are more accurate than this ECMA rule,
+// which is a discrepancy.
+WONTFIX SKIP : LayoutTests/fast/js/date-DST-time-cusps.html = PASS FAIL
+WONTFIX SKIP : LayoutTests/fast/js/date-big-setdate.html = PASS FAIL
+
+// The following tests fail because of difference in how the test shell
+// navigation controller tracks navigations as compared to how the Mac
+// implementation does it.
+WONTFIX : LayoutTests/http/tests/history/redirect-200-refresh-0-seconds.pl = FAIL
+WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-0-seconds.html = FAIL
+WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-2-seconds.html = FAIL
+WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-before-load.html = FAIL
+WONTFIX : LayoutTests/http/tests/history/redirect-meta-refresh-0-seconds.html = FAIL
+
+// This test expects weird behavior of __defineGetter__ on the
+// window object. It expects variables introduced with 'var x = value'
+// to behave differently from variables introduced with 'y = value'.
+// This just seems wrong and should have very low priority.
+// Agreed, not required for Beta, we can debate this with WebKit post Beta
+// (eseidel, 4/25)
+// Ignore this until we see evidence that we need to support it.
+WONTFIX : LayoutTests/fast/dom/getter-on-window-object2.html = FAIL
+
+// V8 doesn't stable sort and we currently have no intention of
+// changing this. It is tracked by:
+// http://code.google.com/p/v8/issues/detail?id=90
+WONTFIX : LayoutTests/fast/js/comparefn-sort-stability.html = FAIL
+WONTFIX : LayoutTests/fast/js/sort-stability.html = FAIL
+
+// We have no indication that anyone misses this and have currently no
+// intention of implementing it.
+WONTFIX : LayoutTests/fast/js/function-dot-arguments.html = FAIL
+
+// This is a Safari specific test used to document the set of global
+// constructors they expose and the exact way they are printed. Not
+// important.
+WONTFIX : LayoutTests/fast/js/global-constructors.html = FAIL
+
+// This test is not reliable. The behavior depends on exactly how the
+// stack limit is reached. We're happy with our behavior on this test
+// as long as we don't crash.
+WONTFIX : LayoutTests/fast/js/global-recursion-on-full-stack.html = FAIL PASS
+
+// -----------------------------------------------------------------
+// CHROME REWRITTEN TESTS
+// -----------------------------------------------------------------
+
+// These tests have been rewritten, with the original being ignored,
+// because they rely on being able to shadow the 'top' variable on the
+// global object. For security we disallow shadowing of top.
+WONTFIX : LayoutTests/editing/selection/click-before-and-after-table.html = FAIL
+
+// We're taking a different approach on this test than Webkit does, related to
+// whether we create a window via a plugin when target is _blank.
+BUG849085 WONTFIX SKIP : LayoutTests/plugins/get-url-with-blank-target.html = FAIL
+
+// This test doesn't work on the bbot. Works locally.
+WONTFIX SKIP : chrome/http/tests/plugins/get-file-url.html = FAIL PASS TIMEOUT
+
+// Dashboard-related test
+WONTFIX SKIP : LayoutTests/platform/mac/fast/css/dashboard-region-parser.html = FAIL
+
+// Not a test?
+WONTFIX SKIP : LayoutTests/http/tests/incremental/pause-in-script-element.pl = FAIL
+
+// This tests for an arbitrary limit set in JSCRE to terminate regular
+// expressions with an exponential matching behavior. Since the V8
+// regular expression engine can be preempted from the outside, we do not
+// need to limit the execution this way. Firefox also keeps running
+// on this one.
+WONTFIX : LayoutTests/fast/regex/slow.html = TIMEOUT
+
+// Test to verify legacy MAC encodings. We don't want to support them and
+// have to skip this test.
+WONTFIX SKIP : LayoutTests/fast/encoding/char-decoding-mac.html = FAIL
+
+// WebKit QT Build-specific tests
+WONTFIX SKIP : LayoutTests/platform/qt/view/fixed-layout-size.html = FAIL
+
+// These don't have pixel results and rely on ObjC bindings. Don't run until they have pixel results.
+WONTFIX SKIP : LayoutTests/platform/mac/editing/pasteboard/dataTransfer-set-data-file-url.html = FAIL
+WONTFIX SKIP : LayoutTests/http/tests/security/dataTransfer-set-data-file-url.html = FAIL
+
+// The issue is which global object to use as the implicit
+// receiver for cross-frame calls. Currently, IE, Firefox and Chrome
+// agree and only Safari is doing it this way.
+BUG5053 WONTFIX : LayoutTests/fast/frames/cross-site-this.html = FAIL
+
+// This tests a Safari incompatibility. This test should fail since
+// it contains syntax errors that JSC for some reason choose not to
+// throw. V8 follows the spec.
+WONTFIX : LayoutTests/fast/js/reparsing-semicolon-insertion.html = FAIL
+
+// These tests relate to transform/3d which is a work in progress and is not
+// even run by the WebKit folk. They should be enabled whenever WebKit begins
+// testing them by default. The bug to re-enable is:
+// http://code.google.com/p/chromium/issues/detail?id=8455
+WONTFIX SKIP : LayoutTests/transforms/3d = FAIL
+
+// Copying with no selection is sometimes supposed to work
+// Also skipped by Apple on Windows (rdar://problem/5015941)
+BUG20404 : LayoutTests/editing/execCommand/copy-without-selection.html = FAIL
+
+// This is a faulty test and need to change so it works on Windows.
+// onload race condition due to poorly designed test.
+// Works fine when run stand-alone. Not needed for Beta.
+// Also skipped by Apple on Windows, due to intermittent failure
+// (rdar://5313536)
+BUG10270 WIN : LayoutTests/fast/dom/frame-loading-via-document-write.html = TIMEOUT FAIL
+
+// -----------------------------------------------------------------
+// LIGHTTPD
+// -----------------------------------------------------------------
+// This are failing for different reasons under our new lighttpd configuration
+// TODO(deanm): Address all of these via lighttpd if possible, otherwise fork.
+// Maybe flaky and need to be forked?
+
+// Difference in caching headers
+BUG18978 MAC : LayoutTests/http/tests/xmlhttprequest/cache-override.html = FAIL
+// LightTPD doesn't accept unknown HTTP methods
+BUG18978 SKIP : LayoutTests/http/tests/xmlhttprequest/methods-lower-case.html = TIMEOUT CRASH
+BUG18978 : LayoutTests/http/tests/xmlhttprequest/methods-async.html = TIMEOUT
+BUG18978 LINUX MAC : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method.html = FAIL
+BUG18978 WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method.html = FAIL TIMEOUT
+// LightTPD doesn't accept unknown HTTP methods and passes CGIs a Content-Type
+// even when a request didn't send the header.
+BUG18978 WIN LINUX : LayoutTests/http/tests/xmlhttprequest/methods.html = FAIL
+BUG18978 MAC RELEASE: LayoutTests/http/tests/xmlhttprequest/methods.html = FAIL TIMEOUT
+BUG18978 MAC DEBUG: LayoutTests/http/tests/xmlhttprequest/methods.html = FAIL
+// This passes when run in Chrome. It appears to be because of a difference
+// in how lighttpd serves up the svn resource image (or the image
+// contained in the svg image).
+BUG18978 : LayoutTests/http/tests/security/canvas-remote-read-svg-image.html = FAIL
+// Another lighttpd quirk.
+BUG8941 LINUX WIN : LayoutTests/http/tests/xmlhttprequest/web-apps/013.html = FAIL
+BUG8941 MAC : LayoutTests/http/tests/xmlhttprequest/web-apps/013.html = FAIL TIMEOUT
+BUG8941 WIN LINUX : LayoutTests/http/tests/xmlhttprequest/web-apps/012.html = FAIL
+
+// -----------------------------------------------------------------
+// TEXT
+// -----------------------------------------------------------------
+
+// This class of test fails because of size differences in text runs.
+// Mostly this is because of international text rendering differences.
+
+// The complex charater composition is not working correctly in these tests.
+BUG20509 LINUX WIN : LayoutTests/fast/forms/input-text-maxlength.html = FAIL
+BUG20509 LINUX WIN : LayoutTests/fast/forms/input-text-paste-maxlength.html = FAIL
+
+// Incrorect results, in incorrect international font metrics.
+BUG20521 LINUX WIN : LayoutTests/fast/text/atsui-multiple-renderers.html = FAIL
+BUG20521 LINUX WIN : LayoutTests/fast/text/atsui-pointtooffset-calls-cg.html = FAIL
+BUG20521 LINUX WIN : LayoutTests/fast/text/atsui-rtl-override-selection.html = FAIL
+
+// This test checks that we hack around a bug in helvetica. We fail to.
+BUG20519 LINUX WIN : LayoutTests/fast/text/wide-zero-width-space.html = FAIL
+
+// More missing international text overides, not needed for Beta.
+// Capitalization results match Safari, even if "not fully correct"
+BUG20547 LINUX WIN : LayoutTests/fast/text/capitalize-boundaries.html = FAIL
+
+// Different button line-heights, our behavior looks wrong.
+BUG20551 LINUX WIN : LayoutTests/fast/forms/control-restrict-line-height.html = FAIL
+BUG20551 LINUX WIN : LayoutTests/fast/replaced/table-percent-height.html = FAIL
+BUG20551 LINUX WIN : LayoutTests/fast/replaced/table-percent-height-text-controls.html = FAIL
+
+
+// -----------------------------------------------------------------
+// URL
+// -----------------------------------------------------------------
+
+// Form submission (GET) on non-standard url does not append a query.
+// Defering these tests as the expected behavior is wonky, and shouldn't affect
+// existing apps one way or another.
+// Implicit expectation in this test is that you can "set query" on a data URL,
+// and it should replace the first "?" substring. This makes absolutely no
+// sense.
+BUG1089231 : LayoutTests/fast/events/stopPropagation-submit.html = FAIL
+
+BUG10271 MAC LINUX : LayoutTests/fast/events/dispatchEvent-crash.html = CRASH FAIL
+
+// -----------------------------------------------------------------
+// PENDING TESTS (forked to pending/, need to be sent upstream)
+// -----------------------------------------------------------------
+
+// These tests don't work with fast timers due to setTimeout
+// races. Pending versions have these fixed.
+// Upstreaming pending test needs work.
+// See https://bugs.webkit.org/show_bug.cgi?id=21536
+BUG972450 WIN LINUX : LayoutTests/fast/repaint/bugzilla-6473.html = PASS FAIL
+
+// -----------------------------------------------------------------
+// Tests deferred until we provide support for a particular feature.
+// -----------------------------------------------------------------
+
+// These tests rely on the keygen tag, we need to implement
+// WebCore::signedPublicKeyAndChallengeString to support them.
+BUG20566 : LayoutTests/fast/html/keygen.html = FAIL
+BUG20566 : LayoutTests/fast/invalid/residual-style.html = FAIL
+
+// -----------------------------------------------------------------
+// Other
+// -----------------------------------------------------------------
+
+// Vertical scrollbar created when there is no overflow.
+// See also https://bugs.webkit.org/show_bug.cgi?id=24434 .
+BUG20826 LINUX WIN : LayoutTests/fast/forms/textarea-scrollbar-height.html = FAIL
+
+// Pixeltest failure: Form control metrics incorrect
+BUG10273 LINUX : LayoutTests/http/tests/navigation/javascriptlink-frames.html = FAIL PASS
+
+// Mac Safari under certain circumstances automatically places
+// a caret in editable document even when none was requested programatically.
+// We don't intend to copy this feature (at least not for Beta).
+BUG20844 LINUX WIN : LayoutTests/editing/selection/designmode-no-caret.html = FAIL
+
+// The end result looks right, but the event messages differ.
+BUG845400 LINUX WIN : LayoutTests/editing/pasteboard/paste-xml.xhtml = FAIL
+
+// Directionality of mixed-direction text in selected choice should
+// match that in the <select> option lists.
+// Low priority, unclear if test expectations are correct (see bug)
+BUG849411 : LayoutTests/fast/forms/select-writing-direction-natural.html = FAIL
+
+// requires support for layoutTestController.encodeHostName()
+BUG850875 : LayoutTests/fast/encoding/idn-security.html = FAIL
+
+// These layout tests to see if link colors change after visiting a page. They
+// does this by using layoutTestController.keepWebHistory() to turn on a
+// temporary web history. layoutTestController.keepWebHistory() is not
+// implemented in test shell.
+// This is a test tool problem, not a Chrome problem.
+BUG852346 : LayoutTests/fast/history/clicked-link-is-visited.html = FAIL
+BUG842346 : LayoutTests/fast/history/subframe-is-visited.html = FAIL
+
+// We don't support NPN_Enumerate, but don't know of any plugin
+// which depends on that functionality. So we ignore this for beta.
+BUG849056 : LayoutTests/plugins/netscape-enumerate.html = FAIL
+
+// This tests the screen's pixel depth, which we don't set on the buildbots
+// so it depends on the users settings. Making this a broken test for us.
+// The test must be fixed to not depend on user settings and rebaselined. post-beta.
+BUG10274 WIN LINUX : LayoutTests/fast/dom/Window/window-screen-properties.html = FAIL PASS
+
+// Expectations for this test changed upstream. We should fix this test, but
+// it doesn't need to block the current release
+BUG10275 : LayoutTests/http/tests/security/cross-frame-access-put.html = FAIL
+
+// We don't support support window.resizeTo (nor is it planned for Beta)
+BUG982602 : LayoutTests/fast/dom/Window/window-resize-and-move-arguments.html = FAIL
+
+// TODO(joshia): Need some changes to the test shell in order to support
+// Java applet related unit tests. So disable the following for now.
+BUG879449 : LayoutTests/fast/replaced/applet-disabled-positioned.html = FAIL
+BUG879449 : LayoutTests/fast/replaced/applet-rendering-java-disabled.html = FAIL
+
+// Due to differences in error pages. Needs re-baselining.
+BUG1204878 : LayoutTests/http/tests/navigation/post-goback1.html = FAIL
+
+// Since we don't have Aqua-themed controls, don't ignore the
+// box-shadow properties of controls that request Aqua theming. But since Aqua
+// controls are rare on the web, defer this fix.
+BUG21118 WIN LINUX : LayoutTests/fast/forms/box-shadow-override.html = FAIL
+
+// These tests are not valid: the so-called expected results are not known to
+// be correct.
+// TODO(ojan): They are *our* tests.
+// It seems silly to skip our own tests when we can change/delete them.
+// I'm marking them as deferred for now, but we should do something with them.
+BUG849072 SKIP : chrome/http/mime = PASS
+
+// These tests all depend on DOM Storage events which are not yet supported.
+BUG4360 : LayoutTests/storage/domstorage/window-attributes-exist.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/localstorage/iframe-events.html = TIMEOUT
+BUG4360 : LayoutTests/storage/domstorage/sessionstorage/iframe-events.html = TIMEOUT
+BUG4360 : LayoutTests/storage/domstorage/localstorage/simple-events.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/sessionstorage/simple-events.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/localstorage/index-get-and-set.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/sessionstorage/index-get-and-set.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/localstorage/onstorage-attribute-markup.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/sessionstorage/onstorage-attribute-markup.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/localstorage/onstorage-attribute-setattribute.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/sessionstorage/onstorage-attribute-setattribute.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/localstorage/onstorage-attribute-setwindow.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/sessionstorage/onstorage-attribute-setwindow.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/localstorage/string-conversion.html = FAIL
+BUG4360 : LayoutTests/storage/domstorage/sessionstorage/string-conversion.html = FAIL
+
+// Our DOM Storage implementation doesn't use WebKit's private browsing feature (even for incognito mode).
+WONTFIX : LayoutTests/storage/domstorage/localstorage/private-browsing-affects-storage.html = FAIL
+WONTFIX : LayoutTests/storage/domstorage/sessionstorage/private-browsing-affects-storage.html = FAIL
+
+// Depends on SessionStorage. I'm not sure if this is working yet, but I don't think we need to SKIP it.
+BUG4360 : LayoutTests/http/tests/loading/deleted-host-in-resource-load-delegate-callback.html = TIMEOUT
+
+// Database
+BUG4359 SKIP : LayoutTests/storage/close-during-stress-test.html = PASS
+BUG4359 SKIP : LayoutTests/storage/database-lock-after-reload.html = PASS
+BUG4359 SKIP : LayoutTests/storage/empty-statement.html = PASS
+BUG4359 SKIP : LayoutTests/storage/execute-sql-args.html = PASS
+BUG4359 SKIP : LayoutTests/storage/hash-change-with-xhr.html = PASS
+BUG4359 SKIP : LayoutTests/storage/multiple-databases-garbage-collection.html = PASS
+BUG4359 SKIP : LayoutTests/storage/multiple-transactions.html = PASS
+BUG4359 SKIP : LayoutTests/storage/open-database-empty-version.html = PASS
+BUG4359 SKIP : LayoutTests/storage/private-browsing-readonly.html = PASS
+BUG4359 SKIP : LayoutTests/storage/quota-tracking.html = PASS
+BUG4359 SKIP : LayoutTests/storage/sql-data-types.html = PASS
+BUG4359 SKIP : LayoutTests/storage/sql-data-types.js = PASS
+BUG4359 SKIP : LayoutTests/storage/success-callback.html = PASS
+BUG4359 SKIP : LayoutTests/storage/transaction-callback-exception-crash.html = PASS
+BUG4359 SKIP : LayoutTests/storage/transaction-error-callback.html = PASS
+BUG4359 SKIP : LayoutTests/fast/js/exceptions-thrown-in-callbacks.html = PASS
+
+// Implement HTML5 Geolocation API.
+BUG11246 : LayoutTests/fast/dom/Geolocation = FAIL
+
+// Implement HTML5 EventSource API. Skipping, because most of these time out and
+// slow down the test run.
+BUG19625 SKIP : LayoutTests/fast/eventsource = TIMEOUT
+BUG19625 SKIP : LayoutTests/http/tests/eventsource = TIMEOUT
+
+// Implement HTML5 datalist element.
+BUG20226 : LayoutTests/fast/forms/datalist-nonoption-child.html = FAIL
+BUG20226 : LayoutTests/fast/forms/datalist.html = FAIL
+BUG20292 : LayoutTests/fast/forms/input-list.html = FAIL
+BUG20292 : LayoutTests/fast/forms/input-selectedoption.html = FAIL
+
+// Fails due to storage APIs not implemented. Might be worth re-baselining
+// temporarily so the rest of the conditions are still tested.
+BUG1124568 : LayoutTests/fast/dom/Window/window-function-name-getter-precedence.html = FAIL
+
+// These tests are disabled until <audio> and <video> tags are supported.
+// Disable <video> and <audio> tests for mac and linux until there is
+// proper support.
+BUG4363 LINUX MAC SKIP : LayoutTests/media = TIMEOUT
+BUG4363 LINUX MAC SKIP : LayoutTests/fast/media = PASS FAIL
+BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/media = FAIL
+BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/security/local-video-poster-from-remote.html = FAIL TIMEOUT
+BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/security/local-video-source-from-remote.html = PASS FAIL
+BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/security/local-video-src-from-remote.html = PASS FAIL
+
+// These tests are for <audio> and <video> and they do not run well on Windows.
+BUG13907 WIN SLOW : LayoutTests/http/tests/security/local-video-source-from-remote.html = FAIL
+BUG13907 WIN : LayoutTests/http/tests/media/remove-while-loading.html = FAIL
+BUG13907 WIN : LayoutTests/http/tests/media/video-play-stall-seek.html = FAIL
+BUG13907 WIN : LayoutTests/http/tests/media/video-play-stall.html = FAIL
+BUG13907 WIN : LayoutTests/http/tests/media/video-seekable-stall.html = FAIL
+
+// Disabling since try bots use Chromium FFmpeg DLLs, which means we can no
+// longer decode WebKit's test clips because they use H.264, AAC, etc.
+BUG16779 SKIP : LayoutTests/accessibility/media-element.html = TIMEOUT
+BUG16779 SKIP : LayoutTests/media/audio-constructor-autobuffer.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/audio-delete-while-slider-thumb-clicked.html = TIMEOUT
+BUG16779 SKIP : LayoutTests/media/audio-delete-while-step-button-clicked.html = TIMEOUT
+BUG16779 SKIP : LayoutTests/media/controls-after-reload.html = TIMEOUT
+BUG16779 SKIP : LayoutTests/media/controls-drag-timebar.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/controls-right-click-on-timebar.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/media-startTime.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/progress-event-total.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/progress-event.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/remove-from-document.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-append-source.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-aspect-ratio.html = FAIL
+BUG16779 SKIP : LayoutTests/media/video-autoplay.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-buffered.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-canvas-source.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-click-dblckick-standalone.html = PASS TIMEOUT CRASH
+BUG16779 SKIP : LayoutTests/media/video-controls-transformed.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-controls-zoomed.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-controls.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-currentTime-set.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-currentTime-set2.html = PASS FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-currentTime.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-display-toggle.html = FAIL TIMEOUT CRASH
+BUG16779 SKIP : LayoutTests/media/video-dom-autobuffer.html = PASS FAIL
+BUG16779 SKIP : LayoutTests/media/video-dom-autoplay.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-dom-src.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-error-abort.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-layer-crash.html = FAIL
+BUG16779 SKIP : LayoutTests/media/video-load-networkState.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-load-readyState.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-loop.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-muted.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-no-autoplay.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-pause-empty-events.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-play-empty-events.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-played-collapse.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-played-ranges-1.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-played-reset.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-seek-past-end-paused.html = PASS FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-seek-past-end-playing.html = PASS FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-seekable.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-seeking.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-size-intrinsic-scale.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-size.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-source-add-src.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-source-error.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-source-type-params.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-source-type.html = PASS FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-src-change.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-src-invalid-remove.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-timeupdate-during-playback.html = FAIL CRASH TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-transformed.html = FAIL
+BUG16779 SKIP : LayoutTests/media/video-volume.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-zoom.html = FAIL
+BUG19779 SKIP : LayoutTests/media/video-no-audio.html = TIMEOUT
+BUG16779 SKIP : LayoutTests/media/audio-constructor-src.html = FAIL
+BUG16779 SKIP : LayoutTests/media/audio-constructor.html = FAIL
+BUG16779 SKIP : LayoutTests/media/media-load-event.html = FAIL
+BUG16779 SKIP : LayoutTests/media/audio-controls-rendering.html = FAIL
+BUG16779 SKIP : LayoutTests/media/video-controls-visible-audio-only.html = FAIL
+BUG16779 SKIP : LayoutTests/media/progress-event-at-least-one.html = FAIL TIMEOUT
+BUG16779 SKIP : LayoutTests/media/video-controls-rendering.html = FAIL
+BUG16779 SKIP : LayoutTests/media/video-zoom-controls.html = FAIL
+BUG16779 SKIP : LayoutTests/media/video-error-does-not-exist.html = TIMEOUT
+// We don't support MP2 audio so skip this test.
+BUG16779 SKIP : LayoutTests/media/audio-mpeg-supported.html = FAIL
+// audio/3gpp mime type, does not play in Chromium yet.
+BUG16779 SKIP : LayoutTests/media/audio-data-url.html = FAIL
+
+// This test crashes in debug build not in release build.
+BUG13907 WIN : LayoutTests/media/video-can-play-type.html = FAIL
+// This test crashes in debug build.
+BUG13907 WIN DEBUG : LayoutTests/media/video-document-types.html = FAIL CRASH
+BUG13907 WIN RELEASE : LayoutTests/media/video-document-types.html = PASS FAIL
+//BUG13907 WIN : LayoutTests/media/video-src-remove.html = FAIL
+BUG13907 WIN : LayoutTests/media/controls-styling.html = FAIL
+BUG13907 SKIP : LayoutTests/media/controls-strict.html = FAIL
+BUG17397 SKIP WIN : LayoutTests/media/audio-no-installed-engines.html = FAIL
+
+// Very flakey after r24022. Not sure if because of that change though.
+BUG20004 WIN : LayoutTests/media/video-play-pause-events.html = TIMEOUT
+
+BUG13907 SKIP : LayoutTests/media/video-empty-source.html = TIMEOUT
+BUG13907 : LayoutTests/fast/layers/video-layer.html = FAIL
+BUG13907 WIN : LayoutTests/media/event-attributes.html = FAIL
+
+// Crash on Mac and Linux. Need investigation.
+BUG_JIANLI MAC LINUX : LayoutTests/fast/events/drag-to-navigate.html = TIMEOUT CRASH
+
+// Function arguments object is copied for each access.
+BUG941049 : LayoutTests/fast/js/kde/function_arguments.html = FAIL
+
+// Need a setAuthorAndUserStylesEnabled method in
+// layoutTestController. Now we have preference to enable/disable user
+// styles(not work now), we still need to add a preference to enable/disable
+// styles of both author and user.
+// Deferring, we don't support user-controlled UA stylesheets (in beta)
+// Actually, gonna SKIP because it causes an additional error message in:
+// LayoutTests/fast/css/display-none-inline-style-change-crash.html somehow
+// the message is dumped after the #EOF, which causes an additional
+// error in the header of the following test.
+BUG973468 SKIP : LayoutTests/fast/css/disabled-author-styles.html = FAIL
+
+// It looks like the upstream test is incorrectly using font-family: Times
+// instead of font-family: times new roman. This broke when we recently moved
+// more of our font default settings to 'times new roman' from 'Times'. This
+// should be fixed upstream. https://bugs.webkit.org/show_bug.cgi?id=16348
+BUG10277 LINUX : LayoutTests/fast/css/font-face-default-font.html = FAIL
+
+// We don't support dynamic fonts on Linux.
+// Once we have the sandbox working, we should re-evaluate this.
+BUG10278 LINUX : LayoutTests/fast/css/font-face-implicit-local-font.html = FAIL
+BUG10278 LINUX : LayoutTests/fast/css/font-face-unicode-range.html = FAIL
+
+// The v8 bindings allow shadowing of all properties on the global
+// object. If you use 'var prop = value' you will get a new variable
+// named prop that shadows builtin properties on the global object.
+// This behavior is consistent and I'm reluctant to make the massive
+// change that would be needed to implement the inconsistent handling
+// of this that KJS has (some properties can be shadowed and others
+// can't). This should have low priority.
+// We currently match IE and the plan was to convince KJS to change
+// post-beta, but the bug is here:
+// https://bugs.webkit.org/show_bug.cgi?id=16644 , and it's unclear
+// what the resolution was.
+// window-property-shadowing-name.html has also been affected by
+// r8532 and now fails.
+BUG10279 : LayoutTests/fast/dom/Window/window-property-shadowing-name.html = TIMEOUT FAIL
+BUG10279 : LayoutTests/fast/js/var-declarations-shadowing.html = FAIL
+
+// Implement full JSON support in V8
+BUG14885 : LayoutTests/fast/js/JSON-parse.html = FAIL
+BUG14885 : LayoutTests/fast/js/JSON-stringify.html = FAIL TIMEOUT
+BUG14885 : LayoutTests/fast/js/JSON-parse-reviver.html = FAIL
+BUG14885 : LayoutTests/fast/js/JSON-stringify-replacer.html = FAIL
+
+// User stylesheets not currently supported by chrome.
+// Webkit supports them by doing filesystem operations directly.
+// This is disallowed in a sandboxed renderer. The test fails in
+// test_shell.exe because the necessary filesystem stubs are notImplemented(),
+// and would need to be proxied through the browser
+BUG1042838 : LayoutTests/http/tests/security/local-user-CSS-from-remote.html = FAIL
+
+// Extra space at end of test results. Since this is a crash test, a
+// FAIL here is just as good as running the test normally.
+// FAIL results from an extra newline at the top of the results
+// the checked in results do not include the PASS text.
+// May only need re-baselining?
+BUG1126050 : LayoutTests/http/tests/navigation/changing-frame-hierarchy-in-onload.html = FAIL PASS
+
+// This test has hover effects that change the font size. This test also
+// moves the mouse around, resulting in a layout that dances around.
+// Depending upon when the snapshot is taken we get different results.
+BUG10280 WIN LINUX : LayoutTests/fast/inline/dirtyLinesForInline.html = FAIL PASS
+
+// Need to implement LayoutTestController.setCacheModel
+BUG13920 : LayoutTests/fast/dom/HTMLScriptElement/nested-execution.html = FAIL
+
+// Radial gradients don't have offset focal point
+BUG8696 WIN LINUX : LayoutTests/fast/gradients/generated-gradients.html = FAIL
+BUG8696 WIN LINUX : LayoutTests/fast/gradients/simple-gradients.html = FAIL
+BUG8696 WIN LINUX : LayoutTests/fast/gradients/crash-on-zero-radius.html = FAIL
+
+BUG10385 : LayoutTests/fast/dom/dom-constructors.html = FAIL
+BUG10387 SKIP : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-image-not-loaded-svg.svg = FAIL
+
+BUG10412 WIN LINUX : LayoutTests/fast/table/vertical-align-baseline.html = FAIL
+BUG20505 : LayoutTests/http/tests/misc/SVGFont-delayed-load.html = FAIL
+BUG20507 : LayoutTests/http/tests/uri/resolve-encoding-relative.html = FAIL
+
+BUG10401 : LayoutTests/plugins/npruntime.html = TIMEOUT FAIL
+BUG6735 : LayoutTests/plugins/netscape-throw-exception.html = FAIL
+
+BUG10432 WIN LINUX : LayoutTests/fast/overflow/004.html = FAIL
+BUG10433 : LayoutTests/fast/dom/Window/webkitConvertPoint.html = FAIL
+
+BUG9071 MAC WIN DEBUG SLOW : LayoutTests/editing/selection/drag-to-contenteditable-iframe.html = FAIL PASS
+BUG9071 LINUX : LayoutTests/editing/selection/drag-to-contenteditable-iframe.html = FAIL
+BUG10436 WIN LINUX : LayoutTests/fast/block/float/nested-clearance.html = FAIL
+
+
+// -----------------------------------------------------------------
+// SVG TESTS
+// -----------------------------------------------------------------
+
+// These are regressions from 1.0, but deemed DEFERable for 2.0.
+BUG8635 LINUX WIN : LayoutTests/svg/custom/pattern-y-offset.svg = FAIL
+BUG8635 LINUX WIN : LayoutTests/svg/batik/paints/patternRegions.svg = FAIL
+BUG8635 LINUX WIN : LayoutTests/svg/custom/pattern-cycle-detection.svg = FAIL
+
+// Shows garbage instead of an image
+BUG8635 LINUX WIN : LayoutTests/svg/W3C-SVG-1.1/struct-use-01-t.svg = FAIL
+
+BUG19559 LINUX WIN : LayoutTests/svg/batik/text/textEffect.svg = FAIL
+BUG19559 LINUX WIN : LayoutTests/svg/batik/text/textEffect3.svg = FAIL
+
+BUG8763 LINUX WIN : LayoutTests/svg/custom/use-on-g-containing-foreignObject-and-image.svg = FAIL
+
+// smiley.png should be shown with xml:base and xml:base on parent.
+BUG10281 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-image-07-t.svg = FAIL
+
+// Not showing images when they should be
+BUG10281 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-image-02-b.svg = FAIL
+BUG10281 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-symbol-01-b.svg = FAIL
+
+// Radial gradients with offset focal points are not implemented in Skia.
+// See comment in WebCore/platform/graphics/skia/GradientSkia.cpp
+BUG8696 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-13-b.svg = FAIL
+
+// Merge 39744:39829 - regression
+BUG10284 RELEASE : LayoutTests/svg/custom/path-bad-data.svg = FAIL
+
+// Upstream dumprendertree changes caused the expected to change.
+// Now our baseline is out of date, and we differ from Mac expected on the
+// caret position in the last line of the text output.
+BUG10285 WIN LINUX : LayoutTests/svg/custom/foreignObject-crash-on-hover.xml = FAIL
+
+// Merge 39744:39913? - regressions
+BUG10286 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-02-t.svg = FAIL PASS CRASH
+
+BUG10287 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/coords-units-01-b.svg = FAIL PASS
+
+BUG10288 WIN LINUX : LayoutTests/svg/batik/text/verticalText.svg = FAIL
+
+BUG10289 WIN LINUX : LayoutTests/svg/batik/masking/maskRegions.svg = FAIL
+
+// Bug in Skia, see https://bugs.webkit.org/show_bug.cgi?id=24534 .
+BUG10291 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-06-b.svg = FAIL
+BUG10291 WIN LINUX : LayoutTests/svg/batik/paints/patternRegionA.svg = FAIL
+BUG10291 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-pattern-01-b.svg = FAIL
+
+BUG10415 WIN LINUX : LayoutTests/svg/custom/pattern-with-transformation.svg = FAIL
+
+// -----------------------------------------------------------------
+// End SVG Regressions
+// -----------------------------------------------------------------
+
+// Selection wrong.
+BUG10292 MAC LINUX : LayoutTests/editing/selection/5354455-1.html = FAIL
+
+// Missing scrollbar.
+BUG10294 LINUX : LayoutTests/fast/frames/onlyCommentInIFrame.html = FAIL
+
+// Compact support was removed from WebKit by Hyatt and layout tests rebaselined in r40259.
+
+BUG10295 MAC : LayoutTests/fast/dom/prototype-chain.html = FAIL
+
+// Font differences, requiring overriden metrics, not a real bug, not fixing for Beta
+BUG10296 MAC : LayoutTests/fast/text/international/bidi-menulist.html = FAIL
+BUG10296 LINUX : LayoutTests/fast/transforms/transform-on-inline.html = FAIL
+BUG10296 LINUX : LayoutTests/fast/transforms/transform-table-row.html = FAIL
+BUG10296 LINUX : LayoutTests/svg/batik/paints/patternPreserveAspectRatioA.svg = FAIL
+// Needs to be rebaselined.
+BUG10296 LINUX : LayoutTests/svg/custom/deep-dynamic-updates.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/custom/foreign-object-skew.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-33-t.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/custom/gradient-stroke-width.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/custom/dominant-baseline-hanging.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/batik/text/textLength.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/batik/text/textProperties.svg = FAIL PASS
+BUG10296 LINUX : LayoutTests/svg/custom/gradient-stop-corner-cases.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/custom/pattern-deep-referencing.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/custom/text-dom-01-f.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/hixie/perf/007.xml = FAIL
+BUG10296 LINUX : LayoutTests/svg/hixie/text/003a.xml = FAIL
+BUG10296 LINUX : LayoutTests/svg/hixie/viewbox/preserveAspectRatio/001.xml = FAIL
+BUG10296 LINUX : LayoutTests/svg/hixie/viewbox/preserveAspectRatio/002.xml = FAIL
+BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-36-t.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-40-t.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-41-t.svg = FAIL
+BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-14-b.svg = FAIL
+
+// Pixel test passes. Texts differ by 1 on SVGRenderText bounding box.
+BUG10297 LINUX : LayoutTests/svg/custom/scrolling-embedded-svg-file-image-repaint-problem.html = FAIL
+
+// No anti-aliasing on the text.
+BUG10298 LINUX : LayoutTests/svg/custom/use-on-disallowed-foreign-object-3.svg = FAIL
+
+// Marking this again as failed. This test failed even after rebaseline due to
+// the fact that the font is not specified in the test and it seems that the
+// test falls back on a different font locally than on the buildbot so the
+// baseline is invalid. This might indicate a failure in our font fallback code
+// or might be expected and that we should either go with the buildbot output
+// or change the test upstream to specify explicitly what font to use.
+// The mask part of this test is totally wrong.
+BUG3244 LINUX WIN : LayoutTests/fast/backgrounds/svg-as-background-6.html = FAIL
+
+// The failures listed below have never passed in Chromium and need to be
+// investigated, categorized, and (one hopes) fixed.
+
+// These test fail full text diff (but not simplified diff) most likely due
+// to differing implementations of SVG fonts. They may or may not represent
+// real bugs which need fixin'
+
+// pixeltest failure: font baseline should be on the path, not the centerline
+// There's no baseline at all for this!
+BUG992321 SKIP : LayoutTests/svg/batik/text/smallFonts.svg = FAIL
+
+// pixeltest failure: font baseline should be on the path, not the centerline
+BUG992321 LINUX WIN : LayoutTests/svg/batik/text/verticalTextOnPath.svg = FAIL
+BUG992321 LINUX WIN : LayoutTests/svg/custom/path-textPath-simulation.svg = FAIL
+
+// This test fails because of an oddity in stroke width calculation. A
+// line is stroked horizontally from Y=100 with stroke width 100, we consider
+// it to be occupying the scan lines from Y=50 to Y=149 inclusive, which
+// is a total of 100 lines. Apple expects it to be occupying Y=150 as
+// well. The specification isn't very specific on which behavior is correct,
+// but I feel like ours makes more sense.
+// The crash started occuring after the WebKit merge 43242:43321
+BUG992321 : LayoutTests/svg/custom/stroke-width-click.svg = FAIL CRASH
+
+// The red marker is not drawing the same way as the mac.
+BUG992321 LINUX WIN : LayoutTests/svg/custom/marker-changes.svg = PASS FAIL
+
+BUG992321 LINUX WIN : LayoutTests/svg/hixie/text/003.html = FAIL
+
+// SVG combined with font metrics.
+BUG992321 LINUX : LayoutTests/svg/hixie/text/001-broken.xml = FAIL
+
+// This is an interesting one.
+// The test has an error which causes it to output a message to the console.
+// Apple's expected results include this error. Actually, Apple's expected
+// results include the error twice, because (apparently unique among console
+// debugging messages) it's generated during rendering. The problem is that
+// we end up invoking the renderer twice when we're doing pixel tests, once
+// otherwise, so we get different results depending on whether pixel tests are
+// enabled. (Neither matches Apple's exactly... when we have pixel tests on,
+// the duplicate error message ends up at the end of the file, while Apple's
+// results have them both at the top.) But this test doesn't represent a real
+// failure in any way and nothing needs to be done to fix it. I'm leaving it
+// in tests_fixable in case we change the test shell's webview delegate to
+// ignore console messages while doing a pixel dump
+BUG992321 : LayoutTests/svg/custom/clip-path-referencing-use2.svg = FAIL PASS
+
+// These two tests have a highlight color that is different from the Mac,
+// which is normal because selection color is different between Mac and
+// Windows, but even so it still doesn't look identical because there is still
+// some problem with the fill color for the text.
+BUG10300 WIN LINUX : LayoutTests/svg/text/text-deco-01-b.svg = FAIL
+BUG10300 LINUX : LayoutTests/svg/text/text-text-08-b.svg = FAIL PASS
+
+// SVG masks aren't quite working yet.
+// Might also be related to https://bugs.webkit.org/show_bug.cgi?id=21910
+// New tests. We should fix these, but they don't need to block the current release
+BUG3244 LINUX WIN : LayoutTests/fast/backgrounds/svg-as-mask.html = FAIL
+BUG3244 LINUX WIN : LayoutTests/fast/backgrounds/animated-svg-as-mask.html = FAIL
+
+BUG10302 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-10-b.svg = FAIL
+
+BUG10303 MAC : LayoutTests/svg/css/getComputedStyle-basic.xhtml = FAIL
+BUG10303 LINUX : LayoutTests/svg/custom/pattern-rotate.svg = FAIL
+
+// I find it hard to care too much about SVG failures.
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-04-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-05-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-06-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-07-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-30-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-desc-02-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/interact-zoom-01-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-spacing-01-b.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-text-01-b.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/batik/text/textPosition.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/carto.net/slider.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/carto.net/textbox.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/carto.net/window.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/custom/coords-relative-units-transforms.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/custom/use-referencing-nonexisting-symbol.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/hixie/perf/003.xml = FAIL
+BUG10304 LINUX : LayoutTests/svg/hixie/perf/004.xml = FAIL
+BUG10304 LINUX : LayoutTests/svg/hixie/perf/005.xml = TIMEOUT FAIL
+BUG10304 LINUX : LayoutTests/svg/hixie/perf/006.xml = FAIL
+BUG10304 LINUX : LayoutTests/svg/hixie/text/003b.xml = FAIL
+BUG10304 LINUX : LayoutTests/svg/text/text-spacing-01-b.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/text/text-text-01-b.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-01-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-02-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-03-b.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-04-b.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-05-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-06-t.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-07-b.svg = FAIL
+// Our gradients are wrong here.
+BUG10304 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-08-b.svg = FAIL
+BUG10304 LINUX : LayoutTests/svg/carto.net/button.svg = FAIL
+
+// New tests. We should fix these, but they don't need to block the current release
+BUG10305 WIN LINUX : LayoutTests/svg/custom/use-instanceRoot-as-event-target.xhtml = FAIL
+BUG10305 : LayoutTests/svg/custom/use-instanceRoot-event-listeners.xhtml = FAIL
+
+// Probably need to change the test upstream to describe it better and use no
+// hard coded numbers.
+BUG19897 WIN LINUX : LayoutTests/svg/custom/getscreenctm-in-mixed-content2.xhtml = FAIL
+
+BUG10306 LINUX : LayoutTests/svg/carto.net/combobox.svg = FAIL
+
+// There are a ugly room between black strokes and white painting of characters.
+BUG10307 WIN : LayoutTests/svg/W3C-SVG-1.1/filters-example-01-b.svg = FAIL
+
+// Linux pixeltest failure: slightly different shade of composited
+// alpha in bottom group.
+BUG10310 LINUX : LayoutTests/svg/W3C-SVG-1.1/masking-opacity-01-b.svg = FAIL
+
+// Fixed upstream, see https://bugs.webkit.org/show_bug.cgi?id=21910.
+// However, we need to support focal point for radial gradients.
+BUG8696 LINUX WIN : LayoutTests/fast/backgrounds/svg-as-background-3.html = FAIL
+
+//
+// -----------------------------------------------------------------
+// End of SVG tests
+// -----------------------------------------------------------------
+
+// This fails because of differences between how CG and Skia tests for
+// a point in a path. See
+// http://code.google.com/p/chromium/issues/detail?id=7465 for details.
+BUG10311 WIN LINUX : LayoutTests/fast/canvas/pointInPath.html = FAIL
+
+// These fail the pixel tests in debug mode because they have
+// unpainted space (filled red in Debug but not in Release).
+// https://bugs.webkit.org/show_bug.cgi?id=8423
+BUG1115062 WIN LINUX : LayoutTests/tables/mozilla_expected_failures/bugs/bug178855.xml = FAIL PASS
+
+// Fails on webkit windows as well.
+BUG1166644 WIN LINUX : LayoutTests/fast/events/attempt-scroll-with-no-scrollbars.html = FAIL
+
+// The test may require a proper version of Java 6 RC 10 plugin
+// installed to run.
+BUG10313 : LayoutTests/plugins/bindings-test.html = FAIL
+
+
+// No glyph for U+FFFD (Replacement Character : black diamond with
+// question mark) in them
+BUG10315 WIN LINUX : LayoutTests/fast/encoding/invalid-UTF-8.html = FAIL
+
+// These require application cache to be enabled. Skip the tests because
+// they're all timing out. TODO(tc): Upstream changes to the test so they
+// fail quickly if window.applicationCache is undefined (then we don't have to
+// skip them).
+BUG2844 SKIP : LayoutTests/http/tests/appcache = TIMEOUT FAIL
+
+// V8 failures as a result of the WebKit merge.
+// http://code.google.com/p/v8/issues/detail?id=92
+
+// v8: A setter that is added to a prototype after the inline cache is
+// recorded will not be called.
+BUG1344252 : LayoutTests/fast/js/pic/cached-prototype-setter.html = FAIL
+
+// We have the wrong shadow for "This".
+// It appears we're not obeying the "transparent" fill color.
+BUG10317 LINUX : LayoutTests/fast/css/shadow-multiple.html = FAIL
+
+// Problems with getImageData and toDataURL.
+// We should fix this test, but it wasn't passing for the 1.0 release, so
+// it doesn't need to block the current release
+BUG2972 LINUX WIN : LayoutTests/fast/canvas/canvas-getImageData.html = FAIL
+
+// We're much closer now. To fully pass this we need encoders for jpg
+// and gif, which is a low priority.
+BUG10318 WIN LINUX : LayoutTests/fast/canvas/toDataURL-supportedTypes.html = FAIL
+
+// More tests that fail because of masks not working properly.
+// New tests. We should fix these, but they don't need to block the current release
+BUG10319 WIN LINUX : LayoutTests/fast/backgrounds/mask-composite.html = FAIL
+BUG10319 WIN LINUX : LayoutTests/fast/backgrounds/repeat/mask-negative-offset-repeat.html = FAIL
+BUG10319 WIN LINUX : LayoutTests/fast/borders/block-mask-overlay-image.html = FAIL
+BUG10319 WIN LINUX : LayoutTests/fast/borders/inline-mask-overlay-image.html = FAIL
+
+// This test finishes while in the middle of a CSS animation. This is
+// intentional, but it makes pixel results unreliable.
+// http://bugs.webkit.org/show_bug.cgi?id=21491
+// CSS animations should not block our next release.
+BUG10320 SKIP : LayoutTests/transitions/opacity-transition-zindex.html = PASS
+
+// Issue 3273: TextInputController::firstRectForCharacterRange not implemented
+// http://code.google.com/p/chromium/issues/detail?id=3273
+BUG10321 : LayoutTests/editing/selection/move-left-right.html = FAIL
+BUG10321 MAC : LayoutTests/platform/mac/editing/input/caret-primary-bidi.html = FAIL
+BUG10321 MAC : LayoutTests/platform/mac/editing/input/firstrectforcharacterrange-plain.html = FAIL
+BUG10321 MAC : LayoutTests/platform/mac/editing/input/range-for-empty-document.html = FAIL
+
+// Regression from the 41362:41402 merge.
+BUG8402 MAC : LayoutTests/fast/forms/drag-out-of-textarea.html = FAIL PASS
+
+// This test fails because (in Chromium) it includes the full path to the
+// subframe URL. Need to teach dumpResourceLoadCallbacks() about relative
+// URLs.
+BUG8407 : LayoutTests/fast/loader/main-document-url-for-non-http-loads.html = FAIL
+
+// These tests are flaky as of 2009/06/09. Need to investigate.
+
+// <body><canvas height=100></canvas></body> is 1 px taller than upstream.
+BUG13809 WIN LINUX : LayoutTests/fast/canvas/canvas-empty-image-pattern.html = FAIL
+
+// We don't draw the spelling markers at all in test shell.
+BUG11577 WIN LINUX : LayoutTests/editing/spelling/inline_spelling_markers.html = FAIL
+BUG11577 LINUX : LayoutTests/editing/spelling/spellcheck-attribute.html = FAIL
+BUG11577 WIN LINUX : LayoutTests/editing/spelling/spelling-linebreak.html = FAIL
+
+// ----------------------------------------------------------------------------
+// NEW FOR THE MERGE
+//
+// These tests need to have their output inspected to make sure it's reasonable
+// and then baselined if necessary.
+// ----------------------------------------------------------------------------
+
+// Accessibility is off in the browser, and accessibility is not a priority
+// for the current release.
+// Need to implement window.accessibilityController for these to work.
+BUG10322 : LayoutTests/accessibility = FAIL PASS
+BUG10322 : LayoutTests/accessibility/non-native-image-crash.html = PASS
+BUG10322 : LayoutTests/accessibility/input-slider.html = TIMEOUT CRASH
+BUG10322 : LayoutTests/platform/mac/accessibility = FAIL
+BUG10322 : LayoutTests/platform/mac-snowleopard/accessibility = FAIL
+BUG10322 : LayoutTests/platform/win/accessibility = FAIL
+
+// Border radius not anti-aliased.
+// New test. We should fix it, but it doesn't need to block the current release
+BUG10322 WIN : LayoutTests/fast/borders/fieldsetBorderRadius.html = FAIL
+
+// This test isn't hanging, it just takes 12-13 seconds to run.
+BUG10322 SLOW : LayoutTests/http/tests/misc/acid3.html = FAIL
+
+// Has failed for Chromium since it was first checked in.
+BUG10323 : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-no-content-length-onProgress.html = FAIL
+
+// Times out because this uses dom storage which we don't implement.
+BUG4360 SKIP : LayoutTests/security/autocomplete-cleared-on-back.html = TIMEOUT
+
+// Post-MERGE failures: these will all need to be fixed one day
+
+// Linux pixeltest failure: caret is in the wrong place
+// Upstream WebKit also skips this test and Safari with latest WebKit shows
+// same behavior as Chromium. Not required for beta so marking as deferred.
+BUG10324 WIN LINUX : LayoutTests/editing/selection/caret-rtl-2.html = FAIL
+
+// This test assumes we're using unix paths and looks for a file:///test
+// path. We correctly return file:///C:/test on Windows. We should fix
+// upstream
+// Expectations for this test changed upstream. We should fix this test, but
+// it doesn't need to block the current release
+BUG10325 WIN : LayoutTests/fast/dom/resource-locations-in-created-html-document.html = FAIL
+
+BUG10326 DEBUG : LayoutTests/http/tests/messaging/cross-domain-message-event-dispatch.html = TIMEOUT FAIL PASS
+
+// GURL/KURL difference in handling of "http:".
+// New test. We should fix it, but it doesn't need to block the current release
+BUG7386 : LayoutTests/http/tests/security/postMessage/invalid-origin-throws-exception.html = FAIL
+
+// Linux pixeltest failure: Font mismatch
+BUG10327 LINUX : LayoutTests/tables/mozilla_expected_failures/bugs/bug14007-2.html = FAIL
+
+// On Linux, we don't seem to be getting Helvetica Bold for all cases.
+BUG10328 LINUX : LayoutTests/fast/css/font-face-multiple-faces.html = FAIL
+
+// Got flakey (both debug and release) around r3581 (ananta).
+// New test. We should fix it, but it doesn't need to block the current release
+BUG10329 WIN : LayoutTests/http/tests/plugins/geturlnotify-from-npp-destroystream.html = FAIL PASS
+
+// Uses ahem font and expects line heights to match some pixel value.
+// We should be able to pass this -- not sure what's wrong.
+BUG10331 LINUX : LayoutTests/css2.1/t1008-c44-ln-box-02-d-ag.html = FAIL
+
+// Looks like we're failing the test -- there are red boogers in the box that should be all green.
+BUG10332 LINUX : LayoutTests/css2.1/t1605-c545-txttrans-00-b-ag.html = FAIL
+
+// Linux: color off by one. Rounding error?
+BUG10333 LINUX : LayoutTests/editing/deleting/deletionUI-single-instance.html = FAIL
+
+BUG10334 MAC : LayoutTests/editing/selection/select-from-textfield-outwards.html = FAIL
+
+// Asks for "system" fonts, which we don't support at all.
+BUG10335 LINUX : LayoutTests/fast/css/css2-system-fonts.html = FAIL
+
+// Large fonts have different metrics.
+BUG10336 LINUX : LayoutTests/fast/css/font-face-descriptor-multiple-values.html = FAIL
+
+// Wants Helvetica, Monaco. It's still testing something useful, but we may
+// need to check in a wrong-looking baseline. Windows looks wrong too.
+BUG10337 LINUX : LayoutTests/fast/css/font-face-locally-installed.html = FAIL
+
+// Font metrics wrong, despite using Lucida Grande?
+BUG10338 LINUX : LayoutTests/fast/events/updateLayoutForHitTest.html = FAIL
+
+// Layout totally different -- wrong font selected?
+BUG10340 LINUX : LayoutTests/fast/frames/viewsource-attribute.html = FAIL
+
+// Linux flaky: sometimes I get scrollbars and sometimes not.
+BUG10341 LINUX : LayoutTests/fast/lists/001.html = FAIL PASS
+
+// We fail to load a file URL with a port number -- how does this work on
+// Windows?
+BUG10342 MAC LINUX : LayoutTests/fast/loader/file-URL-with-port-number.html = FAIL
+
+// Text doesn't display at all -- maybe we don't have the slow font
+// code enabled?
+BUG10343 LINUX : LayoutTests/fast/text/atsui-kerning-and-ligatures.html = FAIL
+BUG10343 LINUX : LayoutTests/fast/text/atsui-partial-selection.html = FAIL
+BUG10343 LINUX : LayoutTests/fast/text/atsui-small-caps-punctuation-size.html = FAIL
+BUG10343 LINUX : LayoutTests/fast/text/cg-vs-atsui.html = FAIL
+
+// Started timing out with agl's complext text change. Page is verrry slow.
+BUG10343 LINUX : LayoutTests/fast/text/large-text-composed-char.html = TIMEOUT FAIL
+
+// Missing text -- slow font path unimplemented?
+BUG10344 LINUX : LayoutTests/fast/text/should-use-atsui.html = FAIL
+
+// We print to stderr when a failure happens while importing XSL;
+// should disable this in libxml.
+BUG10347 MAC LINUX : LayoutTests/fast/xsl/transform-xhr-doc.xhtml = FAIL
+
+// Linux pixeltest failure: Failing to apply style
+BUG10349 LINUX : LayoutTests/fast/forms/select-style.html = FAIL
+
+// Linux pixeltest failure: The text suggests that the radios should not
+// overlap, but it's very close and quite different from the Windows version
+BUG10350 LINUX : LayoutTests/fast/replaced/width100percent-radio.html = FAIL
+
+// Linux pixel tests: the select arrow is clipping wrong on one line.
+BUG10666 LINUX : chrome/fast/forms/basic-selects.html = FAIL
+
+// These tests are marked as failing on Linux because they depend on QuickTime.
+// See the bug for more discussion.
+BUG15797 LINUX : LayoutTests/fast/dom/object-embed-plugin-scripting.html = FAIL
+BUG15797 LINUX : LayoutTests/plugins/embed-attributes-setting.html = FAIL
+
+// Depends on plugin support.
+BUG10351 MAC : LayoutTests/accessibility/plugin.html = FAIL
+BUG10351 MAC : LayoutTests/fast/dom/object-embed-plugin-scripting.html = FAIL
+
+BUG10351 MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug8499.html = FAIL
+BUG10673 MAC : chrome/plugins/call-as-function.html = FAIL
+BUG10351 MAC : LayoutTests/http/tests/plugins/cross-frame-object-access.html = FAIL
+// Skip because we throw an exception before we get to dumpAsText.
+BUG10351 SKIP MAC : LayoutTests/http/tests/plugins/geturlnotify-from-npp-destroystream.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/embed-attributes-setting.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/embed-inside-object.html = TIMEOUT
+BUG10351 MAC : LayoutTests/plugins/get-empty-url.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/get-url-that-the-resource-load-delegate-will-disallow.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/getintidentifier-special-values.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/geturl-replace-query.html = TIMEOUT
+BUG10351 MAC : LayoutTests/plugins/inner-html-display-none.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/invoke.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/mouse-events.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/netscape-destroy-plugin-script-objects.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/netscape-dom-access.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/netscape-get-property-return-value.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/netscape-identifier-conversion.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/netscape-invoke-default.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/plugin-remove-subframe.html = FAIL
+BUG10351 MAC : LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html = TIMEOUT
+BUG10351 MAC : LayoutTests/plugins/netscape-plugin-map-data-to-src.html = FAIL
+BUG10667 MAC : chrome/plugins/get-file-url.html = TIMEOUT
+// Skip because we throw an exception before we get to dumpAsText.
+BUG10667 SKIP MAC : chrome/plugins/get-url-with-blank-target.html = FAIL
+BUG10667 MAC : chrome/plugins/multiple-plugins.html = FAIL
+BUG10667 MAC : chrome/plugins/nested-plugin-objects.html = FAIL
+BUG10667 MAC : chrome/plugins/refcount-leaks.html = FAIL
+BUG10667 MAC : chrome/plugins/return-npobject.html = FAIL
+BUG10667 MAC : chrome/plugins/script-object-invoke.html = FAIL
+BUG10667 MAC : pending/plugins/iframe-shims.html = FAIL
+
+// NEW FOR MERGE 36102:37604
+
+// New test. We should fix it, but it doesn't need to block the current release
+BUG10352 : LayoutTests/fast/js/arguments.html = FAIL
+// New test. We should fix it, but it doesn't need to block the current release
+BUG10352 : LayoutTests/fast/js/primitive-method-this.html = FAIL
+// See bug http://code.google.com/p/chromium/issues/detail?id=7868,
+// not urgent for current release.
+BUG10352 : LayoutTests/http/tests/plugins/local-geturl-from-remote.html = FAIL
+// These two depend on which webkit features are enabled. For instance, it checks
+// if the Audio constructor is available which is only the case if AUDIO is enabled.
+BUG10352 : LayoutTests/fast/dom/constructors-cached-navigate.html = FAIL
+
+// MERGE REGRESSIONS 36102:37604
+
+BUG10353 LINUX : LayoutTests/fast/events/mouse-click-events.html = FAIL
+// These tests are wrong because of:
+// https://bugs.webkit.org/show_bug.cgi?id=24161. This is not
+// important for current release.
+BUG10353 WIN LINUX : LayoutTests/fast/forms/listbox-deselect-scroll.html = FAIL
+BUG10353 WIN LINUX : LayoutTests/fast/forms/listbox-selection-2.html = FAIL
+BUG10353 WIN LINUX : LayoutTests/fast/forms/select-item-background-clip.html = FAIL
+BUG10353 WIN LINUX : LayoutTests/fast/forms/textarea-rows-cols.html = FAIL
+
+// Form control scrollbars seem to be drawn incorrectly.
+BUG10353 LINUX : LayoutTests/fast/replaced/width100percent-textarea.html = FAIL
+BUG10668 : chrome/fast/dom/xss-DENIED-javascript-variations.html = FAIL
+// This test sometimes fails indefinitely, other times it takes 1-2 seconds.
+BUG14009 WIN MAC LINUX : LayoutTests/http/tests/misc/dns-prefetch-control.html = TIMEOUT PASS FAIL
+
+// NEW FOR MERGE 37604:38097
+// This is a Safari specific test used to document the set of global
+// constructors they expose and the exact way they are printed. Not
+// important - we might even want to ignore it.
+// New tests. We should fix these, but they doesn't need to block the current
+// release
+BUG10354 WIN LINUX : LayoutTests/fast/layers/opacity-transforms.html = FAIL
+BUG10354 MAC : LayoutTests/plugins/netscape-construct.html = FAIL
+
+// MERGE 38389:38450
+// WebKit regression: https://bugs.webkit.org/show_bug.cgi?id=20342
+// Fails upstream, deferring for now.
+BUG10357 : LayoutTests/fast/dom/cssTarget-crash.html = TIMEOUT CRASH
+
+// MERGE 38500:39550: New tests
+// Missing expected results
+BUG10358 SKIP MAC LINUX : LayoutTests/animations/animation-drt-api.html = PASS
+
+// MERGE 38625:38653: Expectations changed upstream
+BUG10359 MAC : LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer.html = FAIL
+
+// MERGE 38625:38653: New tests
+BUG10360 MAC : LayoutTests/fast/css/getComputedStyle/computed-style.html = FAIL
+
+
+// MERGE 38653:38729: New tests
+
+// New test. We should fix it, but it doesn't need to block the current release
+BUG10361 : LayoutTests/http/tests/misc/single-character-pi-stylesheet.xhtml = FAIL
+
+// Windows is missing the green box.
+BUG8729 WIN : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL
+
+// -----------------------------------------------------------------
+// MAC PORT TESTS
+// -----------------------------------------------------------------
+
+//
+// *** TESTS TO WORK ON FIRST ***
+// These tests fail because of work that needs to be done in Mac TestShell to
+// bring it up to par with Win TestShell. These tests pass on Win and should
+// pass on Mac once we fix the bugs.
+//
+
+// We've bucketed tests into groupings for why they're failing. Please try
+// to add new failures in the appropriate bucket.
+
+// text fields wrong width
+BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug53690-1.html = FAIL
+BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug9024.html = FAIL
+BUG10670 MAC : chrome/fast/forms/basic-buttons.html = FAIL
+BUG10670 MAC : chrome/fast/forms/basic-inputs.html = FAIL
+BUG10670 MAC : chrome/fast/forms/basic-selects.html = FAIL
+
+// we're waiting on upstreaming a change to how textarea padding works. rather
+// than rebasing, we'll wait for the upstream (which ojan said should happen
+// early in Jan 09).
+BUG10364 MAC : LayoutTests/fast/css/resize-corner-tracking.html = FAIL
+BUG10364 MAC : LayoutTests/http/tests/navigation/reload-subframe-object.html = TIMEOUT FAIL
+
+// bad key event handling
+BUG10366 MAC : LayoutTests/fast/events/option-tab.html = FAIL
+
+// event failures
+BUG10367 MAC : LayoutTests/fast/events/attempt-scroll-with-no-scrollbars.html = CRASH FAIL
+
+// selection
+BUG10369 MAC : LayoutTests/editing/selection/5109817.html = FAIL
+BUG10369 LINUX : LayoutTests/editing/selection/5354455-2.html = FAIL
+
+// incorrect layout
+BUG10370 MAC : LayoutTests/fast/css/font-weight-1.html = FAIL
+
+// not loading local files
+BUG10371 SLOW MAC : LayoutTests/fast/loader/local-CSS-from-local.html = FAIL
+BUG10371 MAC : LayoutTests/fast/loader/local-JavaScript-from-local.html = FAIL TIMEOUT
+BUG10371 MAC : LayoutTests/fast/loader/local-image-from-local.html = FAIL
+
+// Error from CGImageSourceUpdateData but everything else is correct.
+BUG10373 MAC : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL
+
+// window.open crashes (some of these are flaky, in that they don't always
+// crash, and are noted as such)
+BUG10374 MAC : LayoutTests/plugins/open-and-close-window-with-plugin.html = CRASH TIMEOUT FAIL
+
+// Not really sure why these are failing at the moment
+BUG10376 MAC : LayoutTests/fast/dom/isindex-002.html = FAIL
+BUG10376 MAC : LayoutTests/fast/events/init-events.html = FAIL
+
+// These two have a different object type in the dom dump. Plugin-related.
+// Ignored on Win/Linux because they rely on QT to provide a TIFF decoder.
+BUG10378 MAC : LayoutTests/fast/images/embed-image.html = FAIL CRASH
+BUG10378 MAC : LayoutTests/fast/images/object-image.html = FAIL CRASH
+
+BUG10381 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-03-t.svg = FAIL PASS
+
+// These may be similar timing issue as above.
+BUG10382 MAC RELEASE : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
+BUG10382 MAC : LayoutTests/transitions/shorthand-border-transitions.html = FAIL PASS
+
+// The following are flaky in that some times the timeout or crash, but we think
+// it is because of bugs in other parts of the code and not specific to what
+// these tests are doing. The are being noted here so we can get the buildbots
+// green so new mac regressions are caught much quicker.
+// (there are a few others marked w/ multiple status like this in other parts of
+// the file, but they were left there as the comments in those areas are valid.)
+BUG10384 MAC : LayoutTests/fast/dom/Window/new-window-opener.html = CRASH TIMEOUT FAIL
+BUG10384 MAC : LayoutTests/fast/forms/focus2.html = CRASH FAIL
+
+BUG10384 MAC : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = TIMEOUT FAIL PASS
+
+BUG10399 MAC : LayoutTests/fast/encoding/char-encoding-mac.html = FAIL
+
+// -----------------------------------------------------------------
+// END MAC PORT TESTS
+// -----------------------------------------------------------------
+
+// Linux pixeltest failure: alpha=0.5 red (1,0,0) atop yellow (1,1,0) is
+// coming out with with a slightly-less-than-100% red channel. This test fails
+// because we enforce non-transparent color in Font::drawGlyphs.
+BUG700464 LINUX : LayoutTests/fast/css/hsla-color.html = FAIL
+
+// Implement layoutTestController.testRepaint()
+BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-horizontal.html = FAIL
+BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-strict-horizontal.html = FAIL
+BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-strict-vertical.html = FAIL
+BUG21510 WIN LINUX : LayoutTests/fast/repaint/shadow-multiple-vertical.html = FAIL
+BUG21510 WIN LINUX : LayoutTests/fast/repaint/text-shadow-horizontal.html = FAIL
+BUG21510 WIN LINUX : LayoutTests/fast/repaint/text-shadow.html = FAIL
+
+// Implement layoutTestController.display()
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/body-background-image.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/clip-with-layout-delta.html = FAIL
+
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-1.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-2.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-6.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-8.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-flow-with-floats-9.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/line-overflow.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/make-children-non-inline.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/overflow-outline-repaint.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/repaint/selected-replaced.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/canvas/canvas-incremental-repaint-2.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/canvas/canvas-incremental-repaint.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/backgrounds/solid-color-context-restore.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/dynamic/containing-block-change.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/forms/hidden-listbox.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/forms/listbox-clip.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/overflow/hidden-scrollbar-resize.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/reflections/inline-crash.html = FAIL
+BUG8630 WIN LINUX : LayoutTests/fast/text/font-initial.html = FAIL
+BUG8630 WIN LINUX : pending/fast/repaint/bugzilla-6473.html = FAIL
+
+BUG8630 LINUX : LayoutTests/svg/custom/use-detach.svg = FAIL PASS
+
+BUG18772 LINUX : LayoutTests/fast/backgrounds/001.html = CRASH FAIL PASS
+
+// Linux checksum computation produces results, different from Windows or upstream.
+BUG21386 LINUX : LayoutTests/fast/repaint/erase-overflow.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/inline-block-resize.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/inline-overflow.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/invisible-objects.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/layer-full-repaint.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/layer-hide-when-needs-layout.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/layer-visibility.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/overflow-clip-subtree-layout.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/subtree-root-clip-2.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/subtree-root-clip-3.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/subtree-root-clip.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/table-col-background.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/table-row.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/repaint/table-section-overflow.html = FAIL
+BUG21386 LINUX : LayoutTests/fast/layers/layer-content-visibility-change.html = FAIL
+
+// Linux pixeltest failure: Failing to rotate the form control
+BUG10390 LINUX : LayoutTests/fast/transforms/transformed-focused-text-input.html = FAIL
+
+// TODO(tc): flaky.
+BUG10391 LINUX : LayoutTests/fast/events/5056619.html = FAIL PASS
+
+// Failed with r6844 (dglazkov)
+BUG10392 MAC LINUX : LayoutTests/http/tests/navigation/error404-goback.html = TIMEOUT FAIL
+
+// This test appears to pass on Linux, despite it referencing feed:// URLs which
+// we don't support. Needs more investigation.
+// Expectations for this test changed upstream. We should fix this test, but
+// it doesn't need to block the current release
+BUG10393 : LayoutTests/http/tests/security/feed-urls-from-remote.html = FAIL PASS
+
+// Skipped as this tests window.sessionStorage, which we don't
+// support. Enable once we turn on DOM_STORAGE.
+BUG4360 SKIP : LayoutTests/http/tests/navigation/post-goback-repost-policy.html = TIMEOUT
+
+// Probably just needs to be rebaselined. We generate the png before the
+// image in the iframe loads so its dimensions are 0x0.
+// TODO(tc): Failing on buildbots
+BUG10394 WIN LINUX : LayoutTests/fast/events/standalone-image-drag-to-editable.html = FAIL
+
+// Merge 39309:39335 Regressions (RenderButton::setupInnerStyle regression).
+BUG5737 LINUX : LayoutTests/fast/box-sizing/percentage-height.html = FAIL
+BUG5737 LINUX : LayoutTests/fast/forms/001.html = FAIL
+BUG5737 LINUX : LayoutTests/fast/forms/input-first-letter.html = FAIL
+
+// The (x) in type=search inputs appears to be slightly broken. This test will also need a rebaseline.
+BUG20439 WIN LINUX : LayoutTests/fast/forms/search-transformed.html = FAIL
+
+// Linux's rotated text output looks terrible.
+BUG10397 LINUX : LayoutTests/fast/transforms/transformed-document-element.html = FAIL
+
+// Merge 39744:39913? - regressions
+BUG10403 LINUX : LayoutTests/http/tests/misc/uncacheable-script-repeated.html = TIMEOUT PASS
+BUG10403 LINUX : LayoutTests/svg/custom/animate-path-morphing.svg = FAIL PASS
+BUG10403 LINUX : LayoutTests/svg/custom/circular-marker-reference-1.svg = FAIL PASS
+BUG10403 LINUX : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
+
+// might need to be rebaselined in win, 'DRAFT' rendering incorrect before
+BUG10405 WIN : LayoutTests/svg/custom/struct-use-09-b.svg = FAIL
+
+// Popup-menu doesn't draw in layout tests
+BUG10408 MAC : LayoutTests/fast/forms/menulist-no-overflow.html = FAIL
+
+// Pass locally but fail on the bots.
+BUG10409 MAC : LayoutTests/fast/forms/002.html = FAIL
+BUG10409 MAC LINUX : LayoutTests/svg/custom/clip-path-units-changes.svg = FAIL
+
+// intermittent failures on the buildbot
+BUG10411 : LayoutTests/svg/custom/gradient-stop-style-change.svg = FAIL PASS
+
+// New tests added in http://trac.webkit.org/changeset/40424
+// Renders the width of "600" off by 3. Looks OK but could still be a bug
+// that we shouldn't rebaseline.
+BUG10417 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-fonts-02-t.svg = FAIL
+BUG10417 LINUX : LayoutTests/svg/text/text-fonts-02-t.svg = FAIL
+
+// New test. We should fix it, but it doesn't need to block the current release
+BUG10418 WIN LINUX : LayoutTests/transitions/zero-duration-with-non-zero-delay-end.html = FAIL PASS
+BUG10418 SLOW MAC : LayoutTests/fast/events/click-count.html = PASS
+BUG10418 WIN LINUX : LayoutTests/animations/change-keyframes.html = FAIL PASS
+
+// TODO(dsh): These started to fail after r9202.
+BUG10419 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-path-01-b.svg = FAIL
+BUG10419 LINUX : LayoutTests/svg/text/text-path-01-b.svg = FAIL
+
+// We could fix this test for us and upstream it if the test shell user agent
+// would let us differentiate test_shell and WebKit DumpTreeNode.
+BUG7482 : LayoutTests/http/tests/misc/timer-vs-loading.html = FAIL PASS TIMEOUT
+
+// Regressions from WebKit merge 40722:40785
+//
+// These ones look to just need fresh pixel baselines (likely caused by
+// transformation matrices now using doubles instead of floats):
+BUG10420 LINUX : LayoutTests/fast/transforms/matrix-02.html = FAIL
+// Misc failures:
+// New test. We should fix it, but it doesn't need to block the current release
+BUG10420 LINUX : LayoutTests/svg/W3C-SVG-1.1/types-basicDOM-01-b.svg = FAIL
+BUG10420 LINUX : LayoutTests/svg/custom/use-transform.svg = FAIL
+
+// Regressions from WebKit merge to 40864
+// Likely just needs a rebaseline.
+BUG10421 LINUX : LayoutTests/fast/block/positioning/001.html = FAIL PASS
+
+// Regressions from WebKit merge 40847-40875
+BUG10423 LINUX : LayoutTests/fast/box-shadow/basic-shadows.html = FAIL
+
+// Regressions from WebKit merge 40875:41017
+BUG10426 LINUX : LayoutTests/fast/css-generated-content/beforeAfter-interdocument.html = FAIL
+// Selection highlight colors are wrong.
+BUG10426 LINUX : LayoutTests/fast/lists/drag-into-marker.html = FAIL
+
+// Flaky since the merge 41017:41057.
+BUG10428 WIN LINUX : LayoutTests/fast/canvas/fillrect_gradient.html = FAIL PASS
+
+// It's not clear that the test isn't wrong here. It believes that middle
+// aligning 15px Ahem should end up in a certain spot. But we have the
+// x-height correct and we're still one px off.
+BUG10429 LINUX : LayoutTests/css2.1/t100801-c544-valgn-01-d-ag.html = FAIL
+
+// New failures from Merge 41078:41149
+BUG10430 LINUX : LayoutTests/fast/text/atsui-spacing-features.html = FAIL
+BUG10430 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-intro-05-t.svg = FAIL
+BUG10430 LINUX : LayoutTests/svg/text/text-fonts-01-t.svg = FAIL
+BUG10430 LINUX : LayoutTests/svg/text/text-intro-05-t.svg = FAIL
+
+// New tests from merge 41181:41217
+
+// Regressions from merge 41217:41268
+// Other failures
+BUG10434 LINUX : LayoutTests/css1/text_properties/vertical_align.html = FAIL
+// SVG Mask-related tests. Most likely result of http://trac.webkit.org/changeset/41266.
+BUG10434 LINUX : LayoutTests/svg/W3C-SVG-1.1/masking-intro-01-f.svg = FAIL
+
+// Regression from merge 41268:41286
+// We don't render linear gradient on text stroke.
+BUG10435 LINUX : LayoutTests/fast/canvas/canvas-text-alignment.html = FAIL
+BUG10435 MAC : LayoutTests/editing/pasteboard/copy-standalone-image.html = FAIL
+// See above comment about this test on linux/win.
+BUG10435 MAC : LayoutTests/editing/selection/designmode-no-caret.html = FAIL
+BUG10435 DEBUG WIN : LayoutTests/editing/selection/move-by-line-001.html = FAIL PASS
+
+// New tests added in the 41420:41447 merge that fail (just needs a new baseline):
+BUG10437 LINUX : LayoutTests/fast/css-generated-content/hit-test-generated-content.html = FAIL
+
+// From webkit merge 41447:41498
+BUG10438 MAC : LayoutTests/plugins/netscape-plugin-setwindow-size-2.html = FAIL
+BUG10438 MAC : LayoutTests/plugins/netscape-plugin-setwindow-size.html = FAIL
+BUG10438 MAC : LayoutTests/plugins/destroy-stream-twice.html = TIMEOUT
+
+// Flakey. Not clear when it started, but it was before 3/9/09.
+// This test also started failing with the merge of March 25th 2009
+BUG10441 LINUX : LayoutTests/fast/clip/outline-overflowClip.html = FAIL PASS
+BUG10441 LINUX DEBUG : LayoutTests/transitions/transition-end-event-transform.html = FAIL PASS
+
+// Timing out starting 03/10/09
+BUG10442 MAC : LayoutTests/fast/dom/navigator-detached-no-crash.html = TIMEOUT PASS FAIL
+
+// The text extends outside the selection on linux (was happening before the
+// merge).
+BUG10446 LINUX : LayoutTests/editing/execCommand/selectAll.html = FAIL
+
+// Regressions from merge 41559:41588, probably just needs rebaselining.
+BUG10675 MAC : chrome/fast/forms/basic-textareas-quirks.html = FAIL
+BUG10675 MAC : chrome/fast/forms/basic-textareas.html = FAIL
+
+// Started failing 3/12/09. Unclear which CL caused it though.
+BUG10448 MAC : LayoutTests/fast/overflow/image-selection-highlight.html = FAIL
+
+// Newly added tests with merge 41588:41613.
+// They pass on windows given a new baseline and likely only need to be given
+// platform specific baselines for Linux and Mac.
+BUG10450 LINUX : LayoutTests/fast/css/percent-top-value-with-relative-position.html = FAIL
+
+// Newly added test from 41613:41660 -- relies on ScriptCallStack::state() -- dglazkov should fix.
+BUG9156 MAC LINUX WIN : LayoutTests/fast/js/console-non-string-values.html = FAIL
+
+// New failures from 41660:41709
+// Newly added tests.
+BUG9161 MAC LINUX WIN : LayoutTests/fast/forms/basic-textareas.html = FAIL
+BUG20894 : LayoutTests/http/tests/xmlhttprequest/access-control-basic-whitelist-request-headers.html = FAIL
+
+// Tests that fail in debug mode on linux
+BUG10454 DEBUG LINUX : LayoutTests/svg/custom/mask-excessive-malloc.svg = CRASH
+
+// This test hits a stack-overflow exception earlier in debug mode than in
+// release mode on Windows.
+//
+// Hits the stack overflow earlier than before the new compiler in both
+// release and debug mode on Linux and Mac.
+//
+// http://code.google.com/p/v8/issues/detail?id=277
+BUG10457 MAC : LayoutTests/fast/js/large-expressions.html = FAIL
+BUG10457 DEBUG WIN : LayoutTests/fast/js/large-expressions.html = FAIL
+
+
+// Merge 41768:41807
+// Perhaps just needs new baseline?
+// These tests were rebaselined with failure long ago. We shouldn't do this, and
+// instead work upstream to improve tests so that they don't fail.
+// Linux-only failures
+BUG10458 LINUX : LayoutTests/editing/inserting/6633727.html = FAIL
+BUG10458 LINUX : LayoutTests/fast/block/float/overlapping-floats-with-overflow-hidden.html = FAIL
+BUG10458 MAC LINUX : LayoutTests/fast/dom/java-applet-calls.html = FAIL
+// Just need rebaseline
+BUG10458 LINUX : LayoutTests/fast/forms/textarea-width.html = FAIL
+BUG10458 LINUX : LayoutTests/fast/parser/comment-in-textarea.html = FAIL
+
+// Missing expected results
+BUG10461 SKIP : LayoutTests/platform/mac/fast/text/international/Geeza-Pro-vertical-metrics-adjustment.html = PASS
+
+// New failures from merge
+BUG10463 WIN LINUX : LayoutTests/editing/selection/hit-test-anonymous.html = FAIL
+BUG10463 WIN LINUX : LayoutTests/fast/forms/listbox-hit-test-zoomed.html = FAIL
+BUG10463 WIN LINUX : LayoutTests/fast/forms/slider-zoomed.html = FAIL
+
+// New tests, need Chromium baseline.
+BUG10465 LINUX : LayoutTests/fast/borders/border-image-border-radius.html = FAIL
+BUG10465 LINUX : LayoutTests/fast/clip/overflow-border-radius-clip.html = FAIL
+
+// Needs rebaseline. See WebKit 41948
+BUG10468 MAC : LayoutTests/fast/replaced/border-radius-clip.html = FAIL
+BUG10468 WIN DEBUG : LayoutTests/fast/replaced/border-radius-clip.html = FAIL
+
+// Mac flaky failures.
+BUG10472 MAC : LayoutTests/svg/css/glyph-orientation-rounding-test.xhtml = FAIL PASS
+
+// <input type="search">; various failures, some tests may simply need new
+// baselines, others have more problems.
+BUG10473 LINUX : LayoutTests/fast/forms/placeholder-pseudo-style.html = FAIL
+BUG10473 LINUX : LayoutTests/fast/forms/placeholder-set-value.html = FAIL
+BUG10473 LINUX : LayoutTests/fast/forms/search-display-none-cancel-button.html = FAIL
+BUG10473 LINUX : LayoutTests/fast/forms/search-placeholder-value-changed.html = FAIL
+BUG10473 LINUX : LayoutTests/fast/forms/searchfield-heights.html = FAIL
+BUG10473 LINUX : LayoutTests/fast/replaced/width100percent-searchfield.html = FAIL
+
+// Changed in http://trac.webkit.org/changeset/42082
+BUG9704 : LayoutTests/http/tests/navigation/onload-navigation-iframe-timeout.html = TIMEOUT
+BUG9704 : LayoutTests/http/tests/navigation/onload-navigation-iframe.html = TIMEOUT
+BUG10477 : LayoutTests/http/tests/navigation/onload-navigation-iframe-2.html = TIMEOUT
+
+// Merge WebKit: 42026:42115 new tests
+BUG10475 WIN LINUX : LayoutTests/fast/block/positioning/negative-rel-position.html = FAIL
+// This test isn't just slow -- sometimes it times out indefinitely.
+BUG10475 WIN : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html = TIMEOUT PASS
+BUG10475 MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html = TIMEOUT PASS
+BUG10475 WIN LINUX : LayoutTests/fast/forms/range-thumb-height-percentage.html = FAIL
+
+SKIP BUG9613 : LayoutTests/fast/dom/clientWidthAfterDocumentIsRemoved.html = PASS
+
+BUG10476 WIN RELEASE: LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-post.html = FAIL PASS
+
+// Merge WebKit 42133:42199 regressions
+BUG10477 LINUX : LayoutTests/fast/events/context-no-deselect.html = FAIL
+// All platforms fail because Chrome allows XHR to local directories and Safari doesn't.
+// Mac also has unimplemented test shell features.
+BUG20450 LINUX WIN : LayoutTests/fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html = FAIL
+BUG20458 MAC : LayoutTests/fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html = FAIL
+// Flaky since rev 13111.
+BUG10478 MAC : LayoutTests/fast/events/standalone-image-drag-to-editable.html = FAIL PASS
+
+// These tests were affected by rolling out WebKit i8n patches.
+// Was only WIN, also fail on LINUX since merge 43346:43361
+BUG9768 LINUX WIN : LayoutTests/fast/forms/select-initial-position.html = FAIL
+// Was only WIN, also fail on LINUX since merge 43346:43361
+BUG9768 LINUX WIN : LayoutTests/fast/forms/select-visual-hebrew.html = FAIL
+// Was only WIN, also fail on LINUX since merge 43346:43361
+BUG9768 LINUX WIN : LayoutTests/fast/forms/visual-hebrew-text-field.html = FAIL
+// Linux looks ok, rebaselined.
+BUG9768 WIN : LayoutTests/fast/text/cg-fallback-bolding.html = FAIL
+BUG9768 WIN : LayoutTests/fast/text/international/001.html = FAIL
+BUG9768 WIN : LayoutTests/fast/text/international/002.html = FAIL
+BUG9768 WIN : LayoutTests/fast/text/international/003.html = FAIL
+BUG9768 WIN : LayoutTests/fast/text/international/wrap-CJK-001.html = FAIL
+
+// Merge WebKit 42200:42244 regressions
+BUG9786 : LayoutTests/fast/dom/Window/dom-access-from-closure-iframe.html = FAIL
+BUG9786 : LayoutTests/fast/dom/Window/dom-access-from-closure-window.html = FAIL
+BUG9786 : LayoutTests/http/tests/security/cross-frame-access-history-prototype.html = FAIL
+BUG9786 : LayoutTests/http/tests/security/cross-frame-access-location-prototype.html = FAIL
+BUG9786 : LayoutTests/http/tests/security/cross-frame-access-document-direct.html = TIMEOUT
+BUG9787 WIN : LayoutTests/svg/W3C-SVG-1.1/animate-elem-41-t.svg = FAIL
+BUG9787 : LayoutTests/svg/W3C-SVG-1.1/coords-trans-01-b.svg = FAIL
+BUG9787 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/painting-render-01-b.svg = FAIL
+BUG10479 RELEASE MAC : LayoutTests/fast/dom/Window/window-object-cross-frame-calls.html = FAIL PASS CRASH
+BUG10479 MAC : LayoutTests/svg/hixie/perf/001.xml = FAIL
+BUG10479 MAC : LayoutTests/svg/hixie/perf/002.xml = FAIL
+
+BUG9798 WIN DEBUG : LayoutTests/fast/encoding/char-encoding.html = FAIL PASS
+BUG9798 WIN DEBUG : LayoutTests/http/tests/misc/redirect-with-quotes.php = TIMEOUT PASS
+BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/basic-auth.html = TIMEOUT PASS
+BUG9798 MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/basic-auth.html = TIMEOUT PASS
+BUG9798 WIN DEBUG : LayoutTests/editing/execCommand/paste-2.html = FAIL PASS
+BUG9798 WIN DEBUG : LayoutTests/editing/selection/4776665.html = FAIL PASS
+BUG9798 DEBUG : LayoutTests/svg/custom/path-bad-data.svg = CRASH FAIL
+BUG9798 LINUX DEBUG : chrome/fast/dom/extensions/interval.html = CRASH FAIL PASS
+BUG9798 LINUX : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = FAIL PASS
+BUG9798 LINUX : LayoutTests/http/tests/misc/BOM-override-script.html = TIMEOUT PASS
+BUG9798 LINUX DEBUG : LayoutTests/svg/text/text-text-07-t.svg = FAIL PASS
+BUG9798 LINUX : LayoutTests/tables/mozilla/bugs/45621.html = FAIL PASS CRASH
+BUG9798 LINUX : LayoutTests/transitions/shorthand-border-transitions.html = FAIL PASS
+BUG9798 LINUX DEBUG : LayoutTests/transitions/transition-timing-function.html = FAIL PASS
+BUG9798 LINUX RELEASE : LayoutTests/svg/carto.net/colourpicker.svg = FAIL PASS
+BUG9798 MAC : LayoutTests/svg/custom/use-instanceRoot-as-event-target.xhtml = TIMEOUT FAIL
+BUG9798 WIN DEBUG : LayoutTests/http/tests/misc/empty-file-formdata.html = TIMEOUT PASS
+BUG9798 WIN DEBUG : LayoutTests/http/tests/misc/refresh-headers.php = TIMEOUT PASS
+BUG9798 WIN RELEASE : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe.html = TIMEOUT PASS
+BUG9798 WIN RELEASE : LayoutTests/http/tests/uri/utf8-path.html = TIMEOUT PASS
+BUG9798 WIN MAC : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-header.html = TIMEOUT PASS
+BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout.html = TIMEOUT PASS
+BUG9798 WIN MAC RELEASE : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache.html = TIMEOUT PASS
+BUG9798 : LayoutTests/http/tests/xmlhttprequest/failed-auth.html = TIMEOUT PASS
+BUG9798 WIN RELEASE : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
+BUG9797 LINUX DEBUG : LayoutTests/svg/carto.net/colourpicker.svg = FAIL
+BUG9797 WIN DEBUG : LayoutTests/editing/execCommand/paste-1.html = FAIL PASS
+BUG9797 WIN LINUX : LayoutTests/editing/pasteboard/subframe-dragndrop-1.html = FAIL PASS
+BUG9797 BUG9798 WIN DEBUG : LayoutTests/http/tests/xmlhttprequest/state-after-network-error.html = CRASH TIMEOUT PASS
+
+// Failed in WebKit merge 42287:42324
+BUG9916 WIN LINUX : LayoutTests/css2.1/t0803-c5502-mrgn-r-02-c.html = FAIL
+
+// New tests or failures from WebKit merge 42324:42364. Re-baselined on
+// Windows. Probably just need the same on other platforms.
+BUG9962 LINUX : LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug.html = FAIL
+BUG9962 MAC : LayoutTests/fast/js/function-apply-aliased.html = FAIL
+
+// Regressions from WebKit merge 43264:42403, possibly due to r42375.
+BUG9992 WIN LINUX : LayoutTests/fast/text/shadow-no-blur.html = FAIL
+
+// Regressions from WebKit merge 43264:42403, unknown cause(s)
+BUG10055 LINUX DEBUG : LayoutTests/editing/execCommand/paste-1.html = FAIL PASS
+BUG10055 MAC : LayoutTests/fast/events/updateLayoutForHitTest.html = FAIL
+BUG10055 LINUX DEBUG : LayoutTests/svg/text/text-tselect-02-f.svg = FAIL PASS
+
+// This test was changed upstream in http://trac.webkit.org/changeset/42447
+// to include window.showModalDialog, which we give as undefined.
+BUG10530 : LayoutTests/fast/dom/Window/window-function-frame-getter-precedence.html = FAIL
+
+// Need rebaselining for Linux, from WebKit merge 42580:42609
+// The content editable div is wider on linux than on windows.
+BUG11122 LINUX : LayoutTests/fast/forms/caret-rtl.html = FAIL
+
+// New tests from WebKit Merge 42609:42671
+BUG10760 LINUX : LayoutTests/fast/forms/input-text-scroll-left-on-blur.html = FAIL
+BUG10760 LINUX : LayoutTests/fast/inline/25277-2.html = FAIL
+BUG10760 LINUX : LayoutTests/fast/inline/25277.html = FAIL
+BUG10760 MAC : LayoutTests/svg/custom/marker-overflow-clip.svg = FAIL
+BUG10760 LINUX : LayoutTests/svg/custom/marker-child-changes.svg = PASS FAIL
+BUG10760 LINUX MAC : LayoutTests/svg/custom/marker-viewBox-changes.svg = PASS FAIL
+
+// Needs investigation, perhaps just needs to be re-baselined on all
+// platforms.
+BUG10859 LINUX MAC : LayoutTests/fast/dom/HTMLSelectElement/named-options.html = FAIL
+BUG10861 WIN : LayoutTests/fast/dom/HTMLSelectElement/named-options.html = FAIL
+
+// New failures from WebKit Merge 42671:42725
+BUG10861 WIN : LayoutTests/http/tests/plugins/post-url-file.html = PASS
+BUG10861 MAC : LayoutTests/http/tests/plugins/post-url-file.html = TIMEOUT
+
+// New failures from WebKit merge 42725:42805
+// Because of WebKit change http://trac.webkit.org/changeset/42740,
+// DumpRenderTree now dumps additional info on the element that was
+// passed to the policy delegate. So the dump changes.
+// We need to reflect the change in test shell.
+BUG11000 : LayoutTests/fast/encoding/mailto-always-utf-8.html = FAIL CRASH
+BUG11000 : LayoutTests/fast/loader/policy-delegate-action-hit-test-zoomed.html = FAIL
+BUG11000 : LayoutTests/http/tests/misc/policy-delegate-called-twice.html = FAIL
+BUG11000 : LayoutTests/http/tests/misc/redirect-to-external-url.html = FAIL
+
+// New failures from WebKit merge 42725:42805
+// WebKit change http://trac.webkit.org/changeset/42785
+// added a test which submits a form and then uses history.back()
+// to go back. in test_shell history.back() does not go back,
+// so the test timeouts.
+BUG11001 LINUX MAC WIN : LayoutTests/http/tests/history/back-to-post.php = TIMEOUT
+
+// New failures from WebKit merge 42725:42805
+// Reasons unknown..
+BUG11012 LINUX MAC : LayoutTests/http/tests/security/xss-DENIED-xml-external-entity.xhtml = FAIL
+
+// Need Linux rebaselines from WebKit Merge 42805:42932
+BUG11123 LINUX : LayoutTests/editing/inserting/4960120-1.html = FAIL
+BUG11123 LINUX : LayoutTests/fast/css/nested-layers-with-hover.html = FAIL
+BUG11123 LINUX : LayoutTests/fast/forms/textarea-scrollbar.html = FAIL
+BUG11123 LINUX : LayoutTests/fast/forms/textarea-scrolled-type.html = FAIL
+
+// Chrome does not support WebArchives (just like Safari for Windows),
+// although we might eventually want to on Mac.
+WONTFIX SKIP : LayoutTests/webarchive/adopt-attribute-styled-body-webarchive.html = FAIL
+WONTFIX SKIP : LayoutTests/webarchive/adopt-attribute-styled-node-webarchive.html = FAIL
+WONTFIX SKIP : LayoutTests/webarchive/adopt-inline-styled-node-webarchive.html = FAIL
+
+// Regressions from WebKit Merge 42932:42994
+BUG11239 MAC DEBUG : LayoutTests/svg/custom/js-late-marker-and-object-creation.svg = FAIL PASS
+
+// Regressions from WebKit Merge 42932:42994 due to text metric changes.
+BUG11251 WIN : LayoutTests/fast/forms/textarea-width.html = FAIL
+BUG11251 WIN LINUX : LayoutTests/fast/forms/text-control-intrinsic-widths.html = FAIL
+BUG11251 : chrome/fast/forms/textarea-metrics.html = FAIL
+BUG11251 WIN LINUX : LayoutTests/svg/custom/svg-fonts-in-text-controls.html = FAIL
+BUG11251 WIN LINUX : LayoutTests/fast/forms/textarea-metrics.html = FAIL
+
+// Regressions from WebKit Merge 43059:43114
+BUG11322 : LayoutTests/editing/text-iterator/basic-iteration.html = FAIL
+
+// Regresssions from WebKit Merge 43114:43242 that just need to be re-baselined.
+BUG11483 LINUX : LayoutTests/fast/forms/input-text-double-click.html = FAIL
+BUG11483 LINUX : LayoutTests/svg/text/foreignObject-repaint.xml = FAIL
+
+// Regressions from WebKit merge 43242:43321. These just need to re-baselining:
+BUG_DARIN LINUX : LayoutTests/fast/forms/select-dirty-parent-pref-widths.html = FAIL
+BUG_DARIN LINUX : LayoutTests/svg/transforms/animated-path-inside-transformed-html.xhtml = FAIL
+BUG_DARIN LINUX : LayoutTests/svg/transforms/text-with-pattern-inside-transformed-html.xhtml = FAIL
+BUG_DARIN LINUX : LayoutTests/svg/transforms/text-with-pattern-with-svg-transform.svg = FAIL
+
+// Regressions from WebKit merge 43242:43321.
+BUG_DARIN LINUX DEBUG : LayoutTests/transitions/mask-transitions.html = FAIL PASS
+
+// TODO(erg): Attempted to rebaseline these tests as part of the above
+// 43346:43361 rebaseling from http://trac.webkit.org/changeset/43355. Turned
+// tree red. May be more involved then just rebaselining.
+BUG11613 LINUX : LayoutTests/editing/deleting/5168598.html = FAIL
+BUG11613 LINUX : LayoutTests/editing/inserting/5607069-2.html = FAIL
+
+// This needs to be rebaselined. See http://trac.webkit.org/changeset/43378
+BUG11669 LINUX : LayoutTests/fast/layers/remove-only-this-layer-update.html = FAIL
+
+// May need rebaselining for mac/linux, or may need nothing at all. Triage after has run
+// on mac/linux buildbot. See http://crbug.com/11763.
+BUG11763 LINUX : LayoutTests/fast/layers/self-painting-outline.html = FAIL PASS
+
+// This test got moved (and the baselines have been moved accordingly), but now as a result
+// it seems to be failing?!
+BUG11795 WIN LINUX : LayoutTests/http/tests/misc/favicon-as-image.html = FAIL
+BUG11795 MAC : LayoutTests/http/tests/misc/favicon-as-image.html = FAIL CRASH
+
+// Already baselined for chromium-win, may need to be done for mac/linux as well.
+BUG11796 LINUX : LayoutTests/fast/forms/search-styled.html = FAIL
+
+// Flaky Windows/Linux Tests
+BUG11898 LINUX MAC DEBUG : LayoutTests/svg/dom/SVGScriptElement/script-set-href.svg = FAIL PASS
+BUG11898 WIN DEBUG : LayoutTests/http/tests/misc/submit-get-in-utf16be.html = TIMEOUT PASS
+BUG18772 WIN DEBUG : LayoutTests/http/tests/navigation/post-goback-same-url.html = TIMEOUT PASS
+
+// Need LINUX/Mac rebaselines after WebKit Update 437150:43770
+BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test1.html = FAIL
+BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test2.html = FAIL
+BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test3.html = FAIL
+BUG12053 MAC : LayoutTests/editing/execCommand/outdent-blockquote-test4.html = FAIL
+
+// New test, added in http://trac.webkit.org/changeset/43822, fails for us
+BUG12197 : LayoutTests/editing/pasteboard/get-data-text-plain-drop.html = FAIL
+
+// xhtml mp tests were added in http://trac.webkit.org/changeset/43865 and are
+// skipped on all platforms upstream.
+BUG12254 SKIP : LayoutTests/fast/xhtmlmp/check-doctype-declaration.xhtml = FAIL
+BUG12254 SKIP : LayoutTests/fast/xhtmlmp/check-rootelement.xhtml = FAIL
+BUG12254 SKIP : LayoutTests/fast/xhtmlmp/noscript-in-multiscripts.xhtml = FAIL
+BUG12254 SKIP : LayoutTests/fast/xhtmlmp/noscript-nested.xhtml = FAIL
+BUG12254 SKIP : LayoutTests/fast/xhtmlmp/noscript.xhtml = FAIL
+
+// wap css tests were added in http://trac.webkit.org/changeset/43887 and are
+// skipped on all platforms upstream.
+BUG12310 SKIP : LayoutTests/fast/wcss/marquee-dir.xhtml = FAIL
+BUG12310 SKIP : LayoutTests/fast/wcss/marquee-loop.xhtml = FAIL
+BUG12310 SKIP : LayoutTests/fast/wcss/marquee-speed.xhtml = FAIL
+BUG12310 SKIP : LayoutTests/fast/wcss/marquee-style.xhtml = FAIL
+
+// Details for all of these are in the bugs.
+BUG12341 DEBUG WIN : LayoutTests/editing/selection/4975120.html = PASS FAIL
+BUG12354 : LayoutTests/plugins/netscape-invoke-browserfuncs.html = FAIL
+BUG12361 : LayoutTests/http/tests/cookies/double-quoted-value-with-semi-colon.html = FAIL
+
+// webkit 44010+44027 introducted new tests
+BUG12477 : LayoutTests/http/tests/local/drag-over-remote-content.html = FAIL
+BUG12477 : LayoutTests/http/tests/security/drag-over-remote-content-iframe.html = FAIL
+
+// WebKit 44202:44252 introduced new tests
+BUG12881 WIN LINUX : LayoutTests/fast/forms/isindex-placeholder.html = FAIL
+BUG12881 WIN LINUX : LayoutTests/fast/borders/border-radius-constraints.html = FAIL
+BUG12881 WIN LINUX : LayoutTests/fast/borders/border-radius-split-inline.html = FAIL
+
+// WebKit 44202:44252 introduced new failures (old tests)
+BUG12882 WIN : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = FAIL
+BUG12882 WIN : LayoutTests/fast/box-shadow/basic-shadows.html = FAIL
+
+// WebKit 44286:44342
+BUG13174 WIN DEBUG : LayoutTests/transitions/shorthand-border-transitions.html = PASS FAIL
+
+// WebKit 44438:44544
+BUG13721 LINUX : LayoutTests/fast/dynamic/positioned-movement-with-positioned-children.html = FAIL
+
+BUG14207 WIN LINUX DEBUG : LayoutTests/tables/mozilla/bugs/bug28341.html = PASS FAIL
+
+// Newly added test http://trac.webkit.org/changeset/44816
+BUG14673 : LayoutTests/http/tests/xmlhttprequest/cross-origin-no-authorization.html = FAIL TIMEOUT
+
+// Need investigation: test shell crashers.
+BUG14752 LINUX : LayoutTests/http/tests/cache/subresource-expiration.html = CRASH FAIL PASS
+BUG14751 LINUX DEBUG: LayoutTests/css2.1/atrule_longest_match.html = CRASH PASS
+BUG14767 LINUX : LayoutTests/dom/html/level1/core/documentgetdoctypenodtd.html = CRASH FAIL PASS
+
+BUG14832 : LayoutTests/editing/selection/user-drag-element-and-user-select-none.html = FAIL
+BUG14831 : LayoutTests/fast/events/event-trace.html = FAIL
+
+// WebKit 44928:44943
+BUG14946 : LayoutTests/fast/js/date-toisostring.html = FAIL
+
+// WebKit 44969:45017
+
+// The Mac layout test buildbots haven't generated a package for 20 days so
+// the rebaselining tool isn't working for this --agl
+BUG15125 MAC SKIP : chrome/fast/text/fake-italic.html = FAIL
+
+// WebKit 45017:45086
+BUG15217 : LayoutTests/fast/js/dictionary-no-cache.html = FAIL
+BUG15217 MAC : LayoutTests/fast/js/switch-behaviour.html = FAIL
+
+// WebKit 45086:45111
+BUG15270 : LayoutTests/fast/js/excessive-comma-usage.html = FAIL
+
+// WebKit 45134:45176
+
+
+// WebKit 45247:45270
+BUG15478 SKIP : LayoutTests/fast/frames/viewsource-on-image-file.html = FAIL
+BUG15478 SKIP : LayoutTests/platform/qt/fast/events/event-sender-keydown-frame.html = FAIL
+
+// WebKit 45270:45287
+BUG15490 LINUX : LayoutTests/editing/deleting/25322-1.html = PASS FAIL CRASH
+
+// Flaky for a while on DEBUG; also related to BUG17974
+BUG15267 LINUX DEBUG : LayoutTests/transitions/cancel-transition.html = PASS FAIL
+
+// WebKit 45431:45444
+BUG10384 MAC : LayoutTests/fast/events/frame-tab-focus.html = CRASH FAIL
+BUG11613 LINUX : LayoutTests/fast/forms/tabbing-input-iframe.html = FAIL
+BUG11613 LINUX : LayoutTests/fast/overflow/scrollRevealButton.html = FAIL
+
+// WebKit 45473:45487
+BUG15873 WIN LINUX : LayoutTests/fast/box-shadow/transform-fringing.html = FAIL
+BUG15873 WIN LINUX : LayoutTests/fast/transforms/shadows.html = FAIL
+
+
+// Webkit 45555:45558
+// This was removed from test_expectations when it was passing after the Webkit merge 45495:45535.
+// Not sure if this is a regression or some manner of flakiness.
+BUG11613 MAC : LayoutTests/http/tests/security/cross-frame-access-call.html = FAIL
+
+// WebKit merge 45601:45610
+BUG16162 : LayoutTests/fast/loader/subframe-navigate-during-main-frame-load.html = FAIL
+
+// Tests that rely on cross-process MessagePorts. No point in running them in
+// test_shell, since we'd have to use a completely different implementation from
+// what is used in the browser.
+WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc-2.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc-3.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc-4.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-channel-gc.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-channel-listener-circular-ownership.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-port-clone.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-port-deleted-document.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-port-deleted-frame.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-port-inactive-document.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-port-no-wrapper.html = FAIL
+WONTFIX SKIP : LayoutTests/fast/events/message-port.html = FAIL
+WONTFIX SKIP : LayoutTests/http/tests/security/MessagePort/event-listener-context.html = FAIL
+WONTFIX SKIP : chrome/fast/dom/messageport-gc.html = FAIL
+
+// WebKit tests regressions 20529:20532
+BUG16675 MAC : LayoutTests/fast/dynamic/flash-replacement-test.html = FAIL
+BUG16675 MAC : LayoutTests/fast/loader/loadInProgress.html = FAIL
+BUG16675 MAC DEBUG : LayoutTests/plugins/return-error-from-new-stream-callback-in-full-frame-plugin.html = FAIL
+
+
+// WebKit merge 42738:45840
+// New test, needs baseline.
+BUG16690 SKIP MAC : LayoutTests/fast/text/international/khmer-selection.html = FAIL
+
+// WebKit merge 42738:45840
+// New tests, need baseline.
+BUG16240 WIN SLOW : LayoutTests/http/tests/cache/subresource-expiration.html = PASS
+BUG16240 MAC : LayoutTests/http/tests/cache/subresource-expiration.html = PASS TIMEOUT
+
+// HTML5 DataGrid bindings are not enabled yet because the feature's not fully implemented.
+BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridColumns-basic.html = FAIL
+BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridColumns-dom.html = FAIL
+BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridColumns-dom-attributes.html = FAIL
+BUG17585 : LayoutTests/fast/dom/HTMLDataGridElement/DataGridDataSource-basic.html = FAIL
+
+
+// Failure since WebKit merge 45873:45916
+BUG16823 MAC : LayoutTests/editing/execCommand/4128080-2.html = FAIL
+BUG16823 MAC : LayoutTests/editing/inserting/insert-3786362-fix.html = FAIL
+BUG16823 MAC : LayoutTests/editing/inserting/insert-3907422-fix.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/19644-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/19644-2.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/4242293-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/4242293.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/4641033.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/4922709.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/4944770-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/4944770-2.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/4989774.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5027857.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5028447.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5065605.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5071074.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5075944-2.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5075944.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5368833.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5478250.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5601583-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5761530-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/5780697-2.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/block-wrappers-necessary.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/copy-paste-bidi.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/display-block-on-spans.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/drag-drop-modifies-page.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/input-field-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-4035648-fix.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-4038267-fix.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-4039777-fix.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-001.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-002.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-003.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-004.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-005.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-006.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-007.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-008.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-009.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-line-endings-010.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-list-001.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-pre-001.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-pre-002.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-001.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-002.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-003.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-table-cells.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-001.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-002.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-003.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-004.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-005.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-006.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-007.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-008.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-009.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-010.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-011.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-012.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-013.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-014.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-015.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-016.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-017.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-018.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-at-tabspan-001.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-at-tabspan-002.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-text-at-tabspan-003.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/paste-unrendered-select.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/select-element-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/styled-element-markup.html = FAIL
+BUG16823 MAC : LayoutTests/editing/pasteboard/testcase-9507.html = FAIL
+BUG16823 MAC : LayoutTests/editing/selection/4895428-1.html = FAIL
+BUG16823 MAC : LayoutTests/editing/selection/4895428-4.html = FAIL
+BUG16823 MAC : LayoutTests/editing/selection/contains-boundaries.html = FAIL
+BUG16823 MAC : LayoutTests/editing/style/5065910.html = FAIL
+BUG16823 MAC : LayoutTests/editing/style/font-family-with-space.html = FAIL
+BUG16823 MAC : LayoutTests/editing/style/non-inheritable-styles.html = FAIL
+BUG16823 MAC : LayoutTests/editing/style/smoosh-styles-003.html = FAIL
+BUG16823 MAC : LayoutTests/fast/lists/drag-into-marker.html = FAIL
+
+// New test from WebKit merge 46050:46087
+BUG17170 : LayoutTests/fast/dom/prototype-inheritance.html = FAIL
+
+// New tests from WebKit merge 46087:46125
+BUG17255 LINUX WIN : LayoutTests/fast/box-shadow/spread.html = FAIL
+
+// Test failures from WebKit merge r46143:46194
+BUG17398 LINUX : LayoutTests/fast/borders/borderRadiusDashed02.html = FAIL
+BUG17398 LINUX : LayoutTests/fast/borders/borderRadiusDashed03.html = FAIL
+BUG17398 LINUX : LayoutTests/fast/css/pseudo-cache-stale.html = FAIL
+BUG17398 LINUX : LayoutTests/fast/forms/search-zoomed.html = FAIL
+
+// Test failures from WebKit merge r46194:46229
+BUG17497 WIN DEBUG : LayoutTests/media/unsupported-rtsp.html = FAIL
+BUG17499 MAC : LayoutTests/platform/mac/fast/loader/non-html-load-event.html = FAIL
+
+// not sure why this started failing
+BUG17509 LINUX : LayoutTests/fast/loader/local-CSS-from-local.html = FAIL
+BUG17509 LINUX : LayoutTests/fast/loader/local-JavaScript-from-local.html = FAIL TIMEOUT
+BUG17509 LINUX : LayoutTests/fast/loader/local-image-from-local.html = FAIL
+
+// New tests with WebKit merge 46288:46363
+BUG18116 : LayoutTests/fast/dom/constructed-objects-prototypes.html = FAIL
+BUG18116 : LayoutTests/fast/dom/prototype-inheritance-2.html = FAIL
+
+// Flaky. Timing?
+BUG18584 : LayoutTests/animations/change-one-anim.html = FAIL PASS
+BUG18584 DEBUG LINUX WIN : LayoutTests/animations/play-state.html = FAIL PASS
+BUG18584 : LayoutTests/transitions/shorthand-transitions.html = FAIL PASS
+
+// Flaky crashes
+BUG18656 MAC : LayoutTests/fast/dom/Window/window-lookup-precedence.html = FAIL CRASH
+BUG18724 LINUX DEBUG : LayoutTests/transitions/transition-drt-api-delay.html = PASS CRASH
+
+// Flaky timeout
+BUG18659 WIN : LayoutTests/http/tests/loading/redirect-methods.html = PASS TIMEOUT
+BUG18733 WIN MAC : LayoutTests/http/tests/xmlhttprequest/cross-origin-authorization.html = PASS TIMEOUT
+BUG18740 WIN : LayoutTests/http/tests/security/credentials-in-referer.html = PASS TIMEOUT
+
+// Test failures caused by re-enabling skia asserts.
+BUG18896 WIN LINUX DEBUG : LayoutTests/svg/batik/paints/gradientLimit.svg = FAIL
+BUG18896 LINUX DEBUG : LayoutTests/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr.html = PASS FAIL
+BUG18896 LINUX DEBUG : LayoutTests/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop.html = PASS FAIL
+
+// Test failures from WebKit merge 46894 to 46977
+BUG18939 : LayoutTests/fast/js/function-declaration.html = FAIL
+BUG18939 : LayoutTests/fast/js/prototypes.html = FAIL
+BUG18939 MAC : LayoutTests/editing/execCommand/toggle-compound-styles.html = FAIL
+
+// Fallout from webkit 47041:47189
+BUG19248 : LayoutTests/fast/js/const.html = FAIL
+
+BUG_LEVIN : LayoutTests/fast/dom/Window/window-property-shadowing.html = FAIL
+BUG_LEVIN : LayoutTests/storage/multiple-transactions-on-different-handles.html = TIMEOUT
+BUG_LEVIN WIN : LayoutTests/fast/events/mouse-click-events.html = FAIL
+
+// Fallout from webkit 47189:47265
+BUG_LEVIN WIN LINUX : LayoutTests/css2.1/t1503-c522-font-family-00-b.html = FAIL
+//BUG_LEVIN WIN LINUX : LayoutTests/fast/reflections/reflection-overflow-scroll.html = FAIL
+BUG_LEVIN WIN LINUX : LayoutTests/fast/text/monospace-width-cache.html = FAIL
+
+// Fallout from webkit 47265:47277
+BUG_MBELSHE : LayoutTests/fast/js/Array-isArray.html = FAIL
+
+BUG19519 WIN DEBUG : LayoutTests/fast/css/last-of-type-pseudo-class.html = FAIL PASS
+
+// Fallout from webkit 47305:47383
+
+// WebKit roll r47417:47528
+BUG19766 WIN : LayoutTests/svg/batik/text/textPosition.svg = FAIL
+BUG19766 WIN LINUX : LayoutTests/svg/batik/text/xmlSpace.svg = FAIL
+BUG19766 WIN LINUX : LayoutTests/tables/mozilla/bugs/bug83786.html = FAIL
+BUG19766 : LayoutTests/storage/open-database-while-transaction-in-progress.html = TIMEOUT
+BUG19766 LINUX : LayoutTests/fast/replaced/width100percent-menulist.html = FAIL
+
+// Fails due to textInputController.setInputMethod not implemented for Mac.
+BUG19665 MAC : LayoutTests/platform/mac/editing/input/hangul-enter-confirms-and-sends-keypress.html = FAIL
+BUG19665 MAC : LayoutTests/platform/mac/editing/input/kotoeri-enter-to-confirm-and-newline.html = FAIL
+
+// WebKit 47719:47732. New test. Time out on all 3 platforms.
+BUG20341 : LayoutTests/loader/go-back-to-different-window-size.html = TIMEOUT
+
+// WebKit 47777:47790 - getOwnPropertyDescriptor
+BUG20345 : LayoutTests/fast/js/getOwnPropertyDescriptor.html = FAIL
+
+// WebKit 47797:47804
+BUG20376 WIN : LayoutTests/media/audio-play-event.html = TIMEOUT
+// Was marked as flakey above (I commented it out).
+BUG20376 WIN : LayoutTests/media/video-src-remove.html = TIMEOUT FAIL
+
+// WebKit 47821:47827
+BUG20987 : LayoutTests/fast/events/pageshow-pagehide-on-back-uncached.html = FAIL
+BUG20987 : LayoutTests/fast/events/pageshow-pagehide.html = FAIL
+
+// This newly added test times out on Mac:
+BUG20438 MAC : chrome/plugins/get-url-with-iframe-target.html = TIMEOUT
+BUG20438 MAC : chrome/plugins/get-url-with-iframe-target-no-crash.html = TIMEOUT
+
+// Mac LayoutTest/http errors after removing blanket exception.
+BUG20748 MAC : LayoutTests/http/tests/plugins/npapi-response-headers.html = TIMEOUT
+BUG20748 MAC : LayoutTests/http/tests/security/frameNavigation/xss-DENIED-plugin-navigation.html = TIMEOUT
+BUG20748 MAC : LayoutTests/http/tests/plugins/get-url.html = TIMEOUT
+BUG20748 MAC : LayoutTests/http/tests/plugins/interrupted-get-url.html = TIMEOUT
+
+// started crashing at build 5804 then green until 5863 of webkit-dbg-2
+BUG20786 WIN DEBUG : LayoutTests/fast/dom/undetectable-style-filter.html = PASS CRASH
+// started crashing at build 5859 of webkit-dbg-2
+BUG20786 WIN DEBUG : LayoutTests/fast/dom/undetectable-document-all.html = PASS CRASH
+
+BUG10480 LINUX : LayoutTests/editing/selection/move-by-line-001.html = PASS FAIL
+
+// Flakey crashes in js tests. Cause unknown.
+BUG20886 WIN DEBUG : LayoutTests/fast/js/regexp-no-extensions.html = CRASH PASS
+BUG20886 WIN DEBUG : LayoutTests/fast/js/repeat-cached-vm-reentry.html = CRASH PASS
+BUG20886 WIN DEBUG : LayoutTests/fast/js/regexp-non-capturing-groups.html = CRASH PASS
+
+BUG20898 MAC DEBUG : LayoutTests/svg/W3C-SVG-1.1/painting-marker-02-f.svg = FAIL PASS
+
+// WebKit 48001:48020
+// Need to implement clearAllDatabases in layoutTestController.
+BUG20995 SKIP : LayoutTests/storage/statement-error-callback.html = FAIL
+
+// WebKit 48020:48030
+BUG21033 : LayoutTests/fast/events/message-port-multi.html = TIMEOUT
+BUG21033 : LayoutTests/fast/dom/Window/window-postmessage-args.html = FAIL
+BUG21033 WIN LINUX : LayoutTests/fast/events/init-events.html = FAIL
+
+// WebKit 48034:48061
+// Need to implement layoutTestController.addUserScript.
+BUG21113 : LayoutTests/userscripts/script-run-at-end.html = FAIL
+// undefined pageshowEvent.persisted cause the test hangs.
+BUG21136 : LayoutTests/fast/events/pageshow-pagehide-on-back-cached-with-frames.html = TIMEOUT
+// Accessing attributes of an object created with
+// "document.implementation.createDocumentType" causes NULL pointers
+BUG14091 : LayoutTests/fast/dom/DOMImplementation/detached-doctype.html = CRASH
+// The linux layout result in build bot shows the changed method does not
+// executed.
+BUG21141 LINUX : LayoutTests/fast/forms/select-double-onchange.html = FAIL
+BUG21141 LINUX : LayoutTests/fast/forms/select-script-onchange.html = FAIL
+// The test is flaky.
+BUG_VICTORW : LayoutTests/http/tests/security/javascriptURL/xss-ALLOWED-from-javascript-url-sub-frame-2-level.html = PASS CRASH
+
+// WebKit 48098:48155
+BUG21267 : LayoutTests/fast/events/click-focus-anchor.html = FAIL
+BUG21267 : LayoutTests/fast/events/tab-focus-anchor.html = FAIL
+
+BUG_JAPHET MAC : LayoutTests/animations/change-keyframes-name.html = FAIL PASS
+
+// Flaky as of WebKit r48155
+BUG_JAPHET WIN : LayoutTests/transitions/transition-end-event-transform.html = FAIL PASS
+
+// Flaky, not clear as of when.
+BUG21411 SLOW WIN LINUX DEBUG: LayoutTests/svg/dom/SVGScriptElement/script-load-and-error-events.svg = FAIL PASS
+
+// WebKit 48217:48239
+// Fails because we don't support layoutTestController.addUserStyleSheet().
+BUG21439 : LayoutTests/userscripts/simple-stylesheet.html = FAIL
+// New database test that fails.
+BUG21442 : LayoutTests/storage/test-authorizer.html = TIMEOUT
+
+// Need investigation after we enable file URL universal access in test shell.
+BUG_JIANLI WIN : LayoutTests/fast/events/dispatchEvent-crash.html = CRASH
+BUG_JIANLI : LayoutTests/editing/selection/drag-in-iframe.html = FAIL
+
+// New tests added in r48284
+BUG21644 : LayoutTests/http/tests/security/mixedContent/about-blank-iframe-in-main-frame.html = FAIL
+BUG21644 : LayoutTests/http/tests/security/mixedContent/data-url-iframe-in-main-frame.html = FAIL
+BUG21644 : LayoutTests/http/tests/security/mixedContent/insecure-css-in-main-frame.html = FAIL
+BUG21644 : LayoutTests/http/tests/security/mixedContent/insecure-iframe-in-main-frame.html = FAIL
+BUG21644 : LayoutTests/http/tests/security/mixedContent/insecure-image-in-main-frame.html = FAIL
+BUG21644 : LayoutTests/http/tests/security/mixedContent/redirect-http-to-https-iframe-in-main-frame.html = FAIL
+BUG21644 : LayoutTests/http/tests/security/mixedContent/redirect-https-to-http-iframe-in-main-frame.html = FAIL
+
+// New test added in r48318 (GoogleURL bug)
+BUG21764 : LayoutTests/fast/forms/ValidityState-typeMismatch-url.html = FAIL
+
+// New test added in r48336 (V8 bug)
+BUG21767 : LayoutTests/fast/js/Object-keys.html = FAIL
+BUG21767 : LayoutTests/http/tests/security/cross-frame-access-enumeration.html = TIMEOUT