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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 &Document::updateFocusAppearanceTimerFired), | 446 &Document::updateFocusAppearanceTimerFired), |
447 m_cssTarget(nullptr), | 447 m_cssTarget(nullptr), |
448 m_loadEventProgress(LoadEventNotRun), | 448 m_loadEventProgress(LoadEventNotRun), |
449 m_startTime(currentTime()), | 449 m_startTime(currentTime()), |
450 m_scriptRunner(ScriptRunner::create(this)), | 450 m_scriptRunner(ScriptRunner::create(this)), |
451 m_xmlVersion("1.0"), | 451 m_xmlVersion("1.0"), |
452 m_xmlStandalone(StandaloneUnspecified), | 452 m_xmlStandalone(StandaloneUnspecified), |
453 m_hasXMLDeclaration(0), | 453 m_hasXMLDeclaration(0), |
454 m_designMode(false), | 454 m_designMode(false), |
455 m_isRunningExecCommand(false), | 455 m_isRunningExecCommand(false), |
456 m_hasReceivedUserGesture(false), | |
457 m_hasAnnotatedRegions(false), | 456 m_hasAnnotatedRegions(false), |
458 m_annotatedRegionsDirty(false), | 457 m_annotatedRegionsDirty(false), |
459 m_documentClasses(documentClasses), | 458 m_documentClasses(documentClasses), |
460 m_isViewSource(false), | 459 m_isViewSource(false), |
461 m_sawElementsInKnownNamespaces(false), | 460 m_sawElementsInKnownNamespaces(false), |
462 m_isSrcdocDocument(false), | 461 m_isSrcdocDocument(false), |
463 m_isMobileDocument(false), | 462 m_isMobileDocument(false), |
464 m_layoutView(0), | 463 m_layoutView(0), |
465 m_contextDocument(initializer.contextDocument()), | 464 m_contextDocument(initializer.contextDocument()), |
466 m_hasFullscreenSupplement(false), | 465 m_hasFullscreenSupplement(false), |
(...skipping 6116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6583 } | 6582 } |
6584 | 6583 |
6585 void showLiveDocumentInstances() { | 6584 void showLiveDocumentInstances() { |
6586 WeakDocumentSet& set = liveDocumentSet(); | 6585 WeakDocumentSet& set = liveDocumentSet(); |
6587 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 6586 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
6588 for (Document* document : set) | 6587 for (Document* document : set) |
6589 fprintf(stderr, "- Document %p URL: %s\n", document, | 6588 fprintf(stderr, "- Document %p URL: %s\n", document, |
6590 document->url().getString().utf8().data()); | 6589 document->url().getString().utf8().data()); |
6591 } | 6590 } |
6592 #endif | 6591 #endif |
OLD | NEW |