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

Unified Diff: Source/core/dom/Document.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/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index 86a42c439cb6556211b4ffdff80913557540d86d..80bedac00ed5791922271cfdfb095ecd48c9c3eb 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -5034,9 +5034,13 @@ void Document::removeFromTopLayer(Element* element)
HTMLDialogElement* Document::activeModalDialog() const
{
- if (m_topLayerElements.isEmpty())
- return 0;
- return toHTMLDialogElement(m_topLayerElements.last().get());
+ for (auto it = m_topLayerElements.rbegin(); it != m_topLayerElements.rend(); ++it) {
+ Element* currentTopLayerElement = it->get();
+ if (isHTMLDialogElement(currentTopLayerElement))
+ return toHTMLDialogElement(currentTopLayerElement);
+ }
+
+ return nullptr;
}
void Document::exitPointerLock()

Powered by Google App Engine
This is Rietveld 408576698