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

Unified Diff: LayoutTests/paint/invalidation/spv2/scroll-with-transformed-parent-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-with-transformed-parent-layer.html
diff --git a/LayoutTests/fast/repaint/scroll-with-transformed-parent-layer.html b/LayoutTests/paint/invalidation/spv2/scroll-with-transformed-parent-layer.html
similarity index 51%
copy from LayoutTests/fast/repaint/scroll-with-transformed-parent-layer.html
copy to LayoutTests/paint/invalidation/spv2/scroll-with-transformed-parent-layer.html
index c766a043e177154c8375b3156b7b6a1db9fc4838..ed26033efc4cc6155aa2c0a84334fbab7f0ef1ea 100644
--- a/LayoutTests/fast/repaint/scroll-with-transformed-parent-layer.html
+++ b/LayoutTests/paint/invalidation/spv2/scroll-with-transformed-parent-layer.html
@@ -1,12 +1,15 @@
+<!-- Based on fast/repaint/scroll-with-transformed-parent-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'",
+ "LayoutBlockFlow (positioned) DIV class='absolute green'",
+ "LayoutBlockFlow (positioned) DIV class='absolute red'",
+ ];
+ function paintInvalidationTest()
{
var moveMeElement = document.getElementById('moveMe');
moveMeElement.scrollTop = 100;
@@ -14,7 +17,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 style="top: 150px; left: 100px" class="absolute clipped rotated">
<div id="moveMe" class="absolute clipped" style="top: 0px; left: 0px;">

Powered by Google App Engine
This is Rietveld 408576698