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

Unified Diff: Source/core/dom/Document.cpp

Issue 137233017: Revert of Replace RenderFullScreen with top layer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/core/css/fullscreen.css ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index feec018343fb935b8c877b754f25e13ffef08eef..ebac27d8d108f814270530cbbdfd86d5e4da2996 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -4817,15 +4817,9 @@
HTMLDialogElement* Document::activeModalDialog() const
{
- Vector<RefPtr<Element> >::const_reverse_iterator end = m_topLayerElements.rend();
- for (Vector<RefPtr<Element> >::const_reverse_iterator it = m_topLayerElements.rbegin(); it != end; ++it) {
- if (!it->get()->hasTagName(dialogTag))
- continue;
- HTMLDialogElement* dialog = toHTMLDialogElement(it->get());
- if (dialog->isModal())
- return dialog;
- }
- return 0;
+ if (m_topLayerElements.isEmpty())
+ return 0;
+ return toHTMLDialogElement(m_topLayerElements.last().get());
}
void Document::webkitExitPointerLock()
« no previous file with comments | « Source/core/css/fullscreen.css ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698