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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 bool hasSVGRootNode() const; | 382 bool hasSVGRootNode() const; |
383 | 383 |
384 bool isFrameSet() const; | 384 bool isFrameSet() const; |
385 | 385 |
386 bool isSrcdocDocument() const { return m_isSrcdocDocument; } | 386 bool isSrcdocDocument() const { return m_isSrcdocDocument; } |
387 bool isMobileDocument() const { return m_isMobileDocument; } | 387 bool isMobileDocument() const { return m_isMobileDocument; } |
388 | 388 |
389 bool isTransitionDocument() const { return m_isTransitionDocument; } | 389 bool isTransitionDocument() const { return m_isTransitionDocument; } |
390 void setIsTransitionDocument() { m_isTransitionDocument = true; } | 390 void setIsTransitionDocument() { m_isTransitionDocument = true; } |
391 | 391 |
| 392 struct TransitionElementData { |
| 393 String scope; |
| 394 String selector; |
| 395 String markup; |
| 396 }; |
| 397 void getTransitionElementData(Vector<TransitionElementData>&, ExceptionState
&); |
| 398 |
392 StyleResolver* styleResolver() const; | 399 StyleResolver* styleResolver() const; |
393 StyleResolver& ensureStyleResolver() const; | 400 StyleResolver& ensureStyleResolver() const; |
394 | 401 |
395 bool isViewSource() const { return m_isViewSource; } | 402 bool isViewSource() const { return m_isViewSource; } |
396 void setIsViewSource(bool); | 403 void setIsViewSource(bool); |
397 | 404 |
398 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames
paces; } | 405 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames
paces; } |
399 | 406 |
400 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet
sLoaded(); } | 407 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet
sLoaded(); } |
401 bool isScriptExecutionReady() const { return isRenderingReady(); } | 408 bool isScriptExecutionReady() const { return isRenderingReady(); } |
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1423 inline bool Node::isDocumentNode() const | 1430 inline bool Node::isDocumentNode() const |
1424 { | 1431 { |
1425 return this == document(); | 1432 return this == document(); |
1426 } | 1433 } |
1427 | 1434 |
1428 Node* eventTargetNodeForDocument(Document*); | 1435 Node* eventTargetNodeForDocument(Document*); |
1429 | 1436 |
1430 } // namespace WebCore | 1437 } // namespace WebCore |
1431 | 1438 |
1432 #endif // Document_h | 1439 #endif // Document_h |
OLD | NEW |