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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
419 | 419 |
420 bool hasSVGRootNode() const; | 420 bool hasSVGRootNode() const; |
421 | 421 |
422 bool isFrameSet() const; | 422 bool isFrameSet() const; |
423 | 423 |
424 bool isSrcdocDocument() const { return m_isSrcdocDocument; } | 424 bool isSrcdocDocument() const { return m_isSrcdocDocument; } |
425 bool isMobileDocument() const { return m_isMobileDocument; } | 425 bool isMobileDocument() const { return m_isMobileDocument; } |
426 | 426 |
427 bool isTransitionDocument() const { return m_isTransitionDocument; } | 427 bool isTransitionDocument() const { return m_isTransitionDocument; } |
428 void setIsTransitionDocument() { m_isTransitionDocument = true; } | 428 void setIsTransitionDocument() { m_isTransitionDocument = true; } |
429 void hideTransitionElements(unsigned elementsToHide); | |
abarth-chromium
2014/06/21 05:38:36
I don't understand what it means to represent a se
| |
429 | 430 |
430 StyleResolver* styleResolver() const; | 431 StyleResolver* styleResolver() const; |
431 StyleResolver& ensureStyleResolver() const; | 432 StyleResolver& ensureStyleResolver() const; |
432 | 433 |
433 bool isViewSource() const { return m_isViewSource; } | 434 bool isViewSource() const { return m_isViewSource; } |
434 void setIsViewSource(bool); | 435 void setIsViewSource(bool); |
435 | 436 |
436 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames paces; } | 437 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames paces; } |
437 | 438 |
438 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet sLoaded(); } | 439 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet sLoaded(); } |
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1465 inline bool Node::isDocumentNode() const | 1466 inline bool Node::isDocumentNode() const |
1466 { | 1467 { |
1467 return this == document(); | 1468 return this == document(); |
1468 } | 1469 } |
1469 | 1470 |
1470 Node* eventTargetNodeForDocument(Document*); | 1471 Node* eventTargetNodeForDocument(Document*); |
1471 | 1472 |
1472 } // namespace WebCore | 1473 } // namespace WebCore |
1473 | 1474 |
1474 #endif // Document_h | 1475 #endif // Document_h |
OLD | NEW |