Title: [189185] trunk/LayoutTests
- Revision
- 189185
- Author
- [email protected]
- Date
- 2015-08-31 14:38:43 -0700 (Mon, 31 Aug 2015)
Log Message
Repaint cleanup:
absolute-position-change-containing-block.html -> repaint rect tracking.
absolute-position-changed.html -> reftest.
Unreviewed.
* fast/repaint/absolute-position-change-containing-block-expected.png: Removed.
* fast/repaint/absolute-position-change-containing-block-expected.txt:
* fast/repaint/absolute-position-change-containing-block.html:
* fast/repaint/absolute-position-changed-expected.html: Added.
* fast/repaint/absolute-position-changed-expected.png: Removed.
* fast/repaint/absolute-position-changed-expected.txt: Removed.
* fast/repaint/absolute-position-changed.html:
* platform/gtk/fast/repaint/absolute-position-change-containing-block-expected.png: Removed.
* platform/mac/fast/repaint/absolute-position-changed-expected.png: Removed.
Modified Paths
Added Paths
Removed Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (189184 => 189185)
--- trunk/LayoutTests/ChangeLog 2015-08-31 21:05:25 UTC (rev 189184)
+++ trunk/LayoutTests/ChangeLog 2015-08-31 21:38:43 UTC (rev 189185)
@@ -1,3 +1,21 @@
+2015-08-31 Zalan Bujtas <[email protected]>
+
+ Repaint cleanup:
+ absolute-position-change-containing-block.html -> repaint rect tracking.
+ absolute-position-changed.html -> reftest.
+
+ Unreviewed.
+
+ * fast/repaint/absolute-position-change-containing-block-expected.png: Removed.
+ * fast/repaint/absolute-position-change-containing-block-expected.txt:
+ * fast/repaint/absolute-position-change-containing-block.html:
+ * fast/repaint/absolute-position-changed-expected.html: Added.
+ * fast/repaint/absolute-position-changed-expected.png: Removed.
+ * fast/repaint/absolute-position-changed-expected.txt: Removed.
+ * fast/repaint/absolute-position-changed.html:
+ * platform/gtk/fast/repaint/absolute-position-change-containing-block-expected.png: Removed.
+ * platform/mac/fast/repaint/absolute-position-changed-expected.png: Removed.
+
2015-08-31 Chris Dumez <[email protected]>
NodeFilter.SHOW_ALL has wrong value on 32-bit
Deleted: trunk/LayoutTests/fast/repaint/absolute-position-change-containing-block-expected.png
(Binary files differ)
Modified: trunk/LayoutTests/fast/repaint/absolute-position-change-containing-block-expected.txt (189184 => 189185)
--- trunk/LayoutTests/fast/repaint/absolute-position-change-containing-block-expected.txt 2015-08-31 21:05:25 UTC (rev 189184)
+++ trunk/LayoutTests/fast/repaint/absolute-position-change-containing-block-expected.txt 2015-08-31 21:38:43 UTC (rev 189185)
@@ -1 +1,11 @@
+(repaint rects
+ (rect 8 5000 100 100)
+ (rect 108 5100 100 100)
+ (rect 8 8 784 2000)
+ (rect 108 5100 100 100)
+ (rect 100 100 100 100)
+ (rect 16 5008 100 100)
+ (rect 16 5008 100 100)
+ (rect 8 8 100 100)
+)
Modified: trunk/LayoutTests/fast/repaint/absolute-position-change-containing-block.html (189184 => 189185)
--- trunk/LayoutTests/fast/repaint/absolute-position-change-containing-block.html 2015-08-31 21:05:25 UTC (rev 189184)
+++ trunk/LayoutTests/fast/repaint/absolute-position-change-containing-block.html 2015-08-31 21:38:43 UTC (rev 189185)
@@ -1,10 +1,8 @@
<html>
<head>
<link rel="stylesheet" href=""
- <script src="" type="text/_javascript_"></script>
+ <script src="" type="text/_javascript_"></script>
<script type="text/_javascript_">
- if (window.testRunner)
- testRunner.dumpAsText(true);
function repaintTest()
{
document.getElementById('container').style.position = 'static';
Added: trunk/LayoutTests/fast/repaint/absolute-position-changed-expected.html (0 => 189185)
--- trunk/LayoutTests/fast/repaint/absolute-position-changed-expected.html (rev 0)
+++ trunk/LayoutTests/fast/repaint/absolute-position-changed-expected.html 2015-08-31 21:38:43 UTC (rev 189185)
@@ -0,0 +1,8 @@
+<html>
+<head>
+ <link rel="stylesheet" href=""
+</head>
+<body>
+ <div style="top: 200px; left:100px;" class="absolute green"></div>
+</body>
+</html>
Deleted: trunk/LayoutTests/fast/repaint/absolute-position-changed-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/fast/repaint/absolute-position-changed-expected.txt (189184 => 189185)
--- trunk/LayoutTests/fast/repaint/absolute-position-changed-expected.txt 2015-08-31 21:05:25 UTC (rev 189184)
+++ trunk/LayoutTests/fast/repaint/absolute-position-changed-expected.txt 2015-08-31 21:38:43 UTC (rev 189185)
@@ -1 +0,0 @@
-
Modified: trunk/LayoutTests/fast/repaint/absolute-position-changed.html (189184 => 189185)
--- trunk/LayoutTests/fast/repaint/absolute-position-changed.html 2015-08-31 21:05:25 UTC (rev 189184)
+++ trunk/LayoutTests/fast/repaint/absolute-position-changed.html 2015-08-31 21:38:43 UTC (rev 189185)
@@ -1,20 +1,21 @@
<html>
<head>
<link rel="stylesheet" href=""
- <script src="" type="text/_javascript_"></script>
<script type="text/_javascript_">
if (window.testRunner)
- testRunner.dumpAsText(true);
- function repaintTest()
- {
- document.getElementById('absoluteDiv').style.top = '700px';
+ testRunner.waitUntilDone();
+
+ function repaintTest() {
+ document.getElementById('absoluteDiv').style.top = '700px';
+ if (window.testRunner)
+ testRunner.notifyDone();
}
</script>
</head>
-<body style="height:2000px;" _onload_="runRepaintTest()">
+<body style="height:2000px;" _onload_="setTimeout(repaintTest, 0);">
<!-- You should see 1 green rectangle in the output and no red. -->
<div style="top: 200px; left: 100px;" class="fixed red"></div>
- <div id="absoluteDiv" style="top: 500px; left:100px;" class="absolute green"></div></div>
+ <div id="absoluteDiv" style="top: 500px; left:100px;" class="absolute green"></div>
<script>
window.scrollTo(0, 500);
</script>
Deleted: trunk/LayoutTests/platform/gtk/fast/repaint/absolute-position-change-containing-block-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/mac/fast/repaint/absolute-position-changed-expected.png
(Binary files differ)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes