OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
7 * rights reserved. | 7 * rights reserved. |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 ResizeObserverController& ensureResizeObserverController(); | 815 ResizeObserverController& ensureResizeObserverController(); |
816 | 816 |
817 void updateViewportDescription(); | 817 void updateViewportDescription(); |
818 | 818 |
819 // Returns the owning element in the parent document. Returns nullptr if | 819 // Returns the owning element in the parent document. Returns nullptr if |
820 // this is the top level document or the owner is remote. | 820 // this is the top level document or the owner is remote. |
821 HTMLFrameOwnerElement* localOwner() const; | 821 HTMLFrameOwnerElement* localOwner() const; |
822 | 822 |
823 void willChangeFrameOwnerProperties(int marginWidth, | 823 void willChangeFrameOwnerProperties(int marginWidth, |
824 int marginHeight, | 824 int marginHeight, |
825 ScrollbarMode); | 825 ScrollbarMode, |
| 826 bool isDisplayNone); |
826 | 827 |
827 // Returns true if this document belongs to a frame that the parent document | 828 // Returns true if this document belongs to a frame that the parent document |
828 // made invisible (for instance by setting as style display:none). | 829 // made invisible (for instance by setting as style display:none). |
829 bool isInInvisibleSubframe() const; | 830 bool isInInvisibleSubframe() const; |
830 | 831 |
831 String title() const { return m_title; } | 832 String title() const { return m_title; } |
832 void setTitle(const String&); | 833 void setTitle(const String&); |
833 | 834 |
834 Element* titleElement() const { return m_titleElement.get(); } | 835 Element* titleElement() const { return m_titleElement.get(); } |
835 void setTitleElement(Element*); | 836 void setTitleElement(Element*); |
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1721 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1722 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
1722 | 1723 |
1723 } // namespace blink | 1724 } // namespace blink |
1724 | 1725 |
1725 #ifndef NDEBUG | 1726 #ifndef NDEBUG |
1726 // Outside the WebCore namespace for ease of invocation from gdb. | 1727 // Outside the WebCore namespace for ease of invocation from gdb. |
1727 CORE_EXPORT void showLiveDocumentInstances(); | 1728 CORE_EXPORT void showLiveDocumentInstances(); |
1728 #endif | 1729 #endif |
1729 | 1730 |
1730 #endif // Document_h | 1731 #endif // Document_h |
OLD | NEW |