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

Unified Diff: Source/WebCore/platform/graphics/GraphicsLayer.cpp

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: Source/WebCore/platform/graphics/GraphicsLayer.cpp
===================================================================
--- Source/WebCore/platform/graphics/GraphicsLayer.cpp (revision 104364)
+++ Source/WebCore/platform/graphics/GraphicsLayer.cpp (working copy)
@@ -77,7 +77,6 @@
, m_usingTiledLayer(false)
, m_masksToBounds(false)
, m_drawsContent(false)
- , m_contentsVisible(true)
, m_acceleratesDrawing(false)
, m_maintainsPixelAlignment(false)
, m_appliesPageScale(false)
@@ -505,11 +504,6 @@
ts << "(drawsContent " << m_drawsContent << ")\n";
}
- if (!m_contentsVisible) {
- writeIndent(ts, indent + 1);
- ts << "(contentsVisible " << m_contentsVisible << ")\n";
- }
-
if (!m_backfaceVisibility) {
writeIndent(ts, indent + 1);
ts << "(backfaceVisibility " << (m_backfaceVisibility ? "visible" : "hidden") << ")\n";
« no previous file with comments | « Source/WebCore/platform/graphics/GraphicsLayer.h ('k') | Source/WebCore/platform/graphics/ca/GraphicsLayerCA.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698