| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 bool hasSVGRootNode() const; | 379 bool hasSVGRootNode() const; |
| 380 | 380 |
| 381 bool isFrameSet() const; | 381 bool isFrameSet() const; |
| 382 | 382 |
| 383 bool isSrcdocDocument() const { return m_isSrcdocDocument; } | 383 bool isSrcdocDocument() const { return m_isSrcdocDocument; } |
| 384 bool isMobileDocument() const { return m_isMobileDocument; } | 384 bool isMobileDocument() const { return m_isMobileDocument; } |
| 385 | 385 |
| 386 bool isTransitionDocument() const { return m_isTransitionDocument; } | 386 bool isTransitionDocument() const { return m_isTransitionDocument; } |
| 387 void setIsTransitionDocument() { m_isTransitionDocument = true; } | 387 void setIsTransitionDocument() { m_isTransitionDocument = true; } |
| 388 void hideTransitionElements(const AtomicString& cssSelector); | 388 void hideTransitionElements(const AtomicString& cssSelector); |
| 389 void showTransitionElements(const AtomicString& cssSelector); |
| 389 | 390 |
| 390 struct TransitionElement { | 391 struct TransitionElement { |
| 391 String id; | 392 String id; |
| 392 IntRect rect; | 393 IntRect rect; |
| 393 }; | 394 }; |
| 394 | 395 |
| 395 struct TransitionElementData { | 396 struct TransitionElementData { |
| 396 String scope; | 397 String scope; |
| 397 String selector; | 398 String selector; |
| 398 String markup; | 399 String markup; |
| (...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1429 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1429 | 1430 |
| 1430 } // namespace blink | 1431 } // namespace blink |
| 1431 | 1432 |
| 1432 #ifndef NDEBUG | 1433 #ifndef NDEBUG |
| 1433 // Outside the WebCore namespace for ease of invocation from gdb. | 1434 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1434 void showLiveDocumentInstances(); | 1435 void showLiveDocumentInstances(); |
| 1435 #endif | 1436 #endif |
| 1436 | 1437 |
| 1437 #endif // Document_h | 1438 #endif // Document_h |
| OLD | NEW |