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

Unified Diff: LayoutTests/paint/invalidation/fixed-position-with-text-expected.html

Issue 1330993002: Invalidate all non-composited descendants on fixed-position changes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Higher expectations 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/fixed-position-with-text-expected.html
diff --git a/LayoutTests/paint/invalidation/fixed-position-with-text-expected.html b/LayoutTests/paint/invalidation/fixed-position-with-text-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..01094d6e33f905950a1d61369a8ca12a06fa9984
--- /dev/null
+++ b/LayoutTests/paint/invalidation/fixed-position-with-text-expected.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <style>
+ body {
+ height: 300px;
+ }
+ #div {
+ position: relative;
+ float: left;
+ z-index: 10;
+ }
+ span {
+ display: inline-block;
+ border: 1px solid black;
+ }
+ span:hover {
+ color: green;
+ }
+ </style>
+</head>
+<body>
+<div id="div">
+<span>This text should be in a box</span>
+</div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698