| Index: Source/core/html/HTMLFrameOwnerElement.cpp
|
| diff --git a/Source/core/html/HTMLFrameOwnerElement.cpp b/Source/core/html/HTMLFrameOwnerElement.cpp
|
| index 60afa70dc23fd17e583531b24d0e0df14ac7f9e5..b79cd40503526fbd7d2cf9b197af874d957287d5 100644
|
| --- a/Source/core/html/HTMLFrameOwnerElement.cpp
|
| +++ b/Source/core/html/HTMLFrameOwnerElement.cpp
|
| @@ -186,6 +186,11 @@ void HTMLFrameOwnerElement::setSandboxFlags(SandboxFlags flags)
|
| m_sandboxFlags = flags;
|
| }
|
|
|
| +SandboxFlags HTMLFrameOwnerElement::sandboxFlags() const
|
| +{
|
| + return m_sandboxFlags | document().sandboxFlags();
|
| +}
|
| +
|
| bool HTMLFrameOwnerElement::isKeyboardFocusable() const
|
| {
|
| return m_contentFrame && HTMLElement::isKeyboardFocusable();
|
|
|