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/platform/chromium/compositing/child-layer-3d-sorting.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
Index: LayoutTests/platform/chromium/compositing/child-layer-3d-sorting.html
diff --git a/LayoutTests/platform/chromium/compositing/child-layer-3d-sorting.html b/LayoutTests/platform/chromium/compositing/child-layer-3d-sorting.html
deleted file mode 100644
index 5888786271e7d47dab01f06b3dc6e8e16bfb0b5c..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/compositing/child-layer-3d-sorting.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE>
-<html>
-<head>
-<title>Child layer 3d sorting</title>
-
-<style type="text/css" media="screen">
- #parent {
- -webkit-transform-style: preserve-3d;
- -webkit-transform: translateZ(0);
- }
- #child {
- width: 200px;
- height: 200px;
- -webkit-transform: translateZ(0px);
- background: blue;
- }
- #child > div {
- width: 100px;
- height: 100px;
- -webkit-transform: translateZ(0px);
- background: green;
- }
-</style>
-<script type="text/javascript" charset="utf-8">
- if (window.testRunner) {
- testRunner.waitUntilDone();
- testRunner.dumpAsText(true);
- }
- function doTest()
- {
- var child = document.getElementById('child');
-
- window.setTimeout(function() {
- // Move the parent forward
- child.style.webkitTransform = "translateZ(10px)";
- if (window.testRunner) {
- window.setTimeout(function() {
- testRunner.notifyDone();
- }, 0);
- }
- }, 0);
- }
-
- window.addEventListener('load', doTest, false);
-</script>
-</head>
-<body>
-<!-- When the test is done, you should see a green square inside the blue square -->
-
-<div id="parent">
- <div id="child">
- <div></div>
- </div>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698