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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2107233002: Reland "Implement FullScreen using top layer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: third_party/WebKit/Source/core/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 5a001ab09d6f290385e56e6a1218992a7d608fde..12980455ee40f0d33e231a238b9a1644ec2a43b8 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -1778,8 +1778,7 @@ void FrameView::clearLayoutSubtreeRootsAndMarkContainingBlocks()
void FrameView::addOrthogonalWritingModeRoot(LayoutBox& root)
{
- ASSERT(!root.isLayoutFullScreen() && !root.isLayoutFullScreenPlaceholder()
- && !root.isLayoutScrollbarPart());
+ DCHECK(!root.isLayoutScrollbarPart());
m_orthogonalWritingModeRootList.add(root);
}

Powered by Google App Engine
This is Rietveld 408576698