| 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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
| 7 * rights reserved. | 7 * rights reserved. |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 bool isFrameSet() const; | 426 bool isFrameSet() const; |
| 427 | 427 |
| 428 bool isSrcdocDocument() const { return m_isSrcdocDocument; } | 428 bool isSrcdocDocument() const { return m_isSrcdocDocument; } |
| 429 bool isMobileDocument() const { return m_isMobileDocument; } | 429 bool isMobileDocument() const { return m_isMobileDocument; } |
| 430 | 430 |
| 431 StyleResolver* styleResolver() const; | 431 StyleResolver* styleResolver() const; |
| 432 StyleResolver& ensureStyleResolver() const; | 432 StyleResolver& ensureStyleResolver() const; |
| 433 | 433 |
| 434 bool isViewSource() const { return m_isViewSource; } | 434 bool isViewSource() const { return m_isViewSource; } |
| 435 void setIsViewSource(bool); | 435 void setIsViewSource(bool); |
| 436 void setIsViewSourceWithoutUniqueOrigin(); |
| 436 | 437 |
| 437 bool sawElementsInKnownNamespaces() const { | 438 bool sawElementsInKnownNamespaces() const { |
| 438 return m_sawElementsInKnownNamespaces; | 439 return m_sawElementsInKnownNamespaces; |
| 439 } | 440 } |
| 440 | 441 |
| 441 bool canExecuteScripts(ReasonForCallingCanExecuteScripts) override; | 442 bool canExecuteScripts(ReasonForCallingCanExecuteScripts) override; |
| 442 bool isRenderingReady() const; | 443 bool isRenderingReady() const; |
| 443 bool isScriptExecutionReady() const { | 444 bool isScriptExecutionReady() const { |
| 444 return haveImportsLoaded() && haveScriptBlockingStylesheetsLoaded(); | 445 return haveImportsLoaded() && haveScriptBlockingStylesheetsLoaded(); |
| 445 } | 446 } |
| (...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1711 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1712 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1712 | 1713 |
| 1713 } // namespace blink | 1714 } // namespace blink |
| 1714 | 1715 |
| 1715 #ifndef NDEBUG | 1716 #ifndef NDEBUG |
| 1716 // Outside the WebCore namespace for ease of invocation from gdb. | 1717 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1717 CORE_EXPORT void showLiveDocumentInstances(); | 1718 CORE_EXPORT void showLiveDocumentInstances(); |
| 1718 #endif | 1719 #endif |
| 1719 | 1720 |
| 1720 #endif // Document_h | 1721 #endif // Document_h |
| OLD | NEW |