Chromium Code Reviews| 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> |