Chromium Code Reviews| Index: LayoutTests/compositing/background-color/background-color-change-to-transparent-expected.html |
| diff --git a/LayoutTests/compositing/background-color/background-color-change-to-transparent-expected.html b/LayoutTests/compositing/background-color/background-color-change-to-transparent-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8c9506fe1847ef8f816813f9bd389811df79c448 |
| --- /dev/null |
| +++ b/LayoutTests/compositing/background-color/background-color-change-to-transparent-expected.html |
| @@ -0,0 +1,29 @@ |
| +<!DOCTYPE> |
| +<html> |
| +<head> |
| +<style> |
| + #background { |
| + width: 200px; |
| + height: 200px; |
| + display: block; |
| + background-color: transparent; |
| + } |
| + .blue { |
| + width: 50px; |
| + height: 50px; |
| + background-color: blue; |
| + display: block; |
| + } |
| + |
| + .composited { |
| + -webkit-transform: translateZ(0); |
| + } |
| +</style> |
| +</head> |
| +<body> |
| +<div id="background"> |
| + <div class="blue"> |
| + </div> |
| +</div> |
| +</body> |
| +</html> |