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

Unified Diff: LayoutTests/platform/chromium/compositing/backface-visibility-transformed.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/backface-visibility-transformed.html
diff --git a/LayoutTests/platform/chromium/compositing/backface-visibility-transformed.html b/LayoutTests/platform/chromium/compositing/backface-visibility-transformed.html
deleted file mode 100644
index 5290a671ab217099e224abfb13b60980698447cb..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/compositing/backface-visibility-transformed.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <style type="text/css" media="screen">
- .container {
- -webkit-perspective: 1000;
- }
- .frame {
- -webkit-transform-style: preserve-3d;
- -webkit-transform: translateX(200px) rotateY(85deg);
- }
- .front {
- position:absolute;
- background-color: red;
- }
-
- .back {
- position:absolute;
- background-color: green;
- -webkit-transform: rotateY(180deg);
- }
- div {
- height: 200px;
- width: 200px;
- }
-
- .backfaceHidden {
- -webkit-backface-visibility: hidden;
- }
- </style>
-</head>
-<body>
- <!-- In the pixel results, the green side should be visible. -->
- <div class="container">
- <div class="frame">
- <div class="backfaceHidden front"></div>
- <div class="backfaceHidden back"></div>
- </div>
- </div>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText(true); // This is only useful as a pixel test.
- document.write("<span style='position:absolute; top:-5000px'>This test is only useful as a pixel test</span>");
- }
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698