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 r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 | 848 |
849 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe
ets, IgnoreLayoutWithPendingSheets }; | 849 enum PendingSheetLayout { NoLayoutWithPendingSheets, DidLayoutWithPendingShe
ets, IgnoreLayoutWithPendingSheets }; |
850 | 850 |
851 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout =
= DidLayoutWithPendingSheets; } | 851 bool didLayoutWithPendingStylesheets() const { return m_pendingSheetLayout =
= DidLayoutWithPendingSheets; } |
852 | 852 |
853 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder
Style; } | 853 bool hasNodesWithPlaceholderStyle() const { return m_hasNodesWithPlaceholder
Style; } |
854 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr
ue; } | 854 void setHasNodesWithPlaceholderStyle() { m_hasNodesWithPlaceholderStyle = tr
ue; } |
855 | 855 |
856 Vector<IconURL> iconURLs(int iconTypesMask); | 856 Vector<IconURL> iconURLs(int iconTypesMask); |
857 | 857 |
| 858 Color brandColor() const; |
| 859 |
858 // Returns the HTMLLinkElement currently in use for the Web Manifest. | 860 // Returns the HTMLLinkElement currently in use for the Web Manifest. |
859 // Returns null if there is no such element. | 861 // Returns null if there is no such element. |
860 HTMLLinkElement* linkManifest() const; | 862 HTMLLinkElement* linkManifest() const; |
861 | 863 |
862 void setUseSecureKeyboardEntryWhenActive(bool); | 864 void setUseSecureKeyboardEntryWhenActive(bool); |
863 bool useSecureKeyboardEntryWhenActive() const; | 865 bool useSecureKeyboardEntryWhenActive() const; |
864 | 866 |
865 void updateFocusAppearanceSoon(bool restorePreviousSelection); | 867 void updateFocusAppearanceSoon(bool restorePreviousSelection); |
866 void cancelFocusAppearanceUpdate(); | 868 void cancelFocusAppearanceUpdate(); |
867 | 869 |
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1457 inline bool Node::isDocumentNode() const | 1459 inline bool Node::isDocumentNode() const |
1458 { | 1460 { |
1459 return this == document(); | 1461 return this == document(); |
1460 } | 1462 } |
1461 | 1463 |
1462 Node* eventTargetNodeForDocument(Document*); | 1464 Node* eventTargetNodeForDocument(Document*); |
1463 | 1465 |
1464 } // namespace WebCore | 1466 } // namespace WebCore |
1465 | 1467 |
1466 #endif // Document_h | 1468 #endif // Document_h |
OLD | NEW |