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

Unified Diff: LayoutTests/compositing/backing/no-backing-for-perspective.html

Issue 708213002: Remove the HasOwnBackingButPaintsIntoAncestor compositing state. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed more tests. Created 6 years, 1 month 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/compositing/backing/no-backing-for-perspective.html
diff --git a/LayoutTests/compositing/backing/no-backing-for-perspective.html b/LayoutTests/compositing/backing/no-backing-for-perspective.html
deleted file mode 100644
index 0ed49b4c5101c294e842efc18be229302e51f5c7..0000000000000000000000000000000000000000
--- a/LayoutTests/compositing/backing/no-backing-for-perspective.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style type="text/css" media="screen">
- .box {
- position: relative;
- height: 100px;
- width: 100px;
- margin: 10px;
- left: 0;
- top: 0;
- background-color: silver;
- }
-
- .perspective {
- width: 300px;
- border: 1px solid black;
- padding: 20px;
- -webkit-perspective: 500px;
- }
-
- .composited {
- transform: translateZ(1px);
- }
- </style>
-
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function dumpLayers()
- {
- var layersResult = document.getElementById('layers');
- if (window.testRunner)
- layersResult.innerText = window.internals.layerTreeAsText(document);
-
- }
- window.addEventListener('load', dumpLayers, false)
- </script>
-
-</head>
-<body>
-
- <div class="perspective">
- This layer should not have backing store.
- <div class="perspective">
- This layer should not have backing store.
- <div class="box composited">
- </div>
- </div>
- </div>
-
-<pre id="layers">Layer tree goes here in DRT</pre>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698