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 r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 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) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
(...skipping 2363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2374 | 2374 |
2375 PassRefPtrWillBeRawPtr<DocumentParser> Document::implicitOpen(ParserSynchronizat
ionPolicy parserSyncPolicy) | 2375 PassRefPtrWillBeRawPtr<DocumentParser> Document::implicitOpen(ParserSynchronizat
ionPolicy parserSyncPolicy) |
2376 { | 2376 { |
2377 cancelParsing(); | 2377 cancelParsing(); |
2378 | 2378 |
2379 removeChildren(); | 2379 removeChildren(); |
2380 ASSERT(!m_focusedElement); | 2380 ASSERT(!m_focusedElement); |
2381 | 2381 |
2382 setCompatibilityMode(NoQuirksMode); | 2382 setCompatibilityMode(NoQuirksMode); |
2383 | 2383 |
| 2384 if (frameHost() && frameHost()->chromeClient().disableThreadedParsingForUnit
Tests()) |
| 2385 parserSyncPolicy = ForceSynchronousParsing; |
| 2386 |
2384 m_parserSyncPolicy = parserSyncPolicy; | 2387 m_parserSyncPolicy = parserSyncPolicy; |
2385 m_parser = createParser(); | 2388 m_parser = createParser(); |
2386 setParsingState(Parsing); | 2389 setParsingState(Parsing); |
2387 setReadyState(Loading); | 2390 setReadyState(Loading); |
2388 | 2391 |
2389 return m_parser; | 2392 return m_parser; |
2390 } | 2393 } |
2391 | 2394 |
2392 HTMLElement* Document::body() const | 2395 HTMLElement* Document::body() const |
2393 { | 2396 { |
(...skipping 3310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5704 #ifndef NDEBUG | 5707 #ifndef NDEBUG |
5705 using namespace blink; | 5708 using namespace blink; |
5706 void showLiveDocumentInstances() | 5709 void showLiveDocumentInstances() |
5707 { | 5710 { |
5708 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5711 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
5709 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5712 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5710 for (Document* document : set) | 5713 for (Document* document : set) |
5711 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5714 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
5712 } | 5715 } |
5713 #endif | 5716 #endif |
OLD | NEW |