| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 bool isMobileDocument() const { return m_isMobileDocument; } | 364 bool isMobileDocument() const { return m_isMobileDocument; } |
| 365 | 365 |
| 366 StyleResolver* styleResolver() const; | 366 StyleResolver* styleResolver() const; |
| 367 StyleResolver& ensureStyleResolver() const; | 367 StyleResolver& ensureStyleResolver() const; |
| 368 | 368 |
| 369 bool isViewSource() const { return m_isViewSource; } | 369 bool isViewSource() const { return m_isViewSource; } |
| 370 void setIsViewSource(bool); | 370 void setIsViewSource(bool); |
| 371 | 371 |
| 372 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames
paces; } | 372 bool sawElementsInKnownNamespaces() const { return m_sawElementsInKnownNames
paces; } |
| 373 | 373 |
| 374 bool isRenderingReady() const { return haveImportsLoaded() && haveStylesheet
sLoaded(); } | 374 bool isRenderingReady() const; |
| 375 bool isScriptExecutionReady() const { return isRenderingReady(); } | 375 bool isScriptExecutionReady() const { return isRenderingReady(); } |
| 376 | 376 |
| 377 // This is a DOM function. | 377 // This is a DOM function. |
| 378 StyleSheetList* styleSheets(); | 378 StyleSheetList* styleSheets(); |
| 379 | 379 |
| 380 StyleEngine& styleEngine() { ASSERT(m_styleEngine.get()); return *m_styleEng
ine.get(); } | 380 StyleEngine& styleEngine() { ASSERT(m_styleEngine.get()); return *m_styleEng
ine.get(); } |
| 381 | 381 |
| 382 bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfter
StylesheetsLoad; } | 382 bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfter
StylesheetsLoad; } |
| 383 void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAft
erStylesheetsLoad = b; } | 383 void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAft
erStylesheetsLoad = b; } |
| 384 | 384 |
| (...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1445 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1445 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1446 | 1446 |
| 1447 } // namespace blink | 1447 } // namespace blink |
| 1448 | 1448 |
| 1449 #ifndef NDEBUG | 1449 #ifndef NDEBUG |
| 1450 // Outside the WebCore namespace for ease of invocation from gdb. | 1450 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1451 CORE_EXPORT void showLiveDocumentInstances(); | 1451 CORE_EXPORT void showLiveDocumentInstances(); |
| 1452 #endif | 1452 #endif |
| 1453 | 1453 |
| 1454 #endif // Document_h | 1454 #endif // Document_h |
| OLD | NEW |