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

Unified Diff: LayoutTests/compositing/backing/no-backing-for-clip.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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/compositing/backing/no-backing-for-clip-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/compositing/backing/no-backing-for-clip.html
diff --git a/LayoutTests/compositing/backing/no-backing-for-clip.html b/LayoutTests/compositing/backing/no-backing-for-clip.html
deleted file mode 100644
index aa699d90aebcf86767b0b3aed30f59feb28242ab..0000000000000000000000000000000000000000
--- a/LayoutTests/compositing/backing/no-backing-for-clip.html
+++ /dev/null
@@ -1,59 +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;
- }
-
- .clipping {
- position: relative;
- z-index: 0;
- width: 300px;
- border: 1px solid black;
- padding: 20px;
- overflow: hidden;
- }
-
- .composited {
- transform: translateZ(0);
- }
- </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="clipping">
- This layer should not have backing store.
- <div class="clipping">
- 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>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/compositing/backing/no-backing-for-clip-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698