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

Unified Diff: LayoutTests/paint/invalidation/spv2/repaint-via-layout-offset-expected.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/repaint-via-layout-offset-expected.html
diff --git a/LayoutTests/paint/invalidation/spv2/repaint-via-layout-offset-expected.html b/LayoutTests/paint/invalidation/spv2/repaint-via-layout-offset-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..6d416a3f13ab1442b99c87ed0b512c72d804ed29
--- /dev/null
+++ b/LayoutTests/paint/invalidation/spv2/repaint-via-layout-offset-expected.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style>
+#container {
+ position: absolute;
+ z-index: 0;
+ left: 50px;
+ top: 50px;
+}
+
+.child {
+ position: absolute;
+ width: 40px;
+ height: 40px;
+ background-color: red;
+}
+
+.embiggen {
+ width: 50px;
+ height: 50px;
+ background-color: green;
+}
+</style>
+<div style="width:200px; height:200px; background-color: lightblue"></div>
+<div id="container">
+ <span class="child embiggen"></span>
+</div>

Powered by Google App Engine
This is Rietveld 408576698