| 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()
|
|
|