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

Unified Diff: LayoutTests/compositing/visibility/visibility-composited-transforms.html

Issue 9120020: Revert 98735 - Source/WebCore: The HTML5 video element in Safari does not respect "visibility:hid... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 11 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/compositing/visibility/visibility-composited-transforms.html
===================================================================
--- LayoutTests/compositing/visibility/visibility-composited-transforms.html (revision 104364)
+++ LayoutTests/compositing/visibility/visibility-composited-transforms.html (working copy)
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style>
- .container {
- -webkit-perspective: 500px;
- }
- .set {
- position: absolute;
- top: 8px;
- }
- .box {
- height: 100px;
- width: 100px;
- }
-
- .hidden {
- visibility: hidden;
- }
-
- .visible {
- visibility: visible;
- }
-
- .should-be-visible {
- background-color: green !important;
- }
- .composited {
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
- }
-
- .hidden-indicator {
- background-color: red;
- }
-
- .intermediate {
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
- -webkit-transform-style: preserve-3d;
- background-color: red;
- }
- </style>
-</head>
-<body>
- <!-- Tests that a transform on a hidden div affects its visible children. -->
- <!-- You should see a single green box, with no red. -->
-
- <div class="set">
- <div class="hidden-indicator box"></div>
- </div>
-
- <div class="set">
- <div class="container">
- <div class="hidden intermediate">
- <div class="visible composited box should-be-visible"></div>
- </div>
- </div>
-
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698