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

Unified Diff: Source/core/layout/LayoutObject.cpp

Issue 1139033006: Implement FullScreen using top layer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/core/layout/LayoutObject.cpp
diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
index 40174392dbd2e3a08896a7b05b0d865e39921b22..1e47086bac8fa1df6f47e621bb3ea47042f31662 100644
--- a/Source/core/layout/LayoutObject.cpp
+++ b/Source/core/layout/LayoutObject.cpp
@@ -1977,9 +1977,6 @@ void LayoutObject::propagateStyleToAnonymousChildren(bool blockChildrenOnly)
if (blockChildrenOnly && !child->isLayoutBlock())
continue;
- if (child->isLayoutFullScreen() || child->isLayoutFullScreenPlaceholder())
- continue;
-
RefPtr<ComputedStyle> newStyle = ComputedStyle::createAnonymousStyleWithDisplay(styleRef(), child->style()->display());
// Preserve the position style of anonymous block continuations as they can have relative position when

Powered by Google App Engine
This is Rietveld 408576698