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

Unified Diff: LayoutTests/compositing/visibility/visibility-image-layers.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-image-layers.html
===================================================================
--- LayoutTests/compositing/visibility/visibility-image-layers.html (revision 104364)
+++ LayoutTests/compositing/visibility/visibility-image-layers.html (working copy)
@@ -1,68 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style>
- .set {
- display: inline-block;
- border: 1px solid black;
- }
- .box {
- height: 100px;
- width: 100px;
- }
-
- .hidden {
- visibility: hidden;
- }
-
- .container {
- margin: 10px;
- padding: 20px;
- }
- .container.hidden {
- outline: 4px solid red;
- }
-
- .visible {
- visibility: visible;
- }
- .should-be-hidden {
- background-color: red !important;
- }
- .should-be-visible {
- background-color: green !important;
- }
- .composited {
- -webkit-transform: translateZ(1px);
- }
-
- .visible-indicator {
- background-color: green;
- }
-
- .hidden-indicator {
- background-color: red;
- }
- </style>
- <script>
- if (window.layoutTestController)
- layoutTestController.dumpAsText(true);
- </script>
-</head>
-<body>
- <!-- Tests visibility with directly composited images. -->
- <!-- Left and right sides should look the same -->
- <div class="set">
- <div class="container"><img src="../resources/thiswayup.png" class="hidden box"></div>
- <div class="hidden container"><img src="../resources/thiswayup.png" class="box"></div>
- <div class="hidden container"><img src="../resources/thiswayup.png" class="visible box"></div>
- </div>
-
- <div class="set">
- <div class="composited container"><img src="../resources/thiswayup.png" class="hidden composited box"></div>
- <div class="composited hidden container"><img src="../resources/thiswayup.png" class="composited box"></div>
- <div class="composited hidden container"><img src="../resources/thiswayup.png" class="visible composited box"></div>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698