// 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: // // fast/js/fixme.js = FAIL // fast/js/flaky.js = FAIL PASS // fast/js/crash.js = CRASH TIMEOUT FAIL PASS // // The format of a test line is as follows: // METADATA : relative/path/to/test.html = EXPECTATIONS // // Valid values for METADATA: // // BUG(CR|WK|V8_)[0-9]+: See this chromium/webkit/v8 bug for more information. // Every test that isn't marked WONTFIX should have the // appropriate 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/WIN-XP/WIN-VISTA/MAC: Expectations apply only to these platforms. // // Valid values for EXPECTATIONS: // // PASS: Test should pass // CRASH: Test should crash // TIMEOUT: Test should timeout // IMAGE: Test will produce an incorrect image dump // TEXT: Test will produce incorrect text output (either full or simplified) // IMAGE+TEXT: Test will produce both incorrect text and images // FAIL: Test will produce either incorrect text, images, or both // // If a line contains multiple expectations, it is considered "flakey", // because it means that we're not producing consistent, reliable results. // // For example, // LINUX : media = PASS FAIL // // The above means that all the media tests are flaky, but only on Linux. // // Other examples: // // SKIP : fast/js/no-good.js = TIMEOUT PASS // DEBUG : fast/js/no-good.js = TIMEOUT PASS // DEBUG SKIP : fast/js/no-good.js = TIMEOUT PASS // LINUX DEBUG SKIP : fast/js/no-good.js = TIMEOUT PASS // BUGCR1234 DEBUG MAC : fast/js/no-good.js = TIMEOUT PASS // // 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 // ----------------------------------------------------------------- BUGCR24182 SLOW : fast/js/regexp-overflow.html = PASS BUGCR24182 SLOW RELEASE : http/tests/misc/DOMContentLoaded-event.html = PASS BUGCR24182 SLOW LINUX DEBUG : http/tests/misc/DOMContentLoaded-event.html = PASS BUGCR24182 SLOW : http/tests/xmlhttprequest/simple-cross-origin-progress-events.html = PASS BUGCR24182 SLOW : tables/mozilla/other/slashlogo.html = PASS BUGCR24182 SLOW WIN RELEASE : tables/mozilla/bugs/bug113235-1.html = PASS BUGCR24182 SLOW DEBUG : fast/js/toString-and-valueOf-override.html = PASS // This tests is normally <1 second, but occasionally takes >20s. BUGCR24182 SLOW WIN RELEASE : fast/dom/Window/webkitConvertPoint.html = PASS BUGCR24182 WIN RELEASE SLOW : http/tests/loading/redirect-methods.html = PASS BUGCR24182 SLOW MAC RELEASE : dom/html/level2/html/HTMLImageElement01.html = PASS BUGCR24182 SLOW WIN RELEASE : http/tests/local/file-url-sent-as-referer.html = PASS BUGCR24182 SLOW LINUX DEBUG : fast/xpath/4XPath/Borrowed/cz_20030217.html = PASS BUGCR24182 SLOW WIN MAC DEBUG : tables/mozilla/bugs/45621.html = PASS //BUGCR24852 started failing since webkit 49583 BUGCR24182 SLOW WIN : http/tests/security/xssAuditor/meta-tag-http-refresh-javascript-url.html = PASS BUGCR24182 SLOW WIN RELEASE : http/tests/security/cross-origin-css.html = PASS BUGCR24182 SLOW WIN RELEASE : fast/loader/local-CSS-from-local.html = PASS BUGCR24182 WIN RELEASE SLOW : http/tests/incremental/split-hex-entities.pl = PASS BUGCR24182 WIN RELEASE SLOW : http/tests/xmlhttprequest/XMLHttpRequestException.html = PASS BUGCR24182 WIN RELEASE SLOW : http/tests/xmlhttprequest/connection-error-sync.html = PASS BUGCR24182 WIN RELEASE SLOW : http/tests/loading/onload-vs-immediate-refresh.pl = PASS BUGCR24182 SLOW : http/tests/cache/subresource-failover-to-network.html = PASS BUGCR24182 WIN DEBUG SLOW : fast/parser/block-nesting-cap.html = PASS // Usually <1s in release, ~1s in debug, but occasionally >5s in release. BUGCR27335 WIN RELEASE : plugins/embed-attributes-setting.html = PASS TIMEOUT BUGCR27335 WIN DEBUG SLOW : plugins/embed-attributes-setting.html = PASS // --- collecting results for supported-xml-content-types.html --- // was slow, started to timeout BUGCR18702 WIN : http/tests/xmlhttprequest/supported-xml-content-types.html = PASS TIMEOUT BUGCR36539 SLOW : http/tests/misc/uncacheable-script-repeated.html = PASS BUGCR32018 SLOW : http/tests/websocket/tests/frame-lengths.html = PASS BUGCR69513 DEBUG SLOW : html5lib/webkit-resumer.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 : 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. BUGCR24185 WONTFIX SKIP : 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 : 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. BUGCR24189 WONTFIX SKIP : fast/dom/open-and-close-by-DOM.html = FAIL // WML is still an inprogress feature upstream. Chromium does not build // with WML support, so skip its tests. WONTFIX SKIP : wml = FAIL WONTFIX SKIP : http/tests/wml = FAIL WONTFIX SKIP : 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 : fast/profiler = FAIL TIMEOUT // We use worker_uitests to run workers tests. Don't run them in test_shell. WONTFIX SKIP : fast/workers = PASS TIMEOUT FAIL WONTFIX SKIP : fast/files/workers = PASS TIMEOUT FAIL WONTFIX SKIP : fast/filesystem/workers = PASS TIMEOUT FAIL WONTFIX SKIP : http/tests/workers = PASS TIMEOUT FAIL WONTFIX SKIP : http/tests/xmlhttprequest/workers = PASS TIMEOUT FAIL WONTFIX SKIP : http/tests/eventsource/workers = PASS TIMEOUT FAIL WONTFIX SKIP : http/tests/websocket/tests/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 BUGCR19635 : fast/harness/use-page-cache.html = TIMEOUT FAIL WONTFIX SKIP BUGCR19635 : fast/dom/Window/timer-resume-on-navigation-back.html = TIMEOUT FAIL // Depends on page cache, as far as I can tell. WONTFIX SKIP BUGCR19635 : fast/events/pageshow-pagehide-on-back-cached.html = TIMEOUT FAIL WONTFIX SKIP BUGCR19635 : fast/events/pageshow-pagehide-on-back-cached-with-frames.html = TIMEOUT WONTFIX SKIP BUGCR19635 : media/restore-from-page-cache.html = TIMEOUT WONTFIX SKIP BUGCR19635 : loader/go-back-to-different-window-size.html = TIMEOUT TEXT WONTFIX SKIP BUGCR19635 : fast/loader/crash-copying-backforwardlist.html = TEXT WONTFIX SKIP BUGCR19635 : fast/harness/page-cache-crash-on-data-urls.html = TEXT // 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 : fast/events/message-channel-gc-2.html = FAIL WONTFIX SKIP : fast/events/message-channel-gc-3.html = FAIL WONTFIX SKIP : fast/events/message-channel-gc-4.html = FAIL WONTFIX SKIP : fast/events/message-channel-gc.html = FAIL WONTFIX SKIP : fast/events/message-channel-listener-circular-ownership.html = FAIL WONTFIX SKIP : fast/events/message-port-clone.html = FAIL WONTFIX SKIP : fast/events/message-port-deleted-document.html = FAIL WONTFIX SKIP : fast/events/message-port-deleted-frame.html = FAIL WONTFIX SKIP : fast/events/message-port-inactive-document.html = FAIL WONTFIX SKIP : fast/events/message-port-no-wrapper.html = FAIL WONTFIX SKIP : fast/events/message-port.html = FAIL WONTFIX SKIP : fast/events/message-port-multi.html = FAIL WONTFIX SKIP : http/tests/security/MessagePort/event-listener-context.html = FAIL // Implement java testing harness. BUGCR36681 SKIP : java = TEXT // Chrome does not support Java LiveConnect. WONTFIX SKIP : java/lc3 = TEXT // this test doesn't make sense on Win or Mac. // TODO: move to platform/chromium-linux/. WONTFIX SKIP MAC WIN : platform/chromium/fast/text/chromium-linux-fontconfig-renderstyle.html = FAIL // ----------------------------------------------------------------- // WONTFIX TESTS // ----------------------------------------------------------------- // 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. WONTFIX DEBUG : fast/forms/search-event-delay.html = PASS TEXT WONTFIX SLOW WIN RELEASE : fast/forms/search-event-delay.html = FAIL PASS WONTFIX SLOW MAC RELEASE : fast/forms/search-event-delay.html = FAIL PASS CRASH WONTFIX LINUX RELEASE : fast/forms/search-event-delay.html = FAIL PASS // 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 DEBUG : editing/pasteboard/emacs-cntl-y-001.html = FAIL WONTFIX LINUX RELEASE : editing/pasteboard/emacs-cntl-y-001.html = FAIL WONTFIX SLOW WIN RELEASE : editing/pasteboard/emacs-cntl-y-001.html = FAIL WONTFIX : editing/pasteboard/emacs-ctrl-a-k-y.html = FAIL WONTFIX : editing/pasteboard/emacs-ctrl-k-y-001.html = FAIL WONTFIX : 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 : 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. BUGCR24187 WONTFIX SLOW DEBUG : fast/dom/Window/window-properties.html = FAIL BUGCR24187 WONTFIX SLOW WIN RELEASE : fast/dom/Window/window-properties.html = FAIL BUGCR24187 WONTFIX LINUX MAC RELEASE : fast/dom/Window/window-properties.html = FAIL // Safari specific test to ensure that JavaScript errors aren't logged when in // private browsing mode. WONTFIX : http/tests/security/cross-frame-access-private-browsing.html = FAIL // Chromium doesn't implement private browsing in the renderer. WONTFIX : plugins/private-browsing-mode.html = FAIL WONTFIX : plugins/private-browsing-mode-2.html = TEXT // We don't let anyone set status in the browser. WONTFIX : plugins/set-status.html = TEXT // We don't care about dashboard compatibility mode. WONTFIX SKIP : http/tests/xmlhttprequest/default-content-type-dashboard.html = FAIL WONTFIX SKIP : http/tests/xmlhttprequest/svg-created-by-xhr-disallowed-in-dashboard.html = FAIL WONTFIX : svg/custom/embedded-svg-disallowed-in-dashboard.xml = FAIL WONTFIX : svg/custom/manually-parsed-embedded-svg-disallowed-in-dashboard.html = FAIL WONTFIX : svg/custom/manually-parsed-svg-disallowed-in-dashboard.html = FAIL WONTFIX SKIP : svg/custom/svg-disallowed-in-dashboard-object.html = FAIL WONTFIX : 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 : fast/events/keydown-1.html = FAIL WONTFIX LINUX WIN : fast/events/option-tab.html = FAIL // Chrome does not support WebArchives. BUGCR10395 WONTFIX SKIP : webarchive = FAIL PASS BUGCR10395 WONTFIX SKIP : svg/webarchive = FAIL PASS BUGCR10395 WONTFIX SKIP : svg/custom/image-with-prefix-in-webarchive.svg = FAIL PASS BUGCR10395 WONTFIX SKIP : http/tests/webarchive = FAIL PASS // Compositing tests are run separately on machines with GPUs; see // LayoutTests/platform/chromium-gpu. BUGCR15733 WONTFIX SKIP : compositing = FAIL PASS TIMEOUT BUGCR15733 WONTFIX SKIP : platform/chromium/compositing = FAIL PASS TIMEOUT // Run the Mac-specific platform tests, but only to check for crashes. WONTFIX : platform/gtk = FAIL PASS WONTFIX : platform/mac = FAIL PASS TIMEOUT WONTFIX : platform/mac-leopard = FAIL PASS WONTFIX : platform/mac-tiger = FAIL PASS WONTFIX : platform/qt = FAIL PASS WONTFIX SKIP : platform/qt/plugins/qt-qwidget-plugin.html = FAIL WONTFIX SKIP : platform/mac/fast/text/international/Geeza-Pro-vertical-metrics-adjustment.html = PASS WONTFIX LINUX MAC : 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 SKIP : platform/mac/editing/deleting/backward-delete.html = TEXT // Ignored because we do not have OBJC bindings WONTFIX SKIP : editing/pasteboard/paste-RTFD.html = FAIL WONTFIX SKIP : editing/pasteboard/paste-TIFF.html = FAIL WONTFIX SKIP : platform/mac/plugins/root-object-premature-delete-crash.html = FAIL WONTFIX SKIP : platform/mac/plugins/undefined-property-crash.html = FAIL // Ignore test because it tries to load .pdf files in tags. WONTFIX : fast/images/pdf-as-image-landscape.html = FAIL WONTFIX : fast/images/pdf-as-image.html = FAIL WONTFIX : fast/replaced/pdf-as-image.html = FAIL // These tests try to print a PDF file as the expected result. I don't think // we plan on supporting this anytime soon. WONTFIX SKIP : printing/compositing-layer-printing.html = PASS WONTFIX SKIP : printing/media-queries-print.html = PASS WONTFIX SKIP : printing/page-rule-in-media-query.html = PASS // Chrome doesn't call the willCacheResponse callback (a method // of ResourceHandleClient). That function is Mac-specific. WONTFIX SKIP : 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 : fast/dom/gc-9.html = FAIL // This test checks that properties of arguments arrays are non-enumerable // which is incorrect according to the ES5 spec. WONTFIX : fast/js/kde/function.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 : 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 : fast/js/exception-linenums-in-html-1.html = FAIL WONTFIX : fast/js/exception-linenums-in-html-2.html = FAIL WONTFIX : fast/js/exception-linenums.html = FAIL WONTFIX : 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 : fast/js/function-names.html = FAIL // This test relies on KJS specific implementation // (window.GCController.getJSObjectCount), which we have no intention of // supporting. WONTFIX SKIP : fast/dom/Window/timeout-released-on-close.html = FAIL // These tests expect a tiff decoder, which we don't have. WONTFIX LINUX WIN : fast/images/embed-image.html = FAIL WONTFIX LINUX WIN : 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 : 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 : fast/js/date-DST-time-cusps.html = PASS FAIL WONTFIX SKIP : fast/js/date-big-setdate.html = PASS 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 : fast/dom/getter-on-window-object2.html = FAIL // V8 doesn't stable sort and we currently have no intention of // changing this. The following tests only happen to pass due to // the current algorithm used for sorting small arrays. If larger // arrays were used in the tests, they would fail. // It is tracked by: http://code.google.com/p/v8/issues/detail?id=90 WONTFIX : fast/js/comparefn-sort-stability.html = PASS WONTFIX : fast/js/sort-stability.html = PASS // We have no indication that anyone misses this and have currently no // intention of implementing it. WONTFIX : 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 : 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 : fast/js/global-recursion-on-full-stack.html = FAIL // Our DOM Storage implementation doesn't use WebKit's private browsing feature (even for incognito mode). WONTFIX : storage/domstorage/localstorage/private-browsing-affects-storage.html = FAIL WONTFIX : storage/domstorage/sessionstorage/private-browsing-affects-storage.html = FAIL // These tests propagate auth credentials back to the renderer, which we // don't want to do. WONTFIX BUGCR21840 MAC LINUX : http/tests/loading/basic-auth-resend-wrong-credentials.html = FAIL WONTFIX BUGCR21840 WIN : http/tests/loading/basic-auth-resend-wrong-credentials.html = FAIL TIMEOUT WONTFIX BUGCR21840 : http/tests/loading/basic-credentials-sent-automatically.html = FAIL // This checks the IDN behavior of WebKit/WebKit on Mac, not WebKit/WebCore or // WebKit/JavaScriptCore. Chrome doesn't use WebKit/WebKit, and Chrome's IDN // security model is different from it. BUGCR21814 WONTFIX SKIP: fast/encoding/idn-security.html = FAIL // Our implementation of global history is completely different, and // these tests are irrelevant. BUGCR23748 WONTFIX : http/tests/globalhistory = FAIL // DataGrid was pulled from HTML5 spec, unlikely to re-emerge in the current form. BUGCR17585 WONTFIX : fast/dom/HTMLDataGridElement = FAIL // We are not going to support submitting a form to about:* pages. // For more details, see discussions at issue 20570. BUGCR20570 WONTFIX : fast/forms/get-forms-to-about-blank.html = FAIL // xhtml mp tests were added in http://trac.webkit.org/changeset/43865 and are // skipped on all platforms upstream. // We are not planning to support these. BUGCR12254 WONTFIX SKIP : fast/xhtmlmp = FAIL BUGCR12254 WONTFIX SKIP : http/tests/xhtmlmp = FAIL // This test requires LayoutTestController.setCacheModel, which we don't implement // because we can't emulate the cahcing behaviors it expects. WONTFIX : fast/dom/HTMLScriptElement/nested-execution.html = FAIL // Deletion UI is a Mail-ism. We don't need to worry about this. WONTFIX SKIP : editing/deleting/deletionUI-single-instance.html = FAIL IMAGE WONTFIX SKIP : fast/dom/Element/id-in-deletebutton.html = TEXT // Tests for FAST_MOBILE_SCROLLING. We don't use it. WONTFIX BUGCR32663 WIN LINUX : fast/fast-mobile-scrolling/fixed-position-element.html = IMAGE+TEXT WONTFIX BUGCR32663 WIN LINUX : fast/fast-mobile-scrolling/no-fixed-position-elements.html = IMAGE+TEXT WONTFIX BUGCR32663 MAC : fast/fast-mobile-scrolling/fixed-position-element.html = IMAGE PASS WONTFIX BUGCR32663 MAC : fast/fast-mobile-scrolling/no-fixed-position-elements.html = IMAGE PASS // Tests for frameset flattening. Relevant only on mobile browsers. WONTFIX SKIP : fast/frames/flattening = TIMEOUT // This should be tested differently (see discussion on https://bugs.webkit.org/show_bug.cgi?id=35063). // No need to waste cycles implementing harness support for this variant of the test. WONTFIX SKIP : fast/loader/api-test-go-to-current-back-forward-item.html = TIMEOUT // We're not planning to support rocker-based cursor navigation. WONTFIX SKIP : fast/spatial-navigation = FAIL // We're not planning to relax third-party cookie rules any time soon. WONTFIX BUGCR37684 SKIP : http/tests/cookies/third-party-cookie-relaxing.html = FAIL // on Mac is always animated. WONTFIX MAC : fast/dom/HTMLProgressElement/progress-element.html = IMAGE PASS // We do not use Safari's private browsing WONTFIX SKIP : storage/private-browsing-noread-nowrite.html = PASS // These tests are WONTFIX because they use codecs Chromium doesn't support. BUGCR16779 WONTFIX SKIP : media/audio-mpeg-supported.html = FAIL TIMEOUT BUGCR16779 WONTFIX SKIP : media/audio-data-url.html = FAIL TIMEOUT BUGCR16779 WONTFIX SKIP : media/media-can-play-mpeg-audio.html = TEXT BUGCR16779 WONTFIX SKIP : media/video-can-play-type.html = FAIL TIMEOUT BUGCR16779 WONTFIX SKIP : media/video-document-types.html = FAIL TIMEOUT BUGCR16779 WONTFIX SKIP : media/video-size-intrinsic-scale.html = FAIL TIMEOUT BUGWK45102 WONTFIX SKIP : media/media-can-play-mpeg4-video.html = TEXT BUGCR68289 WONTFIX SKIP : media/video-element-other-namespace-crash.html = TIMEOUT // Chromium does not use the icon loader in WebCore for loading notifications. WONTFIX SKIP : http/tests/notifications = FAIL // Doesn't apply to Chromium (QuickTime-specific behavior) WONTFIX SKIP : media/video-does-not-loop.html = TIMEOUT // Pre-HTML5 parser quirks only apply to the mac port for now. WONTFIX SKIP : fast/parser/pre-html5-parser-quirks.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 : 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. BUGCR24186 WONTFIX SKIP : plugins/get-url-with-blank-target.html = FAIL // Dashboard-related test WONTFIX SKIP : platform/mac/fast/css/dashboard-region-parser.html = FAIL // Not a test? WONTFIX SKIP : 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 : 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 : fast/encoding/char-decoding-mac.html = FAIL // WebKit QT Build-specific tests WONTFIX SKIP : 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 : platform/mac/editing/pasteboard/dataTransfer-set-data-file-url.html = FAIL WONTFIX SKIP : 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. BUGCR5053 WONTFIX : 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 : 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 : transforms/3d = FAIL // Copying with no selection is sometimes supposed to work // Also skipped by Apple on Windows (rdar://problem/5015941) BUGCR20404 : editing/execCommand/copy-without-selection.html = FAIL // ----------------------------------------------------------------- // LIGHTTPD // ----------------------------------------------------------------- // This are failing for different reasons under our lighttpd configuration. // (Note that lighttpd is only used on Windows at this point.) // LightTPD doesn't accept unknown HTTP methods BUGCR30536 WIN SKIP : http/tests/xmlhttprequest/methods-lower-case.html = TIMEOUT CRASH BUGCR30536 WIN : http/tests/xmlhttprequest/methods-async.html = TIMEOUT BUGCR30536 WIN SLOW : http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method.html = FAIL // LightTPD doesn't accept unknown HTTP methods and passes CGIs a Content-Type // even when a request didn't send the header. BUGCR30536 WIN SLOW : http/tests/xmlhttprequest/methods.html = FAIL // Webkit 50667:50696 (Lighttpd related?) BUGCR30536 WIN : http/tests/xmlhttprequest/xmlhttprequest-setrequestheader-no-value.html = TEXT // Another lighttpd quirk. BUGCR8941 WIN SLOW : http/tests/xmlhttprequest/web-apps/013.html = FAIL BUGCR8941 WIN : 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. // Incrorect results, in incorrect international font metrics. BUGCR20521 LINUX WIN : fast/text/atsui-multiple-renderers.html = FAIL BUGCR20521 LINUX WIN : fast/text/atsui-pointtooffset-calls-cg.html = FAIL TIMEOUT BUGCR20521 LINUX WIN : fast/text/atsui-rtl-override-selection.html = FAIL // This test checks that we hack around a bug in helvetica. We fail to. BUGCR20519 WIN : fast/text/wide-zero-width-space.html = FAIL // There's a missing glyph box in "full-time". BUGCR20547 WIN : fast/text/capitalize-boundaries.html = FAIL // Different button line-heights, our behavior looks wrong. BUGCR20551 LINUX WIN : fast/replaced/table-percent-height.html = FAIL BUGCR20551 LINUX WIN : fast/replaced/table-percent-height-text-controls.html = FAIL // ----------------------------------------------------------------- // PENDING TESTS (forked to pending/, need to be sent upstream) // ----------------------------------------------------------------- // These tests don't work with fast timers due to setTimeout // races. See https://bugs.webkit.org/show_bug.cgi?id=21536 // We currently match upstream except for font differences, but we should // probably rewrite the test as suggested in the webkit bug. BUGCR24195 WIN LINUX : fast/repaint/bugzilla-6473.html = IMAGE+TEXT BUGCR24195 MAC : fast/repaint/bugzilla-6473.html = IMAGE // ----------------------------------------------------------------- // Tests requiring features not currently in test_shell. // ----------------------------------------------------------------- // Implement layoutTestController.display() BUGCR8630 WIN LINUX : fast/repaint/body-background-image.html = FAIL // Relies on text metrics to pass. Rework to be meaningful for ports other than platform/mac. BUGCR8630 WIN LINUX : fast/repaint/overflow-outline-repaint.html = FAIL BUGCR8630 WIN LINUX : fast/backgrounds/solid-color-context-restore.html = FAIL BUGCR8630 WIN LINUX : fast/dynamic/containing-block-change.html = FAIL BUGCR8630 LINUX : fast/forms/listbox-clip.html = IMAGE+TEXT BUGCR8630 WIN LINUX : fast/overflow/hidden-scrollbar-resize.html = FAIL BUGCR8630 WIN LINUX RELEASE : fast/reflections/inline-crash.html = FAIL BUGCR8630 LINUX WIN DEBUG : fast/reflections/inline-crash.html = FAIL BUGCR8630 WIN LINUX : fast/text/font-initial.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. // SKIP because it causes an additional error message in: // 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. BUGCR24197 SKIP : fast/css/disabled-author-styles.html = FAIL // ----------------------------------------------------------------- // Inspector tests // ----------------------------------------------------------------- // There is no message port harness to test extensions WONTFIX SKIP : inspector/extensions.html = FAIL WONTFIX SKIP : inspector/extensions-api.html = FAIL WONTFIX SKIP : inspector/extensions-audits.html = FAIL WONTFIX SKIP : inspector/extensions-audits-api.html = FAIL WONTFIX SKIP : inspector/extensions-events.html = FAIL WONTFIX SKIP : inspector/extensions-eval.html = FAIL WONTFIX SKIP : inspector/extensions-resources.html = TIMEOUT CRASH WONTFIX SKIP : http/tests/inspector/extensions-headers.html = FAIL // Inspector tests in Debug build are very slow. If we remove SLOW, we'll see // random TIMEOUTs. Is this issue DRT-specific? BUG_DRT WIN DEBUG SLOW : inspector = PASS BUG_DRT WIN DEBUG SLOW : http/tests/inspector = PASS BUG_DRT WIN DEBUG SLOW : http/tests/inspector-enabled = PASS // Add support for inspector layout tests on non-Windows. BUGCR26734 LINUX MAC SKIP : inspector = PASS BUGCR26734 LINUX MAC SKIP : http/tests/inspector = PASS BUGCR26734 LINUX MAC SKIP : http/tests/inspector-enabled = PASS BUGCR66087 WIN SLOW : inspector/styles-disable-then-enable.html = PASS TEXT BUGCR66087 WIN : inspector/timeline-layout.html = CRASH TIMEOUT PASS TEXT BUGCR66087 WIN : inspector/timeline-parse-html.html = CRASH TIMEOUT PASS TEXT // WebKit roll 74708:74711 BUGCR68165 WIN DEBUG SLOW : inspector/styles-source-lines.html = PASS BUGCR66087 WIN SLOW : inspector/storage-panel-dom-storage.html = PASS TEXT BUG_DRT WIN : http/tests/inspector-enabled/console-log-before-frame-navigation.html = TEXT BUG_DRT WIN : http/tests/inspector/change-iframe-src.html = CRASH BUGCR66087 WIN SLOW : http/tests/inspector/console-resource-errors.html = PASS TEXT BUGCR66087 WIN SLOW : http/tests/inspector/inspect-iframe-from-different-domain.html = PASS TEXT // ----------------------------------------------------------------- // Other // ----------------------------------------------------------------- // 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). BUGCR20844 LINUX WIN RELEASE : editing/selection/designmode-no-caret.html = FAIL BUGCR20844 LINUX WIN DEBUG : editing/selection/designmode-no-caret.html = FAIL // Regression from merge 41268:41286 BUGCR10435 MAC : editing/selection/designmode-no-caret.html = FAIL // Issue 3273: TextInputController::firstRectForCharacterRange not returning // the correct values for bidi/rtl text. BUGCR3273 : editing/selection/move-left-right.html = FAIL BUGCR3273 MAC : platform/mac/editing/input/caret-primary-bidi.html = FAIL PASS BUGCR3273 MAC : platform/mac/editing/input/firstrectforcharacterrange-plain.html = FAIL PASS BUGCR3273 MAC : platform/mac/editing/input/range-for-empty-document.html = FAIL PASS // These tests also use firstRectForCharacterRange, but they generate slightly // different values. BUGCR3273 : editing/selection/5825350-1.html = TEXT BUGCR3273 : editing/selection/5825350-2.html = TEXT BUGCR3273 : editing/selection/mixed-editability-10.html = TEXT // selection BUGCR10369 LINUX : editing/selection/5354455-2.html = FAIL // 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. BUGCR14832 : editing/selection/user-drag-element-and-user-select-none.html = FAIL // Fails due to textInputController.setInputMethod not implemented for Mac. BUGCR19665 MAC : platform/mac/editing/input/hangul-enter-confirms-and-sends-keypress.html = FAIL BUGCR19665 MAC : platform/mac/editing/input/kotoeri-enter-to-confirm-and-newline.html = FAIL // New failures from merge 51412:51455. BUGCR28916 MAC : editing/pasteboard/paste-xml.xhtml = TEXT // Flaky BUGCR31803 MAC LINUX : editing/inserting/12882.html = IMAGE PASS BUGWK45438 : editing/spelling/spelling-backspace-between-lines.html = TEXT // Tests added in r69269. // Apple-Mac port corrects "notationl" to "notational" automatically? BUGCR58254 MAC : platform/mac/editing/spelling/autocorrection-delete.html = IMAGE+TEXT BUGCR58254 MAC : platform/mac/editing/spelling/autocorrection-removing-underline-after-paste.html = IMAGE+TEXT BUGCR58254 MAC : platform/mac/editing/spelling/autocorrection-removing-underline.html = IMAGE+TEXT BUGCR58254 MAC : platform/mac/editing/spelling/autocorrection-simple.html = IMAGE+TEXT // Directionality of mixed-direction text in selected choice should // match that in the ; various failures, some tests may simply need new // baselines, others have more problems. BUGCR10473 LINUX : fast/forms/placeholder-set-value.html = FAIL BUGCR10473 LINUX : fast/forms/search-display-none-cancel-button.html = FAIL BUGCR10473 LINUX : fast/replaced/width100percent-searchfield.html = FAIL // This test isn't just slow -- sometimes it times out indefinitely. BUGCR27569 LINUX MAC WIN : http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html = TIMEOUT PASS // These tests were affected by rolling out WebKit i8n patches. // Was only WIN, also fail on LINUX since merge 43346:43361 BUGCR9768 LINUX WIN : fast/forms/select-initial-position.html = FAIL // Was only WIN, also fail on LINUX since merge 43346:43361 BUGCR9768 LINUX WIN : fast/forms/select-visual-hebrew.html = FAIL // Was only WIN, also fail on LINUX since merge 43346:43361 BUGCR9768 LINUX WIN : fast/forms/visual-hebrew-text-field.html = FAIL // Linux looks ok, rebaselined. BUGCR9768 WIN : fast/text/cg-fallback-bolding.html = FAIL BUGCR9768 WIN : fast/text/international/001.html = FAIL BUGCR9768 WIN : fast/text/international/002.html = FAIL BUGCR9768 WIN : fast/text/international/003.html = FAIL BUGCR9768 WIN : fast/text/international/wrap-CJK-001.html = FAIL // Merge WebKit 42200:42244 regressions BUGCR9786 : fast/dom/Window/dom-access-from-closure-iframe.html = FAIL BUGCR9786 : fast/dom/Window/dom-access-from-closure-window.html = FAIL BUGCR9786 WIN DEBUG : http/tests/security/cross-frame-access-history-prototype.html = FAIL BUGCR9786 SLOW WIN RELEASE : http/tests/security/cross-frame-access-history-prototype.html = FAIL BUGCR9786 LINUX MAC : http/tests/security/cross-frame-access-history-prototype.html = FAIL BUGCR9786 : http/tests/security/cross-frame-access-location-prototype.html = FAIL BUGCR9786 : http/tests/security/cross-frame-access-document-direct.html = TIMEOUT BUGCR9798 SLOW WIN DEBUG : fast/dom/Window/slow-unload-handler.html = PASS // Was flaky. Became a consistent failure. BUGCR9798 WIN DEBUG : http/tests/local/style-access-before-stylesheet-loaded.html = FAIL PASS BUGCR9798 WIN DEBUG : http/tests/misc/redirect-with-quotes.php = TIMEOUT PASS BUGCR9798 WIN SLOW : http/tests/misc/refresh-headers.php = PASS BUGCR9798 WIN : http/tests/security/cross-frame-access-protocol-explicit-domain.html = FAIL PASS BUGCR9798 WIN DEBUG : http/tests/security/cross-frame-access-protocol.html = FAIL PASS BUGCR9798 RELEASE : http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe.html = TIMEOUT PASS BUGCR9798 WIN : http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout.html = PASS TIMEOUT BUGCR9798 WIN : http/tests/xmlhttprequest/basic-auth.html = TIMEOUT PASS BUGCR9798 WIN DEBUG : http/tests/xmlhttprequest/encode-request-url-2.html = TIMEOUT PASS BUGCR9797 BUGCR9798 WIN RELEASE SLOW : http/tests/xmlhttprequest/state-after-network-error.html = PASS BUGCR9797 LINUX DEBUG : svg/carto.net/colourpicker.svg = FAIL BUGCR9798 LINUX RELEASE : svg/carto.net/colourpicker.svg = FAIL BUGCR9798 LINUX RELEASE : tables/mozilla/bugs/45621.html = FAIL BUGCR9798 LINUX DEBUG SLOW : tables/mozilla/bugs/45621.html = FAIL //also BUGCR24868 (crash) BUGCR9798 LINUX DEBUG : transitions/mask-transitions.html = FAIL PASS BUGCR9798 SLOW LINUX RELEASE : transitions/transition-timing-function.html = PASS // This test definitely times out (i.e. is not just slow). BUGCR9798 WIN RELEASE : http/tests/xmlhttprequest/small-chunks-response-text.html = PASS TIMEOUT BUGCR9798 LINUX : svg/custom/use-property-changes-through-svg-dom.svg = FAIL BUGCR9798 LINUX : svg/custom/js-update-transform-changes.svg = FAIL // Occasionally times out. Not just slow. BUGCR9798 WIN DEBUG : http/tests/loading/redirect-methods.html = TIMEOUT PASS // New tests or failures from WebKit merge 42324:42364. Re-baselined on // Windows. Probably just need the same on other platforms. BUGCR9962 MAC : fast/js/function-apply-aliased.html = FAIL // Regressions from WebKit merge 43264:42403, unknown cause(s) BUGCR10055 MAC : fast/events/updateLayoutForHitTest.html = FAIL // New tests from WebKit Merge 42609:42671 BUGCR10760 LINUX : fast/forms/input-text-scroll-left-on-blur.html = FAIL BUGCR10760 LINUX : fast/inline/25277-2.html = FAIL BUGCR10760 LINUX : fast/inline/25277.html = FAIL BUGCR10760 LINUX : svg/custom/marker-child-changes.svg = PASS FAIL BUGCR10760 LINUX : svg/custom/marker-viewBox-changes.svg = 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. BUGCR11001 LINUX MAC WIN : http/tests/history/back-to-post.php = TIMEOUT // Regressions from WebKit Merge 42932:42994 due to text metric changes. BUGCR11251 WIN DEBUG : fast/forms/textarea-width.html = FAIL BUGCR11251 SLOW WIN RELEASE : fast/forms/textarea-width.html = FAIL BUGCR11251 WIN LINUX RELEASE : fast/forms/text-control-intrinsic-widths.html = FAIL BUGCR11251 LINUX WIN DEBUG : fast/forms/text-control-intrinsic-widths.html = FAIL BUGCR11251 WIN LINUX : svg/custom/svg-fonts-in-text-controls.html = FAIL BUGCR11251 WIN LINUX : fast/forms/textarea-metrics.html = FAIL // Regresssions from WebKit Merge 43114:43242 that just need to be re-baselined. BUGCR11483 LINUX : fast/forms/input-text-double-click.html = FAIL BUGCR11483 LINUX : svg/text/foreignObject-repaint.xml = FAIL // Regressions from WebKit merge 43242:43321. These just need to re-baselining: BUGCR24229 LINUX : fast/forms/select-dirty-parent-pref-widths.html = FAIL BUGCR24229 LINUX : svg/transforms/animated-path-inside-transformed-html.xhtml = FAIL // Details for all of these are in the bugs. BUGCR12361 WIN : http/tests/cookies/double-quoted-value-with-semi-colon.html = FAIL BUGCR12361 LINUX MAC DEBUG : http/tests/cookies/double-quoted-value-with-semi-colon.html = FAIL BUGCR12361 LINUX RELEASE : http/tests/cookies/double-quoted-value-with-semi-colon.html = FAIL BUGCR12361 SLOW MAC RELEASE : http/tests/cookies/double-quoted-value-with-semi-colon.html = FAIL BUGCR14207 LINUX : tables/mozilla/bugs/bug28341.html = FAIL BUGCR32231 WIN DEBUG : tables/mozilla/bugs/bug28341.html = IMAGE PASS // Newly added test http://trac.webkit.org/changeset/44816 BUGCR18733 WIN SLOW : http/tests/xmlhttprequest/cross-origin-no-authorization.html = PASS // WebKit 45017:45086 BUGCR15217 : fast/js/dictionary-no-cache.html = FAIL // WebKit 45086:45111 BUGCR15270 MAC LINUX RELEASE : fast/js/excessive-comma-usage.html = TEXT BUGCR15270 MAC LINUX DEBUG SLOW : fast/js/excessive-comma-usage.html = FAIL BUGCR15270 WIN : fast/js/excessive-comma-usage.html = CRASH FAIL // Flaky for a while; also related to BUGCR17974 BUGCR15267 WIN LINUX : transitions/cancel-transition.html = PASS FAIL // WebKit 45431:45444 BUGCR10384 MAC : fast/events/frame-tab-focus.html = FAIL BUGCR11613 LINUX : fast/forms/tabbing-input-iframe.html = FAIL BUGCR11613 LINUX RELEASE : fast/overflow/scrollRevealButton.html = FAIL BUGCR11613 LINUX DEBUG : fast/overflow/scrollRevealButton.html = FAIL // WebKit merge 42738:45840 // New tests, need baseline. BUGCR16240 WIN DEBUG : http/tests/cache/subresource-expiration.html = TIMEOUT BUGCR16240 MAC WIN RELEASE : http/tests/cache/subresource-expiration.html = TIMEOUT BUGCR14752 LINUX SLOW : http/tests/cache/subresource-expiration.html = PASS // New tests with WebKit merge 46288:46363 BUGCR18116 : fast/dom/constructed-objects-prototypes.html = TEXT BUGCR18116 WIN RELEASE : fast/dom/prototype-inheritance-2.html = TEXT BUGCR18116 WIN DEBUG : fast/dom/prototype-inheritance-2.html = CRASH BUGCR18116 MAC LINUX : fast/dom/prototype-inheritance-2.html = TEXT CRASH // New in WebKit r52559 BUGCR18116 : svg/custom/global-constructors.html = TEXT // Flaky crashes BUGCR18656 MAC RELEASE : fast/dom/Window/window-lookup-precedence.html = FAIL BUGCR18656 MAC DEBUG : fast/dom/Window/window-lookup-precedence.html = FAIL // Test failures caused by re-enabling skia asserts. BUGCR18896 WIN LINUX DEBUG : svg/batik/paints/gradientLimit.svg = TIMEOUT FAIL CRASH // Test failures from WebKit merge 46894 to 46977 BUGCR26737 : fast/js/prototypes.html = FAIL // WebKit roll r47417:47528 BUGCR19766 LINUX : fast/replaced/width100percent-menulist.html = FAIL // WebKit 47777:47790 - getOwnPropertyDescriptor BUGCR20345 : fast/js/getOwnPropertyDescriptor.html = FAIL BUGCR20345 : fast/dom/Window/window-property-descriptors.html = TEXT // Failures from Webkit merger 51724 -> 51772 BUGCR20345 : http/tests/security/cross-frame-access-getOwnPropertyDescriptor.html = TEXT // Flaky, not clear as of when. BUGCR21411 WIN LINUX DEBUG : svg/dom/SVGScriptElement/script-load-and-error-events.svg = TEXT PASS BUGCR25616 WIN : fast/overflow/overflow-float-stacking.html = FAIL // Flaky. The width of containing RenderBlocks sometimes becomes larger BUGCR21958 MAC : svg/hixie/error/012.xml = FAIL // WebKit merge 48500:48585, newly implemented Object.defineProperty. BUGCR22526 WIN MAC: fast/js/Object-create.html = FAIL BUGCR22526 : fast/js/Object-defineProperties.html = FAIL CRASH BUGCR22526 : fast/js/Object-defineProperty.html = FAIL CRASH BUGCR22526 : http/tests/security/xss-DENIED-defineProperty.html = FAIL // WebKit merge 48500:48585, due to newly added support for MathML. BUGCR22554 SKIP : mathml = FAIL // WebKit update 48796:48820 // Test #9 throws an exception. BUGCR23956 WIN LINUX : fast/dom/Range/getClientRects.html = FAIL BUGCR24126 : fast/dom/HTMLInputElement/size-attribute.html = FAIL // Started happening somewhere around http://trac.webkit.org/changeset/48989. BUGCR23955 LINUX : fast/css/last-of-type-pseudo-class.html = IMAGE // Started failing for no apparent reason at r28124, and IMAGE+TEXT diffs started at r51875 // Flaky timeouts first appearing at r27764 (webkit 48947) BUGCR9798 WIN : http/tests/cookies/multiple-cookies.html = TIMEOUT PASS // WebKit update: 49213:49221 BUGCR24063 : fast/dom/Window/window-postmessage-clone.html = FAIL // Got slow with V8 update to 1.3.15. Debug logging perhaps? BUGCR24182 DEBUG SLOW : fast/forms/input-implicit-length-limit.html = PASS BUGCR24182 DEBUG SLOW : fast/forms/input-maxlength.html = PASS // Failing at WebKit Linux (dbg)(3) build 7795 BUGCR24119 LINUX DEBUG : tables/mozilla/bugs/bug1220.html = PASS FAIL // WebKit roll 49405:49413 BUGCR28409 : http/tests/xmlhttprequest/logout.html = FAIL // WebKit Roll 49597:49640 BUGCR24966 SLOW MAC DEBUG : fast/frames/calculate-fixed.html = PASS // WebKit Roll 49640:49684 BUGCR25202 LINUX WIN : svg/W3C-SVG-1.1/masking-path-02-b.svg = FAIL BUGCR25208 LINUX WIN : svg/W3C-SVG-1.1/masking-path-05-f.svg = FAIL BUG_JEREMY MAC : fast/frames/onlyCommentInIFrame.html = FAIL // WebKit Roll 49684:49761 BUGCR26042 DEBUG : http/tests/security/mixedContent/insecure-plugin-in-iframe.html = PASS TEXT BUGCR26042 LINUX RELEASE : http/tests/security/mixedContent/insecure-plugin-in-iframe.html = PASS TEXT // Incorrect baseline removed. BUGCR25433 WIN LINUX : css2.1/t040103-ident-03-c.html = IMAGE // WebKit roll 49961:49992 // Added in http://trac.webkit.org/changeset/49990 BUGCR25884 WIN LINUX : fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll.html = FAIL // This only crashes on the old buildbot slave. It fails image, like the other slaves, on the new one. // FIXME: Make this just be IMAGE after we move over to the new bots. BUGCR26344 LINUX DEBUG : fast/text/atsui-partial-selection.html = CRASH IMAGE BUGWK45957 : fast/multicol/column-rules-stacking.html = FAIL // ==== WebKit roll 50258:50313 ==== BUGCR26291 MAC : fast/text/atsui-multiple-renderers.html = IMAGE BUGCR26291 MAC : transforms/2d/hindi-rotated.html = IMAGE // Flaky since at least WebKit 50258. BUGCR32098 : fast/dom/defaultView.html = MISSING PASS // more test flakiness BUGCR27334 MAC : http/tests/security/xssAuditor/object-embed-tag.html = PASS // more test flakiness BUGCR27418 SLOW WIN RELEASE : http/tests/cookies/simple-cookies-max-age.html = PASS BUGCR27418 SLOW WIN RELEASE : http/tests/misc/url-in-utf16le.html = PASS BUGCR27418 MAC DEBUG : http/tests/plugins/interrupted-get-url.html = PASS TEXT BUGCR27418 MAC RELEASE SLOW : http/tests/plugins/interrupted-get-url.html = PASS // The following upstream patches add -Webkit-color-correction support: // http://trac.webkit.org/changeset/50760 // http://trac.webkit.org/changeset/50852 // The ColorSpace was only implemented for CG, more port implementation // required in order for Chromium to support color correction. BUGCR28005 WIN LINUX : fast/css/color-correction-backgrounds-and-text.html = FAIL BUGCR28005 WIN LINUX : fast/css/color-correction-on-backgrounds.html = IMAGE+TEXT BUGCR28005 WIN LINUX : fast/css/color-correction-on-text.html = IMAGE+TEXT BUGCR28005 WIN LINUX : fast/css/color-correction.html = IMAGE+TEXT BUGCR28005 WIN LINUX : fast/css/color-correction-on-box-shadow.html = IMAGE+TEXT BUGCR28005 WIN LINUX : fast/css/color-correction-on-text-shadow.html = IMAGE+TEXT BUGCR28005 WIN LINUX : fast/css/color-correction-on-background-image.html = FAIL BUGCR28005 WIN LINUX : fast/css/color-correction-untagged-images.html = IMAGE+TEXT // May also be related to r50760, but not as confident. BUGCR27551 WIN : fast/css/shadow-multiple.html = IMAGE // WebKit merge 50756:50820, possibly due to WebKit r50808/r50786 and Chromium r31715 BUGCR27553 WIN : fast/text/atsui-partial-selection.html = IMAGE BUGCR22700 WIN LINUX : fast/canvas/canvas-shadow.html = TEXT // Failures from merge 50972:51042 // The test requires DRT/Test Shell to support error page handling. BUGCR27850 : fast/history/back-forward-reset-after-error-handling.html = TEXT // Need to update chromium so the web frame delegate is informed when window objects // in isolated worlds are cleared. BUGCR27849 : http/tests/security/isolatedWorld/didClearWindowObject.html = TEXT BUGCR28040 WIN MAC DEBUG : fast/body-propagation/overflow/003-xhtml.xhtml = PASS IMAGE+TEXT BUGCR28092 WIN : http/tests/xmlhttprequest/redirect-cross-origin-post.html = PASS FAIL // Started failing with move from Lighttpd to Apache. // Since we have some bots on Lighttpd and some on Apache, mark it as flaky for // now. Once we decide on one or the other, then we can address these tests. BUG_OJAN MAC LINUX : http/tests/loading/text-content-type-with-binary-extension.html = TEXT BUG_OJAN LINUX : http/tests/xmlhttprequest/cache-override.html = TEXT // These tests time out *and* are slow. The test should be fixed to not timeout, // then should be marked as SLOW/PASS. BUGCR2844 WIN : http/tests/appcache/cyrillic-uri.html = TIMEOUT PASS CRASH BUGCR2844 WIN : http/tests/appcache/fail-on-update.html = TIMEOUT PASS TEXT BUGCR2844 WIN : http/tests/appcache/offline-access.html = TIMEOUT PASS BUGCR2844 WIN LINUX DEBUG : http/tests/appcache/update-cache.html = TIMEOUT PASS BUGCR2844 WIN RELEASE : http/tests/appcache/update-cache.html = TIMEOUT PASS // These tests sometimes pass and sometimes have a text difference due // to chromium's appcache being async. BUGCR2844 WIN RELEASE : http/tests/appcache/top-frame-3.html = TEXT PASS BUGCR2844 MAC LINUX : http/tests/appcache/top-frame-3.html = TEXT PASS BUGCR2844 WIN RELEASE : http/tests/appcache/top-frame-4.html = TEXT PASS BUGCR2844 MAC LINUX : http/tests/appcache/top-frame-4.html = TEXT PASS // These fail because chromium's appcache is async but webkit's is not. BUGCR2844 SKIP : http/tests/appcache/idempotent-update.html = FAIL BUGCR2844 SKIP : http/tests/appcache/top-frame-2.html = FAIL // This test fails because there is no setAppCacheMaximumSize API yet. BUGCR2844 SKIP : http/tests/appcache/max-size.html = FAIL // Flakiness documented around Webkit Roll 51681:51711 BUGCR2844 SKIP : http/tests/appcache/404-manifest.html = TIMEOUT PASS BUGCR2844 SKIP : http/tests/appcache/404-resource.html = TIMEOUT PASS BUGCR2844 SKIP : http/tests/appcache/foreign-iframe-main.html = TIMEOUT PASS BUGCR2844 SKIP : http/tests/appcache/non-html.xhtml = TIMEOUT PASS // New failures from WebKit r51577 BUGCR29164 WIN LINUX MAC : fast/frames/sandboxed-iframe-plugins.html = TEXT // New failures from WebKit merge 51581:51584 BUGCR29167 MAC DEBUG : fast/dom/replaceChild.html = IMAGE PASS // Failures introduced by USE_NEW_BUILDER in Skia. BUGCR33287 WIN LINUX : fast/canvas/set-colors.html = TEXT // Failures from WebKit merge 51711:51724 BUGCR32003 : fast/js/string-property-deletion.html = TEXT // Regression from Webkit merge 51772 -> 51784 BUGCR35329 WIN : http/tests/appcache/resource-redirect-2.html = TIMEOUT PASS // More Webkit Roll to r51875 // Some of these went from IMAGE+TEXT to just IMAGE at r57886 BUGCR29737 MAC : svg/custom/use-elementInstance-event-target.svg = IMAGE BUGCR29737 MAC : svg/W3C-SVG-1.1/struct-image-02-b.svg = IMAGE BUGCR29737 MAC : svg/filters/sourceAlpha.svg = IMAGE // These tests got very flaky (failing 8/10 runs!) after // http://src.chromium.org/viewvc/chrome?view=rev&revision=34610 // The only relevant change there is that we now sort tests purely // lexicographically instead of putting the http tests first. This is a good // thing because it matches upstream. The regressions are likely due to timing // issues because the http tests moved from one debug shard to another. // Likely, moving Windows to using Apache2 will fix this as the Linux/Mac builds // did not get flaky here and moving to Apache made the appcache tests less // flaky on those platforms. BUGCR25977 WIN DEBUG : http/tests/appcache/access-via-redirect.php = TIMEOUT PASS BUGCR25977 WIN : http/tests/appcache/auth.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/crash-when-navigating-away-then-back.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/empty-manifest.html = TIMEOUT PASS // This test is slow on windows, but sometimes times out indefinitely. // See if this improves when we move to apache. BUGCR25977 WIN : http/tests/appcache/fallback.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/local-content.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/main-resource-hash.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/manifest-containing-itself.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/manifest-redirect-2.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/manifest-redirect.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/manifest-with-empty-file.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/wrong-content-type.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/online-whitelist.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/top-frame-1.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/whitelist-wildcard.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/resource-redirect.html = TIMEOUT PASS BUGCR25977 WIN : http/tests/appcache/xhr-foreign-resource.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/simple.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/reload.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/wrong-signature-2.html = TIMEOUT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/top-frame-4.html = TIMEOUT TEXT PASS BUGCR25977 WIN DEBUG : http/tests/appcache/top-frame-3.html = TIMEOUT TEXT PASS // WebKit update 52293->52323 BUGCR31253 : http/tests/security/xss-DENIED-assign-location-href-javascript.html = TEXT // WebKit update 52323->52366 BUGCR30826 WIN : platform/win/fast/events/panScroll-imageMap-noHref-scroll.html = TEXT BUGCR30826 WIN DEBUG : platform/win/fast/events/panScroll-event-fired.html = PASS TEXT TIMEOUT // Flaky BUGCR30930 LINUX DEBUG : tables/mozilla/bugs/bug15933.html = IMAGE PASS // WebKit roll 52468->52535 BUGCR31991 WIN LINUX : fast/text/international/bidi-layout-across-linebreak.html = TEXT BUGCR31252 : http/tests/security/listener/xss-inactive-closure.html = TEXT BUGCR31623 WIN: http/tests/appcache/remove-cache.html = PASS TEXT TIMEOUT // WebKit roll 52852 -> 52867 BUGCR32018 DEBUG : http/tests/websocket/tests/simple-stress.html = PASS TEXT TIMEOUT // V8's implementation of getOwnPropertyNames has different results for built-in // functions. BUGCR32155 : fast/js/Object-getOwnPropertyNames.html = TEXT // New flakiness? BUGCR32149 WIN RELEASE : fast/dom/Document/early-document-access.html = TIMEOUT PASS // Expectations from roll to 53171:53194 // As of Oct 7, 2010, times out on all platforms when doing DEBUG costing 13 seconds on average. Skipping. BUGCR32308 DEBUG SKIP : fast/frames/cached-frame-counter.html = TIMEOUT // WebKit roll 53341:53451 BUGCR32670 LINUX : fast/css/zoom-body-scroll.html = TEXT BUGCR32673 WIN LINUX : fast/forms/textarea-scrollbar-height.html = TEXT // Flaky tests found during the roll. BUGCR32689 MAC LINUX DEBUG : http/tests/security/mixedContent/about-blank-iframe-in-main-frame.html = TEXT PASS BUGCR32693 MAC DEBUG : svg/dom/SVGRectElement/rect-modify-rx.svg = TEXT PASS BUGCR33293 SKIP : fast/media/lifetime.html = TIMEOUT // WebKit roll 53655 -> 53704 BUGCR32900 WIN LINUX : http/tests/misc/slow-loading-mask.html = IMAGE+TEXT // WebKit roll 53941 -> 54015 BUGCR33358 WIN LINUX : fast/dom/Window/window-postmessage-clone-frames.html = TEXT // WebKit roll 54059 -> 54075 BUGCR33538 : fast/dom/Window/anonymous-slot-with-changes.html = TEXT BUGCR35064 WIN : fast/forms/restore-selection-after-layout.html = TEXT PASS // WebKit roll 54482 to 54493. BUGCR35242 WIN : svg/W3C-SVG-1.1/text-intro-05-t.svg = IMAGE+TEXT // WebKit roll 54493 to 54530: new tests. BUGCR35114 : fast/js/parser-syntax-check.html = TEXT // Started failing during roll from 54848 -> 54898 // Started failing with 54865. No rebaselines upstream but they don't run pixel tests. BUGCR36019 WIN LINUX : fast/images/svg-as-tiled-background.html = IMAGE // WebKit roll 55250 to 55339 BUGCR36966 : fast/loader/about-blank-hash-kept.html = FAIL // New test, added http://trac.webkit.org/changeset/55546 BUGCR37896 WIN LINUX : fast/multicol/hit-test-above-or-below.html = TEXT BUGCR37896 WIN DEBUG : fast/text/firstline/001.html = PASS CRASH BUGCR37896 LINUX MAC DEBUG : fast/text/firstline/001.html = PASS CRASH TIMEOUT // Added in http://trac.webkit.org/changeset/55587 // Three flaky tests noticed during a sheriff rotation. BUGCR37962 MAC LINUX DEBUG : fast/dom/HTMLElement/bdo.html = CRASH PASS BUGCR37962 LINUX DEBUG : fast/forms/multiple-form-submission-protection-mouse.html = CRASH PASS // WebKit roll r55853 -> 55940 // Flaky test BUG_JIANLI MAC : fast/forms/select-style.html = IMAGE PASS // The touch targeting logic was recently changed. // TIMEOUT added for WebKit roll 74534:74557 // FAIL added because of differing failure modes on different platforms BUGCR36415 : fast/events/touch/touch-target.html = FAIL TIMEOUT // One pixel changes from gray 0x83 to gray 0x81. Valgrind is clean. BUGCR38534 LINUX : tables/mozilla/bugs/bug20804.html = IMAGE PASS // WebKit roll 56197:56239. // Needs layoutTestController.setMediaType() (implemented on Qt only) BUGCR38656 : fast/media/print-restores-previous-mediatype.html = TEXT // Needs layoutTestController.setViewModeMediaFeature() BUGCR40680 SKIP : fast/media/view-mode-media-feature.html = FAIL BUGCR40680 SKIP : fast/media/media-query-list-02.html = FAIL BUGCR40680 SKIP : fast/media/media-query-list-03.html = FAIL BUGCR40680 SKIP : fast/media/media-query-list-04.html = FAIL BUGCR40680 SKIP : fast/media/media-query-list-05.html = FAIL BUGCR40680 SKIP : fast/media/media-query-list-06.html = FAIL BUGCR40680 SKIP : fast/media/media-query-list-07.html = FAIL // Unknown flakiness. BUGCR38706 : svg/custom/deep-dynamic-updates.svg = IMAGE+TEXT IMAGE PASS // Caused by http://trac.webkit.org/changeset/56288/ BUGCR29737 WIN LINUX : svg/filters/filterRes.svg = IMAGE // Caused by http://trac.webkit.org/changeset/56394. BUG_JAPHET WIN : http/tests/xmlhttprequest/xmlhttprequest-50ms-download-dispatch.html = TEXT // Due to the differences in initialization checks in KURL and googleurl. // Note: this test was also marked as flaky on WIN RELEASE above, BUGCR31342. BUGCR39423 : security/block-test.html = TIMEOUT BUGWK36666 : storage/open-database-over-quota.html = TEXT BUGWK37283 : fast/overflow/scrollbar-restored-and-then-locked.html = TEXT BUGWK37297 : fast/history/nested-visited-test.html = TEXT BUGWK37297 : fast/history/self-is-visited.html = TEXT BUGWK37297 : fast/history/sibling-visited-test.html = TEXT // Added in http://trac.webkit.org/changeset/57476. Fails in Chromium because // LayoutTestController::computedStyleWithVisitedInfo() is missing. BUGCR41206 : fast/history/multiple-classes-visited.html = TEXT TIMEOUT // Tests that work with KURL, but fail with GURL BUGCR41292 : fast/url/ipv4.html = TEXT BUGCR41292 : fast/url/anchor.html = TEXT BUGWK33812 SKIP : fast/dom/icon-url-property.html = FAIL // Failing with webkit roll 57659 -> 57677. BUGCR41817 WIN LINUX : fast/backgrounds/svg-as-background-1.html = IMAGE PASS BUGCR41817 WIN LINUX : fast/backgrounds/svg-as-background-3.html = IMAGE PASS BUGCR41817 MAC : svg/text/text-intro-05-t.svg = IMAGE BUGCR42044 WIN : http/tests/security/xss-DENIED-mime-type-execute-as-html.html = PASS TIMEOUT // might have been flaky BUGJAMESR WIN LINUX : svg/filters/filter-clip.svg = IMAGE BUGJAMESR WIN : svg/filters/filter-source-position.svg = IMAGE BUGJAMESR MAC LINUX : svg/filters/filter-source-position.svg = IMAGE BUGJAMESR BUGCR30048 BUGCR29737 WIN LINUX : svg/filters/shadow-on-rect-with-filter.svg = IMAGE // New layoutTestController function added at r57993 BUGCR42696 : http/tests/xmlhttprequest/cross-origin-authorization-with-embedder.html = TIMEOUT // Started failing at r58152 BUGWK38038 WIN LINUX MAC : fast/url/file-http-base.html = TEXT // New test, may be safe to just rebaseline. // Started failing at 58212 BUGWK38108 MAC : fast/backgrounds/size/contain-and-cover.html = IMAGE // WebKit roll 58304:58400 // Skip since not relevant BUGUKAI WIN MAC SKIP : fast/text/international/bold-bengali.html = FAIL // WebKit roll 58400:58523 // We probably don't want to run these massive amount of new ECMA script conformance tests: BUGCR42875 SKIP : fast/js/sputnik = TEXT // These tests may just need to be rebaselined. BUGWK38360 WIN LINUX : fast/images/svg-background-partial-redraw.html = FAIL BUGWK38360 WIN LINUX : svg/carto.net/tabgroup.svg = FAIL // Failing a few times, flak dashboard seems to agree. BUGCR41973 MAC : svg/text/text-text-05-t.svg = IMAGE // WebKit roll 58626:58719 BUGCR43963 WIN : fast/forms/searchfield-heights.html = IMAGE BUGCR43963 LINUX : fast/forms/searchfield-heights.html = IMAGE+TEXT TEXT BUGWK38705 : http/tests/security/sandbox-inherit-to-initial-document-2.html = TEXT // WebKit roll 58791:58807 BUGCR43319 MAC : fast/forms/select-empty-option-height.html = TIMEOUT IMAGE PASS BUGCR43496 LINUX : svg/custom/repaint-stroke-width-changes.svg = IMAGE PASS BUGCR43497 MAC WIN : svg/custom/repaint-stroke-width-changes.svg = IMAGE PASS // WebKit roll 58855:58878 BUGCR43419: fast/wcss/wap-input-format.xhtml = TEXT BUGCR43419: fast/wcss/wap-input-required.xhtml = TEXT // Flaky tests BUGCR43890 WIN : http/tests/loading/basic.html = TEXT PASS // Flaky crashing test. Started crashing around Chromium r47220 BUGCR44150 LINUX : fast/forms/input-text-paste-maxlength.html = CRASH PASS // The following tests fail on all platforms and need further investigation. // Many of these are skipped on the Mac platform BUGWK45991 : canvas/philip/tests/2d.drawImage.broken.html = TEXT BUGWK45991 MAC WIN : canvas/philip/tests/2d.gradient.radial.cone.top.html = TEXT BUGWK45991 LINUX RELEASE : canvas/philip/tests/2d.gradient.radial.cone.top.html = TEXT BUGWK45991 LINUX DEBUG : canvas/philip/tests/2d.gradient.radial.cone.top.html = TEXT TIMEOUT BUGWK39212 : canvas/philip/tests/2d.imageData.create1.type.html = TEXT BUGWK39212 : canvas/philip/tests/2d.imageData.create2.type.html = TEXT BUGWK39212 : canvas/philip/tests/2d.imageData.get.type.html = TEXT BUGWK40272 : canvas/philip/tests/2d.imageData.object.round.html = TEXT BUGWK40272 : canvas/philip/tests/2d.imageData.object.wrap.html = TEXT BUGWK45991 : canvas/philip/tests/2d.missingargs.html = TEXT BUGWK45991 : canvas/philip/tests/2d.pattern.image.broken.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.baseline.ideographic.html = TEXT BUGWK48579 : canvas/philip/tests/type.prototype.html = TEXT BUGWK50797 : canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-6.html = TEXT BUGWK40147 MAC : canvas/philip/tests/toDataURL.jpeg.alpha.html = TEXT BUGCR61824 : canvas/philip/tests/2d.pattern.image.string.html = TEXT // Update canvas/philip in WK r71481 BUGCR62301 : canvas/philip/tests/2d.drawImage.image.incomplete.omitted.html = TEXT BUGCR62301 : canvas/philip/tests/2d.fillStyle.parse.rgb-eof.html = TEXT BUGCR62301 : canvas/philip/tests/2d.fillStyle.parse.rgba-eof.html = TEXT BUGCR62301 : canvas/philip/tests/2d.imageData.put.wrongtype.html = TEXT BUGCR62301 : canvas/philip/tests/2d.pattern.image.incomplete.empty.html = TEXT BUGCR62301 : canvas/philip/tests/2d.pattern.image.incomplete.omitted.html = TEXT BUGWK48288 : canvas/philip/tests/2d.composite.operation.clear.html = TEXT BUGWK48289 : canvas/philip/tests/2d.composite.operation.darker.html = TEXT BUGWK48290 : canvas/philip/tests/2d.composite.operation.highlight.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.fill.copy.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.fill.destination-in.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.fill.source-in.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.fill.source-out.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.image.copy.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.image.destination-atop.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.image.destination-in.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.image.source-in.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.image.source-out.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.pattern.copy.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.pattern.source-in.html = TEXT BUGWK39177 : canvas/philip/tests/2d.composite.uncovered.pattern.source-out.html = TEXT BUGWK39168 : canvas/philip/tests/2d.fillStyle.parse.system.html = TEXT BUGWK45991 : canvas/philip/tests/2d.pattern.image.undefined.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.baseline.bottom.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.baseline.hanging.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.baseline.middle.html = TEXT BUGWK38463 : canvas/philip/tests/2d.text.draw.baseline.top.html = TEXT BUGWK20867 : canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.space.collapse.end.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.space.collapse.nonspace.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.space.collapse.other.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.space.collapse.space.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.draw.space.collapse.start.html = TEXT BUGWK50859 : canvas/philip/tests/2d.text.font.parse.basic.html = TEXT BUGWK50859 : canvas/philip/tests/2d.text.font.parse.complex.html = TEXT BUGWK50859 : canvas/philip/tests/2d.text.font.parse.invalid.html = TEXT BUGWK50859 : canvas/philip/tests/2d.text.font.parse.size.percentage.default.html = TEXT BUGWK50859 : canvas/philip/tests/2d.text.font.parse.size.percentage.html = TEXT BUGWK50859 : canvas/philip/tests/2d.text.font.parse.system.html = TEXT BUGWK45991 : canvas/philip/tests/2d.text.measure.width.space.html = TEXT // These tests fail everywhere we use skia and are most likely skia bugs BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.object.update.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.radial.cone.behind.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.radial.cone.beside.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.radial.cone.cylinder.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.radial.cone.shape2.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.radial.outside3.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.radial.touch1.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.gradient.radial.touch3.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.line.width.basic.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.line.width.transformed.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.path.arc.angle.3.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.path.arc.angle.5.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.path.arcTo.shape.curve1.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.path.arcTo.shape.curve2.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.pattern.paint.norepeat.coord3.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.pattern.paint.repeatx.coord1.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.pattern.paint.repeaty.coord1.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.alpha.3.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.alpha.4.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.alpha.5.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.canvas.alpha.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.canvas.basic.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.canvas.transparent.2.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.enable.blur.html = TEXT BUGWK15266 LINUX WIN : canvas/philip/tests/2d.shadow.gradient.alpha.html = TEXT BUGWK15266 LINUX WIN : canvas/philip/tests/2d.shadow.gradient.basic.html = TEXT BUGWK15266 LINUX WIN : canvas/philip/tests/2d.shadow.gradient.transparent.2.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.image.alpha.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.image.basic.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.image.scale.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.image.transparent.2.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.pattern.alpha.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.pattern.basic.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.shadow.pattern.transparent.2.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.transformation.setTransform.skewed.html = TEXT BUGWK45991 LINUX WIN : canvas/philip/tests/2d.transformation.transform.skewed.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.gradient.radial.cone.front.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.gradient.radial.inside2.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.gradient.radial.inside3.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.gradient.radial.outside1.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.line.cap.closed.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.line.join.parallel.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.line.miter.lineedge.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.path.rect.winding.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.shadow.enable.blur.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.shadow.enable.x.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.shadow.enable.y.html = TEXT BUGWK45991 MAC : canvas/philip/tests/2d.strokeRect.zero.4.html = TEXT BUGWK45991 WIN : canvas/philip/tests/2d.gradient.radial.touch2.html = TEXT // Flaky tests BUGCR44229 WIN LINUX : fast/loader/recursive-before-unload-crash.html = PASS TEXT BUGWK39655 : fast/dom/prototype-property.html = FAIL // These SVG tests have been flaky on Win from quite some time. // Hard to pin down which roll introduced the flakiness. BUGCR45106 WIN : svg/clip-path/clip-path-evenodd-nonzero.svg = PASS CRASH BUGCR45106 WIN : svg/text/text-text-05-t.svg = PASS CRASH BUGCR45720 WIN LINUX : http/tests/websocket/tests/reload-crash.html = PASS CRASH // Chromium does not support cancel for notifications permissions. BUGWK42798 SKIP : fast/notifications/notifications-cancel-request-permission.html = FAIL // HTML5 Geolocation API does not use window.clientInformation. BUGCR11246 SKIP : fast/dom/Window/window-properties-geolocation.html = TEXT BUGWK40740 : svg/W3C-SVG-1.1/fonts-glyph-02-t.svg = CRASH PASS BUGCR46603 : fast/frames/lots-of-iframes.html = PASS TIMEOUT BUGCR46603 : fast/frames/lots-of-objects.html = PASS TIMEOUT // LayoutTestController::pageProperty is not implemented for Chromium yet. BUGWK35961 : printing/page-rule-selection.html = TEXT BUGCR47035 WIN DEBUG : fast/loader/stateobjects/document-destroyed-navigate-back-with-fragment-scroll.html = PASS TEXT // CSS3 Hyphenation landed in http://trac.webkit.org/changeset/61548 // We don't implement it yet. BUGCR47083 : fast/text/hyphenate-character.html = IMAGE+TEXT BUGCR47083 : fast/text/hyphens.html = IMAGE+TEXT BUGCR47083 : fast/text/hyphenate-locale.html = IMAGE+TEXT BUGCR47083 : fast/text/hyphenate-first-word.html = IMAGE+TEXT // WebKit roll 61547:61629. Still need to investigate. BUG_HCLAM : fast/js/script-line-number.html = TEXT // LayoutTestController::isPageBoxVisible, pageAreaRectInPixels, and preferredPageSizeInPixels are not implemented yet for Chromium. BUGWK37538 : printing/page-format-data.html = TEXT // First noticed on trybots after r61836, now in the tree. BUG_MNAGANOV LINUX : fast/js/Object-create.html = CRASH FAIL // Produces different results on Mac dbg. BUGCR47826 MAC SKIP : fast/dom/HTMLMeterElement/meter-appearances-capacity.html = FAIL BUGCR47826 MAC SKIP : fast/dom/HTMLMeterElement/meter-element.html = FAIL BUGCR47826 MAC SKIP : fast/dom/HTMLMeterElement/meter-optimums.html = FAIL BUGCR47826 MAC SKIP : fast/dom/HTMLMeterElement/meter-styles.html = FAIL BUGCR47826 MAC SKIP : fast/dom/HTMLMeterElement/meter-styles-changing-pseudo.html = FAIL BUGWK41311 WIN LINUX : fast/borders/border-radius-circle.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/border-radius-groove-01.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/border-radius-groove-02.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/border-radius-groove-03.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/border-radius-wide-border-01.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/border-radius-wide-border-02.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/border-radius-wide-border-03.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/border-radius-wide-border-04.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDashed04.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDashed05.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDashed06.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDotted04.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDotted05.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDotted06.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDouble04.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDouble05.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDouble06.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDouble07.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDouble08.html = IMAGE BUGWK41311 WIN LINUX : fast/borders/borderRadiusDouble09.html = IMAGE // Need to implement EditorClient::requestCheckingOfString() // Overriden with 66682 // BUGWK41423 WIN LINUX : editing/spelling/spellcheck-paste.html = TEXT // Flaky tests. BUGCR44345 LINUX : svg/zoom/text/zoom-hixie-mixed-009.xml = IMAGE PASS BUGCR44346 LINUX : svg/zoom/page/zoom-hixie-mixed-009.xml = IMAGE PASS BUGCR44347 LINUX : svg/hixie/mixed/009.xml = IMAGE PASS BUGCR48139 LINUX : fast/js/comparison-operators-less.html = CRASH PASS BUGCR48144 LINUX : fast/js/activation-object-function-lifetime.html = CRASH PASS // Failing/flaky. BUGCR48239 : fast/js/function-apply.html = TEXT BUGCR48239 WIN LINUX : fast/js/function-apply-aliased.html = TEXT PASS BUGCR48239 : fast/js/function-apply-many-args.html = TEXT // The error gives a different line number than upstream. Maybe a V8/JSC // difference? BUGCR48452 : svg/custom/use-font-face-crash.svg = FAIL BUGCR48668 MAC : svg/W3C-SVG-1.1/struct-use-01-t.svg = FAIL // These ietestcenter tests still don't pass. Careful before removing these // that the baselines aren't incorrect // (like in: https://bugs.webkit.org/show_bug.cgi?id=42215) BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-b-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-b-2.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-c-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-c-2.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-d-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-d-2.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-d-3.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.1.5_4-4-d-4.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.4.1-4.a-5.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/11.4.1-4.a-7.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.2.3.3-4-178.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.2.3.3-4-179.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.2.3.3-4-180.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.5.4.20-4-10.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.5.4.20-4-18.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.5.4.20-4-34.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.10.6.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.10.7.1-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.10.7.2-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.10.7.3-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.10.7.4-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.10.7.5-1.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.2.3.3-4-212.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.2.3.3-4-213.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.2.3.3-4-214.html = TEXT BUGCR48737 WIN LINUX MAC : ietestcenter/Javascript/15.2.3.3-4-215.html = TEXT BUGCR49029 WIN LINUX MAC : fast/js/object-literal-syntax.html = TEXT BUGCR48859 WIN : fast/inline/continuation-outlines-with-layers-2.html = IMAGE+TEXT // Somehow rebaseline in http://trac.webkit.org/changeset/63196 failed. // Need investigation. BUGWK38016 WIN : svg/custom/foreign-object-skew.svg = FAIL BUGWK42241 LINUX : svg/custom/text-rotated-gradient.svg = IMAGE PASS // These tests all fail because the expected output is wrong. The // reason is that JSC does not currently implement Object.freeze and // Object.isFrozen. These test has intentionally been marked as FAIL, // which makes it easy to fix this when webkit implements these ES5 features. BUGWK42371 : ietestcenter/Javascript/15.2.3.3-4-21.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.3-4-24.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.9-0-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.9-0-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.9-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-0-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-0-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-3.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-4.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-5.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-6.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-7.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-8.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-9.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-10.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-11.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-12.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-13.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-14.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-15.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-16.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-17.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-18.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-19.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-20.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-21.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-22.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-23.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-24.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-25.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-26.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.12-3-27.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.14-2-6.html = FAIL // These tests all fail because the expected output is wrong. The // reason is that JSC does not currently implement Object.seal and // Object.isSealed. These test has intentionally been marked as FAIL, // which makes it easy to fix this when webkit implements these ES5 features. BUGWK42371 : ietestcenter/Javascript/15.2.3.11-0-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-0-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-10.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-11.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-12.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-13.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-14.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-15.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-16.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-17.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-18.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-19.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-20.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-21.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-22.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-23.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-24.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-25.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-26.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-27.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-3.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-4.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-5.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-6.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-7.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-8.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.11-4-9.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.14-2-5.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.3-4-20.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.3-4-23.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.4-4-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.8-0-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.8-0-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.2.3.8-1.html = FAIL // These tests all fail because the expected output is wrong. The // reason is that JSC does not currently implement Function.prototype.bind // These test has intentionally been marked as FAIL, which makes it easy // to fix this when webkit implements this ES5 feature. BUGWK42371 : ietestcenter/Javascript/15.2.3.3-4-38.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-0-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-0-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-13.b-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-13.b-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-13.b-3.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-13.b-4.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-13.b-5.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-15-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-15-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-16-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-3.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-4.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-5.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-6.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-7.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-8.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-2-9.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-8-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-8-2.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-9-1.html = FAIL BUGWK42371 : ietestcenter/Javascript/15.3.4.5-9-2.html = FAIL BUGWK42428 LINUX WIN : svg/W3C-SVG-1.1/filters-conv-01-f.svg = IMAGE+TEXT // Need setPrinting. BUGWK20011 : printing/setPrinting.html = FAIL // Needs V8 change. BUGCR49343 : fast/js/reserved-words-as-property.html = TEXT BUGWK42598 : http/tests/misc/401-alternative-content.php = TEXT BUGWK42598 : http/tests/xmlhttprequest/failed-auth.html = TEXT BUGWK42769 : http/tests/xmlhttprequest/remember-bad-password.html = TEXT BUGWK42769 : http/tests/security/401-logout/401-logout.php = TIMEOUT // Flaky since at least chromium r52834, WebKit r63615. BUGCR49970 : platform/chromium/plugins/call-as-function.html = PASS TEXT // Flaky since WebKit r63994 BUGWK42964 WIN LINUX : tables/mozilla_expected_failures/bugs/bug89315.html = PASS FAIL // Fails since WebKit r64156 BUGWK43086 : fast/canvas/canvas-ImageData-behaviour.html = TEXT // Application Cache Quotas BUGWK43459 : http/tests/appcache/origin-quota.html = TEXT MISSING // Fixed only on Mac // This test has not landed yet, though the fix has. //BUGWK41968 LINUX WIN : svg/hittest/svg-rect-hit.html = TEXT // Need to support DeviceMotion. BUGCR51416 : fast/dom/DeviceMotion/window-property.html = TEXT // Slow test introduced in r64817 BUGCR51571 WIN : http/tests/misc/bad-charset-alias.html = TIMEOUT PASS BUGCR51869 : http/tests/websocket/tests/frame-length-overflow.html = TEXT PASS BUGCR51854 WIN SLOW : http/tests/storage/callbacks-are-called-in-correct-context.html = PASS // Regressions from r65229 BUGWK43912 WIN LINUX : svg/batik/masking/maskRegions.svg = IMAGE BUGWK43912 WIN LINUX : svg/custom/grayscale-gradient-mask.svg = IMAGE BUGWK43912 WIN LINUX : svg/custom/absolute-sized-content-with-resources.xhtml = IMAGE // Times out frequently since the test was added BUGCR52017 MAC LINUX : http/tests/misc/isindex-with-no-form.html = PASS TIMEOUT // Probably http://trac.webkit.org/changeset/65381 // This test causes the next one to run to ASSERT BUGWK44079 DEBUG SKIP : fast/events/popup-allowed-from-gesture-initiated-form-submit.html = PASS // Flaky. Not sure when it started to fail. BUGCR52572 WIN LINUX DEBUG : http/tests/misc/image-blocked-src-change.html = PASS TEXT // Started to crash around Chromium r56408. BUGCR52573 LINUX RELEASE : fast/js/array-every.html = PASS CRASH BUGWK44199 : perf = PASS TEXT BUGWK44199 DEBUG : perf/array-binary-search.html = PASS TEXT TIMEOUT // Failing after http://trac.webkit.org/changeset/65665/ BUGWK44278 WIN LINUX : svg/transforms/text-with-mask-with-svg-transform.svg = IMAGE+TEXT // Clip paths aren't working after http://trac.webkit.org/changeset/65729 BUGWK44341 WIN LINUX : svg/clip-path/clip-path-pixelation.svg = IMAGE+TEXT BUGWK44341 WIN LINUX : svg/clip-path/clip-path-childs-clipped.svg = IMAGE // Flaky on Linux BUGCR53131 LINUX : fast/js/array-iterate-backwards.html = CRASH PASS // new or failing since WebKit rev. 65740:65800 // This test causes the DRT to crash. BUGCR53073 DEBUG SKIP : storage/change-version.html = CRASH PASS BUGCR53073 LINUX : svg/custom/clip-path-units-changes.svg = TEXT PASS // r66144 added tests to test user scripts on special documents, and Linux can't // pass them because they rely on QuickTime being installed. We wontfix these // tests and let the Mac/Win coverage ensure that the (cross-platform) // special-document machinery still works. BUGCR53546 WONTFIX LINUX : userscripts/user-script-video-document.html = TEXT // These tests are flaky on Mac and Linux. BUGCR53554 MAC LINUX : svg/W3C-SVG-1.1/fonts-elem-07-b.svg = PASS IMAGE BUGCR53554 MAC LINUX : svg/custom/svg-fonts-without-missing-glyph.xhtml = PASS IMAGE // New test, need to verify if it's safe to rebaseline. BUGWK44770 WIN LINUX : svg/repaint/filter-repaint.svg = IMAGE+TEXT CRASH // Full Screen JS API is not yet enabled. BUGWK44797 : fullscreen = FAIL // Not focusing an anchor when tab is pressed. BUGWK45061 : fast/forms/focus2.html = FAIL BUGCR54330 MAC : fast/forms/input-spinbutton-capturing.html = TEXT PASS BUGCR54331 MAC : fast/forms/input-number-events.html = TEXT PASS BUGCR54333 WIN LINUX : fast/replaced/embed-display-none.html = PASS TIMEOUT BUGCR54348 LINUX : http/tests/security/xssAuditor/dom-write-innerHTML.html = PASS TEXT // New test in r66740 BUGWK45193 LINUX : fast/text/decomposed-after-stacked-diacritics.html = TEXT CRASH // WebKit r67068 BUGWK45450 WIN LINUX : svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr.html = IMAGE BUGWK45450 WIN LINUX : svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr.html = IMAGE BUGWK45450 WIN LINUX : svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop.html = IMAGE BUGWK45450 WIN LINUX : svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop.html = IMAGE // Regressions from webkit r67182 BUGWK45527 WIN LINUX : fast/dom/replaceChild.html = IMAGE BUGWK45527 MAC RELEASE : fast/dom/replaceChild.html = IMAGE // Regression from r67285 BUGWK45623 WIN LINUX : fast/dynamic/first-letter-display-change.html = IMAGE // New tests added in r67376 BUGWK45652 : fast/viewport/ = TEXT BUGWK45652 SKIP : fast/viewport/viewport-65.html = TEXT BUGWK45652 SKIP : fast/viewport/viewport-82.html = TEXT BUGWK45652 SKIP : fast/viewport/viewport-84.html = TEXT BUGWK45652 SKIP : fast/viewport/viewport-87.html = TEXT BUGWK45652 SKIP : fast/viewport/viewport-126.html = TEXT BUGWK45652 SKIP : fast/viewport/viewport-127.html = TEXT BUGWK45652 SKIP : fast/viewport/viewport-128.html = TIMEOUT TEXT BUGWK45667 : fast/files/read-file-async.html = CRASH PASS BUGWK45667 LINUX : fast/files/read-blob-async.html = CRASH PASS BUGWK45737 DEBUG SLOW : fast/frames/frame-limit.html = PASS // Regressions from webkit roll r67178:t67358 BUGDPRANKE WIN LINUX DEBUG : fast/forms/select-set-length-with-mutation-remove.html = TIMEOUT PASS BUGDPRANKE LINUX DEBUG : http/tests/incremental/slow-utf8-text.pl = TIMEOUT PASS // BUGCR60845 : Adding the sleep may improves the stablility BUGDPRANKE BUGCR60845 WIN LINUX : media/video-poster.html = PASS TEXT BUGWEBGL : fast/canvas/webgl/css-webkit-canvas-repaint.html = IMAGE BUGWEBGL : fast/canvas/webgl/css-webkit-canvas.html = IMAGE BUGWEBGL WIN : fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view.html = CRASH PASS BUGWEBGL WIN DEBUG : fast/canvas/webgl/texture-complete.html = PASS TEXT BUGWEBGL : fast/canvas/webgl/read-pixels-test.html = TIMEOUT // These three failures are due to Mesa bugs BUGWEBGL : fast/canvas/webgl/gl-uniform-arrays.html = TEXT BUGWEBGL : fast/canvas/webgl/point-size.html = TEXT // Failing after r75175 BUGWEBGL : fast/canvas/webgl/glsl-conformance.html = CRASH // These were not fixed by the Mesa 7.9 upgrade. Need to investigate. BUGCR60651 WIN : fast/canvas/webgl/gl-object-get-calls.html = TIMEOUT PASS // BUGCR60651 WIN : fast/canvas/webgl/glsl-conformance.html = TIMEOUT FAIL BUGCR60651 WIN : fast/canvas/webgl/uniform-location.html = TIMEOUT CRASH BUGCR60651 LINUX MAC : fast/canvas/webgl/uniform-location.html = TEXT BUG_AUTO LINUX WIN DEBUG : animations/suspend-resume-animation.html = PASS TEXT BUG_AUTO LINUX RELEASE : animations/3d/transform-origin-vs-functions.html = PASS TEXT BUG_AUTO WIN DEBUG : animations/3d/transform-origin-vs-functions.html = PASS TEXT BUG_AUTO WIN DEBUG : animations/multiple-keyframes.html = PASS TEXT // Seems to have been crashing intermittently for as long as we have test history. BUGCR62741 WIN LINUX DEBUG : svg/clip-path/clip-path-text-and-stroke.svg = CRASH PASS // nodesFromRect() removed from Document.idl and test skipped on other platforms at r68345. BUGWK46596 : fast/dom/nodesFromRect-basic.html = TIMEOUT // Possibly regressed within 68216:68246 (flakiness rate increased) BUGCR57056 LINUX : svg/custom/clip-path-referencing-use2.svg = PASS FAIL BUGCR57056 LINUX : svg/custom/circular-marker-reference-4.svg = PASS FAIL // Flaky since http://trac.webkit.org/changeset/68440 (where this test added at). BUGWK46689 : fast/dom/HTMLElement/class-list.html = TEXT PASS // Flaky since r68438:r68445 or before that. BUGWK46693 MAC : fast/repaint/repaint-svg-after-style-change.html = TEXT // New test; was added in http://trac.webkit.org/changeset/68520 BUGWK46735 WIN : platform/win/plugins/window-geometry-initialized-before-set-window.html = TEXT // New failures introduced in 68854. BUGWK46951 : fast/url/segments-from-data-url.html = TEXT BUGWK46951 : fast/url/segments.html = TEXT // New failure introduced in 68896. BUGWK44406 : http/tests/appcache/foreign-fallback.html = PASS FAIL CRASH // This test starts to timeout during build bots were down between 68880:68920 BUG_HCLAM WIN : fast/css/acid2-pixel.html = TIMEOUT PASS BUGCR62738 BUGCR60845 WIN LINUX : media/video-size.html = PASS TEXT // Unexpected timeout in these tests. BUG_HCLAM : http/tests/css/border-image-loading.html = TEXT TIMEOUT PASS BUG_HCLAM : http/tests/css/css-image-loading.html = TEXT TIMEOUT PASS BUG_HCLAM : http/tests/css/mask-image-loading.html = TEXT TIMEOUT PASS BUG_HCLAM : http/tests/css/reflection-mask-image-loading.html = TEXT TIMEOUT PASS BUG_HCLAM LINUX : svg/text/text-intro-05-t.svg = IMAGE PASS // Added by r69084 BUGCR57934 WIN : http/tests/appcache/fail-on-update-2.html = PASS TEXT TIMEOUT // Failing since r69181. Verified as legitimate by looking at the results // of the SVG rendering. BUGCR58194 LINUX : svg/filters/sourceAlpha.svg = IMAGE BUGCR58195 WIN LINUX : svg/filters/feDisplacementMap.svg = IMAGE // Issues starting from // http://build.chromium.org/buildbot/waterfall.fyi/builders/Webkit%20%28webkit.org%29/builds/35997 BUGCR58333 WIN LINUX : fast/css/font-face-download-error.html = TEXT PASS // Flakiness first seen // http://build.chromium.org/buildbot/waterfall.fyi/builders/Webkit%20%28webkit.org%29/builds/35995 BUGCR58212 WIN : http/tests/appcache/main-resource-redirect.html = TEXT TIMEOUT PASS BUGCR58257 WIN : http/tests/misc/last-modified-parsing.html = PASS TEXT TIMEOUT // Flaky because they snapshot and animation. // Started failing on Mac since 69314:69342. BUGCR10479 : svg/hixie/perf/001.xml = IMAGE PASS BUGCR10479 : svg/hixie/perf/002.xml = IMAGE PASS // New test from Webkit r69326. BUGCR58337 : platform/gtk/fonts/fontconfig-synthetic-bold.html = MISSING // From r69334. Mask seems broken on the reflected image. BUGCR58358 WIN LINUX : fast/css/transformed-mask.html = IMAGE+TEXT // FileWriter isn't in TestShell yet. BUGCR58587 SKIP : fast/filesystem/file-writer-gc-blob.html = FAIL // Failing somewhere between after Webkit r69367 and r69417. BUGCR58970 LINUX : svg/text/text-tselect-02-f.svg = IMAGE PASS BUGCR58931 WIN LINUX : svg/W3C-SVG-1.1/pservers-grad-17-b.svg = IMAGE PASS // Failing from around r62021 BUGCR15797 WIN : fast/dom/object-embed-plugin-scripting.html = TIMEOUT PASS // Failing from r69420, mac failing from r71493:r71496 BUGCR58735 SLOW : http/tests/misc/prefetch-purpose.html = PASS // V8 does not implement ECMAScript strict mode BUGCR58936 : fast/js/basic-strict-mode.html = TEXT BUGCR58936 : fast/js/numeric-escapes-in-string-literals.html = TEXT // Started failing around Webkit r69541 in this build. // http://build.chromium.org/buildbot/waterfall.fyi/builders/Webkit%20Linux%20%28webkit.org%29/builds/40424 BUGCR58942 : fast/dom/prototype-inheritance.html = TEXT // Started failing at Webkit r69628. BUGWK47578 : printing/simultaneous-position-float-change.html = IMAGE+TEXT // We don't support layoutTestController.nodesFromRect so this test just times out BUGWK46600 SKIP : fast/dom/nodesFromRect-links-and-text.html = TEXT BUGWK46600 SKIP : fast/dom/nodesFromRect-inner-documents.html = TEXT // Many flaky SVG tests BUGCR59671 LINUX : svg/W3C-SVG-1.1-SE/pservers-grad-17-b.svg = IMAGE+TEXT PASS BUGCR59671 LINUX : svg/custom/convolution-crash.svg = PASS TEXT BUGCR59671 LINUX : svg/custom/focus-ring.svg = IMAGE+TEXT PASS BUGCR59671 LINUX : svg/custom/repaint-on-constant-size-change.svg = IMAGE PASS BUGCR59671 LINUX : svg/carto.net/slider.svg = IMAGE PASS // Needs investigation BUGJAMESR LINUX WIN : fast/text/international/vertical-text-glyph-test.html = IMAGE+TEXT BUGJAMESR MAC : fast/text/international/vertical-text-glyph-test.html = IMAGE BUGJAMESR LINUX WIN : fast/text/international/vertical-text-metrics-test.html = TEXT // Added in WebKit r69755, failed immediately. BUGJAPHET WIN LINUX : fast/canvas/canvas-currentColor.html = TEXT // Added in WebKit r69749, failed immediately due to KURL/KURLGoogle differences. BUGJAPHET : fast/dom/anchor-getParameter.html = TEXT // Added in Webkit r69707 without expected results. BUGJAPHET : platform/gtk/accessibility/aria-table-hierarchy.html = MISSING // Added in WebKit r69824, failed immediately due to KURL/KURLGoogle differences. BUGJAPHET : fast/dom/HTMLAnchorElement/set-href-attribute-prevents-rebase.html = TEXT // r69833, JSC/V8 Date parsing differences BUGJAPHET : fast/js/date-parse-test.html = TEXT // Added in WebKit r70265 BUGWK48034 : platform/win/plugins/npn-invalidate-rect-invalidates-window.html = TEXT // Have been flaky for a long time. BUGWK48143 : svg/dom/altGlyph-dom.xhtml = CRASH PASS BUGWK48256 WIN LINUX : fast/multicol/float-multicol.html = IMAGE+TEXT PASS BUGWK48263 : media/adopt-node-crash.html = TIMEOUT PASS BUGWK48341 : svg/W3C-SVG-1.1/masking-intro-01-f.svg = CRASH PASS BUGWK48352 : fast/blockflow/block-level-images.html = IMAGE PASS // Vertical text needs to be implemented in platforms other than OS X. BUGCR65877 LINUX WIN : fast/blockflow/border-vertical-lr.html = IMAGE+TEXT BUGCR65877 LINUX WIN : fast/blockflow/japanese-lr-selection.html = IMAGE+TEXT BUGCR65877 LINUX WIN : fast/blockflow/japanese-rl-selection.html = IMAGE+TEXT BUGCR65877 WIN : fast/blockflow/broken-ideographic-font.html = IMAGE BUGCR65877 LINUX : fast/blockflow/broken-ideographic-font.html = IMAGE+TEXT BUGCR65877 LINUX WIN : fast/blockflow/vertical-font-fallback.html = IMAGE+TEXT BUGCR65877 LINUX WIN : fast/blockflow/broken-ideograph-small-caps.html = IMAGE BUGCR65877 LINUX WIN : fast/blockflow/Kusa-Makura-background-canvas.html = IMAGE+TEXT // New test, introduced by http://trac.webkit.org/changeset/70813 with only platform/mac baselines. BUGWK61161 LINUX WIN : fast/blockflow/border-image-horizontal-bt.html = IMAGE+TEXT BUGWK61161 LINUX WIN : fast/blockflow/border-image-vertical-lr.html = IMAGE+TEXT BUGWK61161 LINUX WIN : fast/blockflow/border-image-vertical-rl.html = IMAGE+TEXT // New test, added in http://trac.webkit.org/changeset/70814. // This test was removed by revert of r70814, but keep it for now. //BUGWK61166 LINUX MAC WIN : media/video-seek-by-small-increment.html = TEXT // These tests started failing presumably after r70850 BUGWK48627 MAC : fast/invalid/missing-end-tag.xhtml = IMAGE BUGWK48627 MAC : svg/custom/createImageElement2.xhtml = IMAGE // New test, seems V8 differs from JSC here. // Added by http://trac.webkit.org/changeset/70910 BUGWK61246 : fast/js/interpreter-no-activation.html = TEXT // Failures after WebKit roll 70949:71000 BUGCR61406 : svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop.html = IMAGE+TEXT BUGCR61406 : svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop.html = IMAGE BUGCR61406 WIN LINUX : svg/dynamic-updates/SVGFETurbulenceElement-svgdom-baseFrequency-prop.html = IMAGE // from http://trac.webkit.org/changeset/53086 (expectation changed in above WK roll, was IMAGE+TEXT) BUGCR32153and61406 WIN LINUX : svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop.html = IMAGE // Flaky: fails about 5% of the time. BUGCR31342 WIN RELEASE : security/block-test-no-port.html = TEXT PASS // See also https://webkit.org/b/49045 BUGCR61978 : svg/animations/animate-path-nested-transforms.html = CRASH PASS TEXT BUGCR61978 : svg/animations/animate-text-nested-transforms.html = PASS TEXT // Added in WK r71416, doesn't look like it's applicable to Chromium WONTFIX SKIP WIN : platform/win/plugins/window-region-is-set-to-clip-rect.html = TEXT // Added in WK r71418, doesn't look like it's applicable to Chromium WONTFIX SKIP : platform/win/plugins/draws-gradient.html = IMAGE+TEXT // Added in WK r71424 BUGCR62138 : animations/stop-animation-on-suspend.html = TEXT PASS // test_shell and DRT do not have LayoutTestController.pageSizeAndMarginsInPixels BUGCR62515 : printing/page-format-data-display-none.html = TEXT BUGCR60393 MAC : fast/selectors/001.html = PASS TIMEOUT BUGCR61739 MAC WIN DEBUG SLOW : animations/suspend-resume-animation-events.html = CRASH PASS BUGWK49477 WIN LINUX : fast/canvas/canvas-arc-360-winding.html = TEXT // New test added with http://trac.webkit.org/changeset/72472 BUGCR63921 LINUX WIN : fast/canvas/canvas-fillPath-shadow.html = TEXT BUGCR64129 MAC DEBUG : fast/files/revoke-blob-url.html = CRASH PASS // Unknown reason. Was introduced at r72588 BUG_LOISLO WIN LINUX : fast/canvas/canvas-drawImage-shadow.html = TEXT BUGWK50112 WIN LINUX : fast/canvas/canvas-createPattern-fillRect-shadow.html = TEXT BUGCR64647 WIN LINUX : fast/canvas/canvas-scale-drawImage-shadow.html = TEXT BUGCR64672 : fast/regex/invalid-range-in-class.html = TEXT BUGCR64733 : editing/text-iterator/findString.html = TEXT // FIXME: Need to add tooling support for V8 bugs. BUGV8_953 : fast/regex/pcre-test-1.html = TIMEOUT BUGCR50347 : plugins/get-user-agent-with-null-npp-from-npp-new.html = TEXT BUGCR50282 MAC : fast/images/imagemap-case.html = IMAGE BUGCR50282 MAC : fast/images/imagemap-focus-ring-zoom.html = IMAGE BUGCR50282 MAC : fast/images/imagemap-focus-ring.html = IMAGE BUGCR50282 WIN LINUX : fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map.html = IMAGE+TEXT BUGCR50282 MAC : fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map.html = IMAGE BUGCR50282 WIN LINUX : fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map.html = IMAGE+TEXT BUGCR50282 MAC : fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map.html = IMAGE BUGCR50282 WIN LINUX : fast/images/imagemap-focus-ring-outline-color.html = IMAGE+TEXT BUGCR50282 MAC : fast/images/imagemap-focus-ring-outline-color.html = IMAGE // Started to flake since http://src.chromium.org/viewvc/chrome?view=rev&revision=66937 // (72440; 72514] range BUGCR64952 LINUX : fast/ruby/nested-ruby.html = IMAGE // Selection is wrong. BUGCR64938 : editing/selection/5354455-1.html = TEXT // New test in r73423. // Mac: Some image differences, and the message "scrolled to 3999,0" is missing. BUG_YUTAK MAC SLOW : fast/blockflow/Kusa-Makura-background-canvas.html = IMAGE+TEXT // Regressed at r73423. All areas are painted green. BUGWK50734 : fast/repaint/positioned-document-element.html = IMAGE // r73490. Win/Linux: Focus ring is not rendered. Mac: Just rebaseline? BUG_YUTAK WIN LINUX : fast/images/imagemap-circle-focus-ring.html = IMAGE+TEXT BUG_YUTAK MAC : fast/images/imagemap-circle-focus-ring.html = IMAGE BUG_YUTAK WIN LINUX : fast/images/imagemap-polygon-focus-ring.html = IMAGE+TEXT BUG_YUTAK MAC : fast/images/imagemap-polygon-focus-ring.html = IMAGE // Started to produce text difference occasionally since r68528. BUGCR65279 LINUX DEBUG : fast/css/visited-link-hang.html = TEXT PASS /////////////////////////////////////////////////////////////////////////// // Regressions caused by switching to DRT. /////////////////////////////////////////////////////////////////////////// // DRT needs to schedule paints on invalidations like Chrome does. BUGCR62433 MAC LINUX : fast/backgrounds/animated-gif-as-background.html = IMAGE BUGCR62433 MAC LINUX : fast/images/gif-loop-count.html = IMAGE // input-speech related failures BUG_DRT WIN MAC : fast/speech/input-appearance-numberandspeech.html = IMAGE BUG_DRT WIN MAC : fast/speech/input-appearance-searchandspeech.html = IMAGE BUG_DRT WIN MAC : fast/speech/input-appearance-speechbutton.html = IMAGE // Similar to the above, input-search related failures BUG_DRT MAC : fast/css/input-search-padding.html = IMAGE // Background color is wrong. BUG_DRT MAC : fast/backgrounds/solid-color-context-restore.html = IMAGE BUG_DRT MAC : fast/reflections/inline-crash.html = IMAGE // The background color of Apple Mac results also look wrong. BUG_DRT : http/tests/misc/slow-loading-image-in-pattern.html = IMAGE // Extra didFinishDocumentLoadForFrame line. // The first didFinishDocumentLoadForFrame line is for the previous test document. BUG_DRT WIN MAC LINUX : http/tests/loading/preload-img-test.html = TEXT TIMEOUT PASS // Flaky since 2010-09-17? BUGCR57950 WIN : svg/batik/text/verticalText.svg = CRASH PASS // This is an error which test_shell can't find. BUGWK43960 WIN MAC LINUX : scrollbars/custom-scrollbar-with-incomplete-style.html = IMAGE // media/video-* flakyness BUGCR59665 MAC : media/video-aspect-ratio.html = CRASH TIMEOUT PASS BUGCR59665 MAC : media/video-play-empty-events.html = CRASH TIMEOUT PASS BUGCR59665 MAC : media/video-src-change.html = CRASH TEXT PASS BUGCR59665 MAC : media/video-src.html = CRASH TIMEOUT PASS BUGCR59665 MAC : media/video-controls-rendering.html = CRASH FAIL TIMEOUT PASS BUGCR59665 MAC : media/video-delay-load-event.html = CRASH TIMEOUT PASS BUGCR59665 MAC : media/video-layer-crash.html = CRASH TIMEOUT PASS IMAGE // BUGCR59415 : setting SLOW in test_expectations.txt may fix the problem BUGCR59665 : media/video-loop.html = CRASH TIMEOUT PASS FAIL BUGCR59665 MAC : media/video-load-readyState.html = CRASH TIMEOUT PASS BUGCR59665 MAC : media/video-pause-immediately.html = CRASH PASS // This test needs enhanced eventSender.contextMenu() return value. // See https://bugs.webkit.org/show_bug.cgi?id=45021 for more info. // UNIMPLEMENTED for chrome BUGCR59665 BUGWK45021 SKIP : media/context-menu-actions.html = CRASH TIMEOUT PASS BUGCR54334 MAC LINUX DEBUG : media/video-timeupdate-during-playback.html = PASS TIMEOUT // Started flakily failing on win debug around r70597, WebKit r75136. BUGCR54334 WIN DEBUG : media/video-timeupdate-during-playback.html = PASS TEXT TIMEOUT // Also fails on the mac port; see http://webkit.org/b/34331 BUG_DRT : http/tests/media/video-referer.html = TEXT PASS // Occasionally times out with, only under the DRT for Linux BUGCR58212 LINUX : http/tests/appcache/main-resource-redirect.html = PASS TIMEOUT // Flaky on Linux with test_shell, fails consistently on Mac and Linux DRT BUGWK49265 MAC LINUX : svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop.html = IMAGE PASS BUGWK49406 MAC : svg/animations/animVal-basics.html = TIMEOUT // Not investigated. BUG_DRT LINUX : animations/suspend-resume-animation-events.html = CRASH PASS BUG_DRT MAC LINUX : fast/css/line-height-determined-by-primary-font.html = IMAGE BUG_DRT MAC : fast/dom/Window/Plug-ins.html = TIMEOUT PASS BUG_DRT MAC : fast/dom/Window/alert-undefined.html = TIMEOUT PASS BUG_DRT MAC : fast/dom/beforeload/script-before-load-dynamic.html = TIMEOUT PASS BUG_DRT : fast/dynamic/window-resize-scrollbars-test.html = IMAGE+TEXT BUG_DRT LINUX : fast/events/select-onchange-crash.html = CRASH BUG_DRT DEBUG : fast/frames/calculate-round.html = TIMEOUT PASS BUG_DRT BUGCR43890 LINUX : fast/forms/implicit-submission.html = CRASH PASS TEXT BUG_DRT BUGCR21141 LINUX : fast/forms/select-double-onchange.html = CRASH FAIL BUG_DRT BUGCR21141 LINUX : fast/forms/select-script-onchange.html = CRASH FAIL BUG_DRT MAC : fast/images/extra-image-in-image-document.html = TIMEOUT PASS BUG_DRT MAC : fast/loader/font-face-empty.html = TIMEOUT PASS BUG_DRT MAC : fast/loader/for-window-event-onload-scripts.html = TIMEOUT PASS BUG_DRT MAC : fast/loader/fragment-after-redirect-gets-back-entry.html = TIMEOUT PASS BUG_DRT DEBUG : fast/loader/non-deferred-substitute-load.html = CRASH BUG_DRT WIN : fast/repaint/iframe-scroll-repaint.html = IMAGE BUG_DRT LINUX : fast/repaint/repaint-across-writing-mode-boundary.html = IMAGE BUG_DRT LINUX : fast/table/border-changes.html = TIMEOUT PASS BUG_DRT LINUX : fast/text/find-soft-hyphen.html = CRASH PASS BUG_DRT LINUX : fast/text/justification-padding-mid-word.html = PASS CRASH BUG_DRT MAC LINUX : http/tests/plugins/post-url-file.html = TIMEOUT BUG_DRT BUGCR8729 MAC LINUX : http/tests/multipart/invalid-image-data.html = IMAGE PASS BUG_DRT MAC : media/video-poster.html = TEXT PASS BUG_DRT LINUX : platform/chromium/fast/text/chromium-linux-fontconfig-renderstyle.html = IMAGE+TEXT // Crashes with DRT and is a text failure with TestShell BUG_DRT : platform/gtk/fast/forms/menulist-typeahead-find.html = CRASH TEXT BUG_DRT : storage/domstorage/quota.html = TEXT BUG_DRT LINUX : svg/carto.net/selectionlist.svg = IMAGE PASS BUG_DRT WIN LINUX : svg/custom/use-instanceRoot-event-bubbling.xhtml = TIMEOUT PASS BUG_DRT MAC : svg/custom/clip-path-referencing-use2.svg = TEXT BUG_DRT : svg/custom/selectSubString.html = TIMEOUT BUG_DRT MAC : transforms/2d/zoom-menulist.html = IMAGE // The test says you should see numbers, but we display letters. // It looks like we are missing the WebKit "WeightWatcher" fonts, // checked in as part of http://trac.webkit.org/changeset/34771. BUGCR10370 LINUX WIN : fast/css/font-weight-1.html = IMAGE+TEXT // End DRT failures ///////////////////////////////////////////////////////////////////////////// BUGCR65012 LINUX : fast/dom/HTMLHeadElement/head-check.html = CRASH PASS BUG_VITALYR : fast/images/gray-scale-jpeg-with-color-profile.html = MISSING BUG_VITALYR MAC : tables/mozilla/bugs/bug82946-2.html = IMAGE // Mostly-flaky timeouts BUGCR66085 WIN LINUX : dom/html/level1/core/documentgetdoctypenodtd.html = PASS TIMEOUT BUGCR66085 LINUX : editing/selection/3690703-2.html = PASS TIMEOUT BUGCR66085 LINUX : fast/dom/Geolocation/disconnected-frame-permission-denied.html = PASS TIMEOUT BUGCR66085 WIN LINUX : fast/events/5056619.html = PASS TIMEOUT BUGCR66085 LINUX : fast/js/cyclic-proto.html = PASS TIMEOUT BUGCR66085 WIN LINUX : fast/replaced/css-content-and-webkit-mask-box-image-crash.html = PASS TIMEOUT BUGCR66085 WIN LINUX RELEASE : http/tests/media/reload-after-dialog.html = PASS TIMEOUT BUGCR66085 WIN DEBUG : http/tests/media/reload-after-dialog.html = PASS TIMEOUT BUGCR66085 LINUX DEBUG : http/tests/media/reload-after-dialog.html = CRASH BUGCR66085 LINUX : http/tests/media/video-cancel-load.html = PASS TIMEOUT BUGCR66085 LINUX : http/tests/xmlhttprequest/xmlhttprequest-test-send-flag.html = PASS TIMEOUT BUGCR66085 LINUX : media/constructors.html = PASS TIMEOUT BUGCR66085 : media/remove-from-document.html = PASS TIMEOUT BUGCR66085 : media/video-display-toggle.html = PASS TIMEOUT BUGCR66085 : media/video-play-pause-exception.html = PASS TIMEOUT BUGCR66085 : media/video-source.html = PASS TIMEOUT BUGCR66085 : media/video-source-moved.html = PASS TIMEOUT BUGCR66085 : media/video-source-type.html = PASS TIMEOUT BUGCR66085 LINUX : media/video-src-source.html = PASS TIMEOUT // Flaky failures BUGCR66087 WIN : fast/dom/Geolocation/timestamp.html = PASS TEXT BUGCR66087 LINUX : http/tests/misc/iframe404.html = PASS TEXT BUGCR66087 WIN : http/tests/misc/no-last-modified.html = PASS TEXT BUGCR66087 WIN : http/tests/xmlhttprequest/open-async-overload.html = PASS TEXT // Needs V8 investigation. Skipped due to concern that this may be corrupting // memory and thus leading to unpredictable results. BUGCR66099 SKIP : fast/js/array-sort-modifying-tostring.html = TEXT CRASH TIMEOUT BUGCR66466 MAC WIN DEBUG SLOW : perf/array-nested-loop.html = PASS TEXT BUGCR66554 WIN DEBUG : fast/js/kde/encode_decode_uri.html = CRASH PASS BUGCR66683 WIN LINUX : fast/canvas/canvas-draw-canvas-on-canvas-shadow.html = TEXT BUGCR66682 WIN LINUX MAC : editing/spelling/spellcheck-paste.html = TEXT TIMEOUT BUGCR66686 : fast/loader/user-stylesheet-fast-path.html = TEXT BUGCR66751 : http/tests/local/link-stylesheet-load-order-preload.html = TEXT TIMEOUT PASS BUGCR66751 : http/tests/local/link-stylesheet-load-order.html = TEXT TIMEOUT PASS BUGCR66923 MAC : fast/css/focus-ring-detached.html = IMAGE BUGCR66923 MAC : fast/css/focus-ring-multiline.html = IMAGE BUGCR66979 WIN LINUX : fast/dom/global-constructors.html = TEXT PASS // The test is just too slow and has never passed since on Dbg build. BUG_YURYS DEBUG SLOW : fast/overflow/lots-of-sibling-inline-boxes.html = PASS BUGCR67139 WIN MAC LINUX DEBUG : storage/close-during-stress-test.html = CRASH PASS // These tests are flaky. BUGCR67209 WIN DEBUG : inspector/console-uncaught-exception-in-eval.html = CRASH TIMEOUT PASS BUGCR67209 WIN DEBUG : inspector/timeline-enum-stability.html = CRASH TIMEOUT PASS BUGCR67209 WIN DEBUG : inspector/console-clear.html = CRASH TIMEOUT PASS BUGCR67209 WIN DEBUG : inspector/styles-disable-then-delete.html = CRASH TIMEOUT PASS // WebKit roll 74255:74308 BUGCR67416 : fast/text/emphasis.html = FAIL BUGCR67416 : fast/text/emphasis-vertical.html = FAIL BUGCR67540 WIN LINUX : fast/text/emphasis-overlap.html = IMAGE+TEXT BUGCR67540 WIN LINUX : fast/text/emphasis-avoid-ruby.html = IMAGE BUGCR67540 WIN LINUX : fast/repaint/text-emphasis-h.html = IMAGE BUGCR67540 WIN LINUX : fast/repaint/text-emphasis-v.html = IMAGE BUGCR67662 WIN RELEASE : http/tests/inspector/console-websocket-error.html = TEXT BUGCR67662 WIN DEBUG SLOW : http/tests/inspector/console-websocket-error.html = TEXT BUGCR68173 WIN RELEASE : http/tests/inspector/extensions-resources-redirect.html = TIMEOUT BUGCR68173 WIN DEBUG : http/tests/inspector/extensions-resources-redirect.html = CRASH TIMEOUT BUGCR67442 WIN LINUX : fast/canvas/fillText-shadow.html = TEXT BUGWK51398 MAC : inspector/console-dir-global.html = TIMEOUT BUGWK51398 MAC : inspector/debugger-expand-scope.html = TIMEOUT // WebKit roll 74534:74545 BUGWK51536 : fast/css/box-shadow.html = FAIL TIMEOUT // WebKit roll 74667:74679 BUGCR68067 LINUX DEBUG : fast/canvas/webgl/tex-image-with-format-and-type.html = TEXT PASS BUGWK51720 DEBUG : http/tests/incremental/split-hex-entities.pl = CRASH PASS BUGCR64371 WIN RELEASE : http/tests/appcache/online-whitelist.html = TEXT BUGWK51721 DEBUG SLOW: fast/encoding/parser-tests.html = PASS BUGCR67463 MAC : editing/selection/caret-mode-paragraph-keys-navigation.html = TEXT BUGCR68436 LINUX MAC DEBUG : fast/dom/DOMImplementation/createDocument-with-used-doctype.html = PASS TIMEOUT BUGCR68436 WIN DEBUG : fast/dom/DOMImplementation/createDocument-with-used-doctype.html = PASS TEXT TIMEOUT BUGCR68576 LINUX DEBUG : svg/batik/paints/patternPreserveAspectRatioA.svg = PASS TIMEOUT CRASH BUGCR68599 LINUX WIN : http/tests/security/mixedContent/insecure-css-in-main-frame.html = PASS TEXT // Disabled scrollbars are rendered differently BUGWK52414 MAC : fast/body-propagation/overflow/001-xhtml.xhtml = IMAGE BUGWK52414 MAC : fast/body-propagation/overflow/001.html = IMAGE BUGWK52414 MAC : fast/body-propagation/overflow/005-declarative.xhtml = IMAGE BUGWK52414 MAC : fast/body-propagation/overflow/005-xhtml.xhtml = IMAGE BUGWK52414 MAC : fast/body-propagation/overflow/005.html = IMAGE BUGWK52414 MAC : fast/overflow/006.html = IMAGE BUGWK52414 MAC : fast/overflow/overflow-x-y.html = IMAGE // Platforms that use Skia don't support elliptical gradients. BUGWK51841 : fast/gradients/css3-color-stop-units.html = IMAGE BUGWK51841 : fast/gradients/css3-color-stops.html = IMAGE BUGWK51841 : fast/gradients/css3-linear-angle-gradients.html = IMAGE BUGWK51841 : fast/gradients/css3-radial-gradients.html = IMAGE BUGWK51841 : fast/gradients/css3-radial-gradients2.html = IMAGE BUGWK51841 : fast/gradients/css3-radial-gradients3.html = IMAGE BUGWK51841 : fast/gradients/css3-repeating-radial-gradients.html = IMAGE // This was introduced by r75077. BUGWK52082 LINUX MAC : fast/text/basic/014.html = IMAGE BUGWK52082 LINUX MAC : fast/text/midword-break-after-breakable-char.html = IMAGE BUGWK52082 LINUX : fast/text/capitalize-boundaries.html = IMAGE BUGWK52082 WIN : fast/text/basic/014.html = IMAGE+TEXT BUGWK52082 WIN : fast/text/midword-break-after-breakable-char.html = IMAGE+TEXT // These were introduced by r75139 BUGWK51989 WIN LINUX : fast/canvas/canvas-fillRect-gradient-shadow.html = TEXT BUGWK51989 MAC : svg/batik/text/textEffect.svg = IMAGE BUGWK51989 MAC : svg/batik/text/textEffect3.svg = IMAGE BUGWK51989 MAC : svg/css/composite-shadow-text.svg = IMAGE BUGWK51989 MAC : svg/custom/js-late-gradient-and-object-creation.svg = IMAGE BUGWK51989 MAC : svg/custom/js-late-gradient-creation.svg = IMAGE BUGWK51989 MAC : svg/text/selection-background-color.xhtml = IMAGE BUGWK51989 MAC : svg/text/selection-styles.xhtml = IMAGE BUGWK51989 MAC : svg/text/text-gradient-positioning.svg = IMAGE // These have been flaky for as long as we have test history. BUGWK52064 WIN DEBUG : fast/events/overflow-events.html = PASS TEXT BUGWK52063 WIN DEBUG : http/tests/media/text-served-as-text.html = PASS TEXT TIMEOUT BUGWK52063 WIN : http/tests/navigation/ping-cross-origin.html = PASS TEXT TIMEOUT BUGWK52063 MAC SLOW : http/tests/navigation/ping-cross-origin.html = PASS // These were flaky, now failing more consistently after r75169. BUGWK52061 DEBUG : transitions/suspend-transform-transition.html = IMAGE PASS BUGWK52061 DEBUG : transitions/change-values-during-transition.html = PASS TEXT BUGWK52061 DEBUG : transitions/interrupted-accelerated-transition.html = PASS TEXT BUGWK52061 DEBUG : transitions/transition-timing-function.html = PASS TEXT // Failing since creation in http://trac.webkit.org/changeset/75308 BUG_ABARTH : svg/text/caret-in-svg-text.xhtml = TEXT // V8 test failures introduced by r75408 BUGCR69181 : fast/js/exception-codegen-crash.html = FAIL BUGCR69181 : fast/js/kde/parse.html = FAIL BUGCR69181 : fast/js/large-expressions.html = FAIL // Flaky on Linux since r75250 BUGCR69300 LINUX : svg/batik/text/textOnPath.svg = IMAGE PASS // Test added in r75567 BUGWK52266 WIN : plugins/no-mime-with-valid-extension.html = TEXT // Test added in r75064 BUGCR69395 WIN : inspector/timeline-network-resource.html = TEXT // Flaky since r75548; transformed character is occasionally corrupt BUGCR69411 LINUX : svg/custom/linking-a-03-b-transform.svg = IMAGE PASS // New test added in r75720 BUGCR69571 : plugins/destroy-on-setwindow.html = CRASH // Failing after r75720 BUGCR69612 LINUX : editing/selection/extend-to-line-boundary.html = TEXT BUGCR69612 LINUX : fast/text/atsui-negative-spacing-features.html = IMAGE BUGCR69612 LINUX : fast/text/atsui-spacing-features.html = IMAGE BUGCR69612 LINUX : fast/text/drawBidiText.html = IMAGE BUGCR69612 LINUX : fast/text/international/bidi-AN-after-empty-run.html = IMAGE BUGCR69612 LINUX : fast/text/international/bidi-CS-after-AN.html = IMAGE BUGCR69612 LINUX : fast/text/international/bidi-linebreak-002.html = IMAGE BUGCR69612 LINUX : fast/text/international/bidi-linebreak-003.html = IMAGE BUGCR69612 LINUX : fast/text/international/bidi-mirror-he-ar.html = IMAGE BUGCR69612 LINUX : fast/text/international/bidi-neutral-run.html = IMAGE BUGCR69612 LINUX : fast/text/international/hebrew-vowels.html = IMAGE // Failing after r75768 BUGCR69639 : http/tests/loading/cross-origin-XHR-willLoadRequest.html = TEXT // New test, added in r75852 for JSC, fails in V8 BUGCR69736 : fast/js/js-continue-break-restrictions.html = TEXT