Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html

Issue 1302183007: Convert some text-based-repaint tests for spv2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html
diff --git a/LayoutTests/fast/repaint/scroll-in-transformed-layer.html b/LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html
similarity index 52%
copy from LayoutTests/fast/repaint/scroll-in-transformed-layer.html
copy to LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html
index 150ccea0124fd3a1b36ad17642f03430eab7fe67..32cf414e8acb664f4b54dea04af46b4a093d9e04 100644
--- a/LayoutTests/fast/repaint/scroll-in-transformed-layer.html
+++ b/LayoutTests/paint/invalidation/spv2/scroll-in-transformed-layer.html
@@ -1,12 +1,15 @@
+<!-- Based on fast/repaint/scroll-in-transformed-layer.html -->
<html>
<head>
- <link rel="stylesheet" href="resources/default.css"></style>
- <script src="resources/text-based-repaint.js" type="text/javascript"></script>
+ <link rel="stylesheet" href="../../../fast/repaint/resources/default.css"></style>
+ <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
<script type="text/javascript">
- if (window.testRunner)
- testRunner.dumpAsTextWithPixelResults();
-
- function repaintTest()
+ window.expectedPaintInvalidationObjects = [
+ "LayoutBlockFlow (positioned) DIV id='moveMe' class='absolute clipped rotated'",
+ "LayoutBlockFlow (positioned) DIV class='absolute green'",
+ "LayoutBlockFlow (positioned) DIV class='absolute red'",
+ ];
+ function paintInvalidationTest()
{
var moveMeElement = document.getElementById('moveMe');
moveMeElement.scrollTop = 100;
@@ -16,7 +19,7 @@
}
</script>
</head>
-<body style="height:2000px;" onload="runRepaintTest()">
+<body style="height:2000px;" onload="runPaintInvalidationTest()">
<!-- You should see 1 green rectangle rotated in the output and no red. -->
<div id="moveMe" style="top: 150px; left: 100px" class="absolute clipped">
<div class="absolute green" style="top: 100px; left: 50px"></div>

Powered by Google App Engine
This is Rietveld 408576698