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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 | 482 |
483 // Special support for editing | 483 // Special support for editing |
484 PassRefPtr<CSSStyleDeclaration> createCSSStyleDeclaration(); | 484 PassRefPtr<CSSStyleDeclaration> createCSSStyleDeclaration(); |
485 PassRefPtr<Text> createEditingTextNode(const String&); | 485 PassRefPtr<Text> createEditingTextNode(const String&); |
486 | 486 |
487 void recalcStyle(StyleChange = NoChange); | 487 void recalcStyle(StyleChange = NoChange); |
488 void updateStyleIfNeeded(); | 488 void updateStyleIfNeeded(); |
489 void updateStyleForNodeIfNeeded(Node*); | 489 void updateStyleForNodeIfNeeded(Node*); |
490 void updateLayout(); | 490 void updateLayout(); |
491 void updateLayoutIgnorePendingStylesheets(); | 491 void updateLayoutIgnorePendingStylesheets(); |
| 492 void partialUpdateLayoutIgnorePendingStylesheets(Node*); |
492 PassRefPtr<RenderStyle> styleForElementIgnoringPendingStylesheets(Element*); | 493 PassRefPtr<RenderStyle> styleForElementIgnoringPendingStylesheets(Element*); |
493 PassRefPtr<RenderStyle> styleForPage(int pageIndex); | 494 PassRefPtr<RenderStyle> styleForPage(int pageIndex); |
494 | 495 |
495 void updateDistributionForNodeIfNeeded(Node*); | 496 void updateDistributionForNodeIfNeeded(Node*); |
496 | 497 |
497 // Returns true if page box (margin boxes and page borders) is visible. | 498 // Returns true if page box (margin boxes and page borders) is visible. |
498 bool isPageBoxVisible(int pageIndex); | 499 bool isPageBoxVisible(int pageIndex); |
499 | 500 |
500 // Returns the preferred page size and margins in pixels, assuming 96 | 501 // Returns the preferred page size and margins in pixels, assuming 96 |
501 // pixels per inch. pageSize, marginTop, marginRight, marginBottom, | 502 // pixels per inch. pageSize, marginTop, marginRight, marginBottom, |
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1114 void updateTitle(const String&); | 1115 void updateTitle(const String&); |
1115 void updateFocusAppearanceTimerFired(Timer<Document>*); | 1116 void updateFocusAppearanceTimerFired(Timer<Document>*); |
1116 void updateBaseURL(); | 1117 void updateBaseURL(); |
1117 | 1118 |
1118 void createStyleResolver(); | 1119 void createStyleResolver(); |
1119 | 1120 |
1120 void executeScriptsWaitingForResourcesIfNeeded(); | 1121 void executeScriptsWaitingForResourcesIfNeeded(); |
1121 | 1122 |
1122 void seamlessParentUpdatedStylesheets(); | 1123 void seamlessParentUpdatedStylesheets(); |
1123 | 1124 |
| 1125 void recalcStyleForLayoutIgnoringPendingStylesheets(); |
| 1126 |
1124 PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&
) const; | 1127 PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&
) const; |
1125 | 1128 |
1126 void loadEventDelayTimerFired(Timer<Document>*); | 1129 void loadEventDelayTimerFired(Timer<Document>*); |
1127 | 1130 |
1128 void pendingTasksTimerFired(Timer<Document>*); | 1131 void pendingTasksTimerFired(Timer<Document>*); |
1129 | 1132 |
1130 static void didReceiveTask(void*); | 1133 static void didReceiveTask(void*); |
1131 | 1134 |
1132 template <typename CharacterType> | 1135 template <typename CharacterType> |
1133 void displayBufferModifiedByEncodingInternal(CharacterType*, unsigned) const
; | 1136 void displayBufferModifiedByEncodingInternal(CharacterType*, unsigned) const
; |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1432 inline bool Node::isDocumentNode() const | 1435 inline bool Node::isDocumentNode() const |
1433 { | 1436 { |
1434 return this == documentInternal(); | 1437 return this == documentInternal(); |
1435 } | 1438 } |
1436 | 1439 |
1437 Node* eventTargetNodeForDocument(Document*); | 1440 Node* eventTargetNodeForDocument(Document*); |
1438 | 1441 |
1439 } // namespace WebCore | 1442 } // namespace WebCore |
1440 | 1443 |
1441 #endif // Document_h | 1444 #endif // Document_h |
OLD | NEW |