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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1112 void updateTitle(const String&); | 1113 void updateTitle(const String&); |
1113 void updateFocusAppearanceTimerFired(Timer<Document>*); | 1114 void updateFocusAppearanceTimerFired(Timer<Document>*); |
1114 void updateBaseURL(); | 1115 void updateBaseURL(); |
1115 | 1116 |
1116 void createStyleResolver(); | 1117 void createStyleResolver(); |
1117 | 1118 |
1118 void executeScriptsWaitingForResourcesIfNeeded(); | 1119 void executeScriptsWaitingForResourcesIfNeeded(); |
1119 | 1120 |
1120 void seamlessParentUpdatedStylesheets(); | 1121 void seamlessParentUpdatedStylesheets(); |
1121 | 1122 |
| 1123 void recalcStyleForLayoutIgnoringPendingStylesheets(); |
| 1124 |
1122 PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&
) const; | 1125 PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&
) const; |
1123 | 1126 |
1124 void loadEventDelayTimerFired(Timer<Document>*); | 1127 void loadEventDelayTimerFired(Timer<Document>*); |
1125 | 1128 |
1126 void pendingTasksTimerFired(Timer<Document>*); | 1129 void pendingTasksTimerFired(Timer<Document>*); |
1127 | 1130 |
1128 static void didReceiveTask(void*); | 1131 static void didReceiveTask(void*); |
1129 | 1132 |
1130 template <typename CharacterType> | 1133 template <typename CharacterType> |
1131 void displayBufferModifiedByEncodingInternal(CharacterType*, unsigned) const
; | 1134 void displayBufferModifiedByEncodingInternal(CharacterType*, unsigned) const
; |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1429 inline bool Node::isDocumentNode() const | 1432 inline bool Node::isDocumentNode() const |
1430 { | 1433 { |
1431 return this == documentInternal(); | 1434 return this == documentInternal(); |
1432 } | 1435 } |
1433 | 1436 |
1434 Node* eventTargetNodeForDocument(Document*); | 1437 Node* eventTargetNodeForDocument(Document*); |
1435 | 1438 |
1436 } // namespace WebCore | 1439 } // namespace WebCore |
1437 | 1440 |
1438 #endif // Document_h | 1441 #endif // Document_h |
OLD | NEW |