| 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, 2011, 2012 Apple Inc. All | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 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) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 &Document::updateFocusAppearanceTimerFired), | 458 &Document::updateFocusAppearanceTimerFired), |
| 459 m_cssTarget(nullptr), | 459 m_cssTarget(nullptr), |
| 460 m_loadEventProgress(LoadEventNotRun), | 460 m_loadEventProgress(LoadEventNotRun), |
| 461 m_startTime(currentTime()), | 461 m_startTime(currentTime()), |
| 462 m_scriptRunner(ScriptRunner::create(this)), | 462 m_scriptRunner(ScriptRunner::create(this)), |
| 463 m_xmlVersion("1.0"), | 463 m_xmlVersion("1.0"), |
| 464 m_xmlStandalone(StandaloneUnspecified), | 464 m_xmlStandalone(StandaloneUnspecified), |
| 465 m_hasXMLDeclaration(0), | 465 m_hasXMLDeclaration(0), |
| 466 m_designMode(false), | 466 m_designMode(false), |
| 467 m_isRunningExecCommand(false), | 467 m_isRunningExecCommand(false), |
| 468 m_hasReceivedUserGesture(false), |
| 468 m_hasAnnotatedRegions(false), | 469 m_hasAnnotatedRegions(false), |
| 469 m_annotatedRegionsDirty(false), | 470 m_annotatedRegionsDirty(false), |
| 470 m_useSecureKeyboardEntryWhenActive(false), | 471 m_useSecureKeyboardEntryWhenActive(false), |
| 471 m_documentClasses(documentClasses), | 472 m_documentClasses(documentClasses), |
| 472 m_isViewSource(false), | 473 m_isViewSource(false), |
| 473 m_sawElementsInKnownNamespaces(false), | 474 m_sawElementsInKnownNamespaces(false), |
| 474 m_isSrcdocDocument(false), | 475 m_isSrcdocDocument(false), |
| 475 m_isMobileDocument(false), | 476 m_isMobileDocument(false), |
| 476 m_layoutView(0), | 477 m_layoutView(0), |
| 477 m_contextDocument(initializer.contextDocument()), | 478 m_contextDocument(initializer.contextDocument()), |
| (...skipping 5923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6401 } | 6402 } |
| 6402 | 6403 |
| 6403 void showLiveDocumentInstances() { | 6404 void showLiveDocumentInstances() { |
| 6404 WeakDocumentSet& set = liveDocumentSet(); | 6405 WeakDocumentSet& set = liveDocumentSet(); |
| 6405 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6406 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 6406 for (Document* document : set) | 6407 for (Document* document : set) |
| 6407 fprintf(stderr, "- Document %p URL: %s\n", document, | 6408 fprintf(stderr, "- Document %p URL: %s\n", document, |
| 6408 document->url().getString().utf8().data()); | 6409 document->url().getString().utf8().data()); |
| 6409 } | 6410 } |
| 6410 #endif | 6411 #endif |
| OLD | NEW |