Index: third_party/WebKit/LayoutTests/fast/transforms/transforms-with-opacity.html |
diff --git a/third_party/WebKit/LayoutTests/fast/transforms/transforms-with-opacity.html b/third_party/WebKit/LayoutTests/fast/transforms/transforms-with-opacity.html |
deleted file mode 100644 |
index 4632e1b18b8e7b675a44911be94d4ec340149a29..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/transforms/transforms-with-opacity.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<html> |
-<head> |
-<style> |
-div { |
- width:100px; |
- height:100px; |
- border:10px solid black; |
- background-color:skyblue; |
-} |
- |
-.transparent { |
- opacity: 0.5; |
-} |
- |
-.translated { |
- transform:translate(120px, -10px) |
-} |
-</style> |
-</head> |
-<body> |
-In the example below you should see three blocks right next to one another, and they should all be partially transparent. |
- |
-<div class="transparent"> |
-<div class="translated"><div class="translated"></div></div> |
-</div> |
- |