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/lots-of-img-layers-with-opacity.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/lots-of-img-layers-with-opacity.html
diff --git a/LayoutTests/platform/chromium/compositing/lots-of-img-layers-with-opacity.html b/LayoutTests/platform/chromium/compositing/lots-of-img-layers-with-opacity.html
deleted file mode 100644
index 1744689f0793253efbffbd5fa791d34f0aacad05..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/compositing/lots-of-img-layers-with-opacity.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<body style="overflow:hidden">
-<script>
-for (var i=0; i<350; ++i) {
- var img = document.createElement("img");
- img.style.webkitTransform = "rotate("+(i/2)+"deg) translateZ(0)";
- img.style.webkitTransformOrigin = "300px 300px";
- img.style.position = "absolute";
- img.style.opacity = 0.2;
- document.body.appendChild(img);
- img.src = "resources/apple.jpg";
-}
-</script>
-</body>
-

Powered by Google App Engine
This is Rietveld 408576698