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

Unified Diff: trunk/LayoutTests/compositing/background-color/background-color-drawn-over-child.html

Issue 183763024: Revert 168245 "Drop background color optimization for composited..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | trunk/LayoutTests/compositing/background-color/background-color-drawn-over-child-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/LayoutTests/compositing/background-color/background-color-drawn-over-child.html
===================================================================
--- trunk/LayoutTests/compositing/background-color/background-color-drawn-over-child.html (revision 168316)
+++ trunk/LayoutTests/compositing/background-color/background-color-drawn-over-child.html (working copy)
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>
- The background color of #backgournd_color_container div MUST be drawn below all children.
- However, the background color is drawn over the child #issue div.
- It's a minimal case of https://www.google.com/maps/views/explore?gl=us
- See crbug.com/345613
- </title>
- <style type="text/css">
- #backgournd_color_container {
- background-color: green;
- position: absolute;
- overflow: hidden;
- z-index: 0;
- }
- #nested_container {
- width: 200px;
- height: 200px;
- position: relative;
- overflow: hidden;
- z-index: 0;
- }
- #issue {
- width: 100px;
- height: 100px;
- background-color: red;
- position: absolute;
- }
- #compositing {
- left: 100px;
- top: 100px;
- width: 100px;
- height: 100px;
- position: absolute;
- background-color: blue;
- -webkit-transform: translateZ(0);
- }
- </style>
-</head>
-<body>
- <div id="backgournd_color_container">
- <div id="nested_container">
- <div id="issue"></div>
- <div id="compositing"></div>
- </div>
- </div>
-</body>
-</html>
« no previous file with comments | « no previous file | trunk/LayoutTests/compositing/background-color/background-color-drawn-over-child-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698