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

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

<h3>Log Message</h3>
<pre>REGRESSION (<a href="http://trac.webkit.org/projects/webkit/changeset/197541">r197541</a>): many tiled drawing tests failing after new &quot;large tile size&quot; logic was added
https://bugs.webkit.org/show_bug.cgi?id=155020

* platform/mac-wk2/TestExpectations: Added failure expectations for tiled drawing tests.
* platform/wk2/TestExpectations: Moved some expectations to a more appropriate section in the file.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsplatformmacwk2TestExpectations">trunk/LayoutTests/platform/mac-wk2/TestExpectations</a></li>
<li><a href="#trunkLayoutTestsplatformwk2TestExpectations">trunk/LayoutTests/platform/wk2/TestExpectations</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (197564 => 197565)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-03-04 16:55:55 UTC (rev 197564)
+++ trunk/LayoutTests/ChangeLog        2016-03-04 17:02:25 UTC (rev 197565)
</span><span class="lines">@@ -1,3 +1,11 @@
</span><ins>+2016-03-04  Darin Adler  &lt;darin@apple.com&gt;
+
+        REGRESSION (r197541): many tiled drawing tests failing after new &quot;large tile size&quot; logic was added
+        https://bugs.webkit.org/show_bug.cgi?id=155020
+
+        * platform/mac-wk2/TestExpectations: Added failure expectations for tiled drawing tests.
+        * platform/wk2/TestExpectations: Moved some expectations to a more appropriate section in the file.
+
</ins><span class="cx"> 2016-03-04  Skachkov Oleksandr  &lt;gskachkov@gmail.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [ES6] Arrow function syntax. Lexical bind &quot;super&quot; inside of the arrow function in generator.
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacwk2TestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac-wk2/TestExpectations (197564 => 197565)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac-wk2/TestExpectations        2016-03-04 16:55:55 UTC (rev 197564)
+++ trunk/LayoutTests/platform/mac-wk2/TestExpectations        2016-03-04 17:02:25 UTC (rev 197565)
</span><span class="lines">@@ -254,6 +254,29 @@
</span><span class="cx"> webkit.org/b/148408 tiled-drawing/scrolling/scroll-snap/scroll-snap-iframe.html [ Pass Failure ]
</span><span class="cx"> webkit.org/b/148408 tiled-drawing/scrolling/root-overflow-with-mousewheel.html [ Pass Failure Timeout ]
</span><span class="cx"> 
</span><ins>+# REGRESSION (r197541): tile drawing tests failing in WebKit 2 after new &quot;large tile size&quot; logic was added
+webkit.org/b/155020 tiled-drawing/background-transparency-toggle.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-with-handler.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed-background/fixed-background-no-image.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed-background/fixed-body-background.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed-background/fixed-html-background.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/scrolling/fixed/four-bars-zoomed.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/tile-coverage-after-scroll-speculative.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/tile-coverage-after-scroll.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/tile-coverage-scroll-to-bottom.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/tile-coverage-slow-scrolling.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/tile-coverage-speculative.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/tile-size-unscrollable.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/tile-size-vertically-scrollable.html [ Failure ]
+webkit.org/b/155020 tiled-drawing/visible-rect-content-inset.html [ Failure ]
+
</ins><span class="cx"> webkit.org/b/139820 fast/frames/lots-of-objects.html [ Timeout ]
</span><span class="cx"> webkit.org/b/139820 fast/frames/lots-of-iframes.html [ Pass Timeout ]
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkLayoutTestsplatformwk2TestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/wk2/TestExpectations (197564 => 197565)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/wk2/TestExpectations        2016-03-04 16:55:55 UTC (rev 197564)
+++ trunk/LayoutTests/platform/wk2/TestExpectations        2016-03-04 17:02:25 UTC (rev 197565)
</span><span class="lines">@@ -237,6 +237,40 @@
</span><span class="cx"> webkit.org/b/154681 storage/indexeddb/database-odd-names.html
</span><span class="cx"> webkit.org/b/154681 storage/indexeddb/odd-strings.html
</span><span class="cx"> 
</span><ins>+# WKTR does not support overriding WebKitUsesPageCachePreferenceKey.
+# https://bugs.webkit.org/show_bug.cgi?id=114153
+fast/harness/use-page-cache.html
+
+# eventSender.dragMode is unimplemented in WKTR
+# Mac: https://bugs.webkit.org/show_bug.cgi?id=68552
+fast/events/controlclick-no-onclick.html
+fast/events/moving-text-should-fire-drop-and-dragend-events.html
+fast/events/moving-text-should-fire-drop-and-dragend-events-2.html
+editing/pasteboard/drag-drop-url-with-style.html
+
+# WTR needs an implementation for eventSender.continuousMouseScrollBy
+# https://bugs.webkit.org/show_bug.cgi?id=69417
+fast/events/wheelevent-direction-inverted-from-device.html
+
+# This should only be a layer change.
+# http://webkit.org/b/82129
+fast/box-shadow/shadow-buffer-partial.html
+fast/block/lineboxcontain/block-font.html
+fast/block/lineboxcontain/block-glyphs.html
+fast/block/lineboxcontain/font.html
+
+# WTR needs an implementation of setAutomaticLinkDetectionEnabled.
+# https://bugs.webkit.org/show_bug.cgi?id=87162
+editing/inserting/smart-link-when-caret-is-moved-before-URL.html
+editing/inserting/smart-quote-with-all-configurations.html
+editing/inserting/typing-space-to-trigger-smart-link.html
+
+# https://bugs.webkit.org/show_bug.cgi?id=115203
+# Downloaded file name tests fail because of incorrect custom policy delegate implementation
+http/tests/download/default-encoding.html
+http/tests/download/inherited-encoding-form-submission-result.html
+http/tests/download/inherited-encoding.html
+
</ins><span class="cx"> ### END OF (1) Classified failures with bug reports
</span><span class="cx"> ########################################
</span><span class="cx"> 
</span><span class="lines">@@ -347,38 +381,9 @@
</span><span class="cx"> compositing/plugins/invalidate_rect.html
</span><span class="cx"> plugins/windowless_plugin_paint_test.html
</span><span class="cx"> 
</span><del>-# WKTR does not support overriding WebKitUsesPageCachePreferenceKey.
-# https://bugs.webkit.org/show_bug.cgi?id=114153
-fast/harness/use-page-cache.html
-
-# eventSender.dragMode is unimplemented in WKTR
-# Mac: https://bugs.webkit.org/show_bug.cgi?id=68552
-# Qt: https://bugs.webkit.org/show_bug.cgi?id=69946
-fast/events/controlclick-no-onclick.html
-fast/events/moving-text-should-fire-drop-and-dragend-events.html
-fast/events/moving-text-should-fire-drop-and-dragend-events-2.html
-editing/pasteboard/drag-drop-url-with-style.html
-
-# WTR needs an implementation for eventSender.continuousMouseScrollBy
-# https://bugs.webkit.org/show_bug.cgi?id=69417
-fast/events/wheelevent-direction-inverted-from-device.html
-
</del><span class="cx"> # eventSender.clearKillRing() is unimplemented
</span><span class="cx"> editing/pasteboard/emacs-cntl-y-001.html
</span><span class="cx"> 
</span><del>-# This should only be a layer change.
-# http://webkit.org/b/82129
-fast/box-shadow/shadow-buffer-partial.html
-fast/block/lineboxcontain/block-font.html
-fast/block/lineboxcontain/block-glyphs.html
-fast/block/lineboxcontain/font.html
-
-# WTR needs an implementation of setAutomaticLinkDetectionEnabled.
-# https://bugs.webkit.org/show_bug.cgi?id=87162
-editing/inserting/smart-link-when-caret-is-moved-before-URL.html
-editing/inserting/smart-quote-with-all-configurations.html
-editing/inserting/typing-space-to-trigger-smart-link.html
-
</del><span class="cx"> # No CORS support for media elements is implemented yet.
</span><span class="cx"> http/tests/security/video-cross-origin-readback.html
</span><span class="cx"> 
</span><span class="lines">@@ -400,12 +405,6 @@
</span><span class="cx"> fast/spatial-navigation/snav-iframe-no-scrollable-content.html
</span><span class="cx"> fast/spatial-navigation/snav-imagemap-overlapped-areas.html
</span><span class="cx"> 
</span><del>-# https://bugs.webkit.org/show_bug.cgi?id=115203
-# Downloaded file name tests fail because of incorrect custom policy delegate implementation
-http/tests/download/default-encoding.html
-http/tests/download/inherited-encoding-form-submission-result.html
-http/tests/download/inherited-encoding.html
-
</del><span class="cx"> # WebFrameLoaderClient::canHandleRequest() has to be implemented.
</span><span class="cx"> http/tests/misc/redirect-to-external-url.html
</span><span class="cx"> 
</span><span class="lines">@@ -498,7 +497,6 @@
</span><span class="cx"> svg/hixie/cascade/002.xml
</span><span class="cx"> transitions/font-family-during-transition.html
</span><span class="cx"> 
</span><del>-
</del><span class="cx"> # [WK2] http/tests/navigation/anchor-frames-cross-origin.html fails.
</span><span class="cx"> # https://bugs.webkit.org/show_bug.cgi?id=83581
</span><span class="cx"> http/tests/navigation/anchor-frames-cross-origin.html
</span><span class="lines">@@ -576,8 +574,8 @@
</span><span class="cx"> # First two lines are reversed when test is flaky.
</span><span class="cx"> fast/preloader/document-write-2.html [ Pass Failure ]
</span><span class="cx"> 
</span><del>-# These two IDB tests are, by their very nature, very slow.
-# Give them some extra time.
</del><ins>+# These two IDB tests are, by their nature, very slow.
+# Give them some extra time. (Why only for WebKit 2?)
</ins><span class="cx"> storage/indexeddb/modern/256-open-databases.html [ Slow ]
</span><span class="cx"> storage/indexeddb/modern/exceed-open-file-limit.html [ Slow ]
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>