| 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>
|
|
|