| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 | 456 |
| 457 void didAccessStyleResolver(); | 457 void didAccessStyleResolver(); |
| 458 | 458 |
| 459 void evaluateMediaQueryList(); | 459 void evaluateMediaQueryList(); |
| 460 | 460 |
| 461 // Never returns 0. | 461 // Never returns 0. |
| 462 FormController* formController(); | 462 FormController* formController(); |
| 463 Vector<String> formElementsState() const; | 463 Vector<String> formElementsState() const; |
| 464 void setStateForNewFormElements(const Vector<String>&); | 464 void setStateForNewFormElements(const Vector<String>&); |
| 465 | 465 |
| 466 FrameView* view() const; // can be NULL | 466 FrameView* view() const; // can be null |
| 467 Frame* frame() const { return m_frame; } // can be NULL | 467 Frame* frame() const { return m_frame; } // can be null |
| 468 Page* page() const; // can be NULL | 468 Page* page() const; // can be null |
| 469 Settings* settings() const; // can be NULL | 469 Settings* settings() const; // can be null |
| 470 |
| 471 float devicePixelRatio() const; |
| 470 | 472 |
| 471 PassRefPtr<Range> createRange(); | 473 PassRefPtr<Range> createRange(); |
| 472 | 474 |
| 473 PassRefPtr<NodeIterator> createNodeIterator(Node* root, ExceptionState&); | 475 PassRefPtr<NodeIterator> createNodeIterator(Node* root, ExceptionState&); |
| 474 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
ExceptionState&); | 476 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
ExceptionState&); |
| 475 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, ExceptionState&); | 477 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, ExceptionState&); |
| 476 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionState&); | 478 PassRefPtr<NodeIterator> createNodeIterator(Node* root, unsigned whatToShow,
PassRefPtr<NodeFilter>, bool expandEntityReferences, ExceptionState&); |
| 477 | 479 |
| 478 PassRefPtr<TreeWalker> createTreeWalker(Node* root, ExceptionState&); | 480 PassRefPtr<TreeWalker> createTreeWalker(Node* root, ExceptionState&); |
| 479 PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, Exc
eptionState&); | 481 PassRefPtr<TreeWalker> createTreeWalker(Node* root, unsigned whatToShow, Exc
eptionState&); |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1432 inline bool Node::isDocumentNode() const | 1434 inline bool Node::isDocumentNode() const |
| 1433 { | 1435 { |
| 1434 return this == documentInternal(); | 1436 return this == documentInternal(); |
| 1435 } | 1437 } |
| 1436 | 1438 |
| 1437 Node* eventTargetNodeForDocument(Document*); | 1439 Node* eventTargetNodeForDocument(Document*); |
| 1438 | 1440 |
| 1439 } // namespace WebCore | 1441 } // namespace WebCore |
| 1440 | 1442 |
| 1441 #endif // Document_h | 1443 #endif // Document_h |
| OLD | NEW |