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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 429 |
| 430 struct TransitionElementData { |
| 431 String scope; |
| 432 String markup; |
| 433 }; |
| 434 void getTransitionElementData(Vector<TransitionElementData>&, ExceptionState
&); |
| 435 |
430 StyleResolver* styleResolver() const; | 436 StyleResolver* styleResolver() const; |
431 StyleResolver& ensureStyleResolver() const; | 437 StyleResolver& ensureStyleResolver() const; |
432 | 438 |
433 bool isViewSource() const { return m_isViewSource; } | 439 bool isViewSource() const { return m_isViewSource; } |
434 void setIsViewSource(bool); | 440 void setIsViewSource(bool); |
435 | 441 |
436 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames
paces; } | 442 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames
paces; } |
437 | 443 |
438 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet
sLoaded(); } | 444 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet
sLoaded(); } |
439 bool isScriptExecutionReady() const { return isRenderingReady(); } | 445 bool isScriptExecutionReady() const { return isRenderingReady(); } |
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1465 inline bool Node::isDocumentNode() const | 1471 inline bool Node::isDocumentNode() const |
1466 { | 1472 { |
1467 return this == document(); | 1473 return this == document(); |
1468 } | 1474 } |
1469 | 1475 |
1470 Node* eventTargetNodeForDocument(Document*); | 1476 Node* eventTargetNodeForDocument(Document*); |
1471 | 1477 |
1472 } // namespace WebCore | 1478 } // namespace WebCore |
1473 | 1479 |
1474 #endif // Document_h | 1480 #endif // Document_h |
OLD | NEW |