OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 ASSERT(it + 1 == tokens->end()); // The EOF is assumed to be the las
t token of this bunch. | 491 ASSERT(it + 1 == tokens->end()); // The EOF is assumed to be the las
t token of this bunch. |
492 ASSERT(m_speculations.isEmpty()); // There should never be any chunk
s after the EOF. | 492 ASSERT(m_speculations.isEmpty()); // There should never be any chunk
s after the EOF. |
493 prepareToStopParsing(); | 493 prepareToStopParsing(); |
494 break; | 494 break; |
495 } | 495 } |
496 | 496 |
497 ASSERT(!m_tokenizer); | 497 ASSERT(!m_tokenizer); |
498 ASSERT(!m_token); | 498 ASSERT(!m_token); |
499 } | 499 } |
500 | 500 |
501 // Make sure any pending text nodes are emitted before returning. | 501 // Make sure all required pending text nodes are emitted before returning. |
| 502 // This leaves "script", "style" and "svg" nodes text nodes intact. |
502 if (!isStopped()) | 503 if (!isStopped()) |
503 m_treeBuilder->flush(); | 504 m_treeBuilder->flush(FlushIfAtTextLimit); |
504 } | 505 } |
505 | 506 |
506 void HTMLDocumentParser::pumpPendingSpeculations() | 507 void HTMLDocumentParser::pumpPendingSpeculations() |
507 { | 508 { |
508 // FIXME: Share this constant with the parser scheduler. | 509 // FIXME: Share this constant with the parser scheduler. |
509 const double parserTimeLimit = 0.500; | 510 const double parserTimeLimit = 0.500; |
510 | 511 |
511 #if !ENABLE(OILPAN) | 512 #if !ENABLE(OILPAN) |
512 // ASSERT that this object is both attached to the Document and protected. | 513 // ASSERT that this object is both attached to the Document and protected. |
513 ASSERT(refCount() >= 2); | 514 ASSERT(refCount() >= 2); |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 // function should be holding a RefPtr to this to ensure we weren't deleted. | 629 // function should be holding a RefPtr to this to ensure we weren't deleted. |
629 ASSERT(refCount() >= 1); | 630 ASSERT(refCount() >= 1); |
630 #endif | 631 #endif |
631 | 632 |
632 if (isStopped()) | 633 if (isStopped()) |
633 return; | 634 return; |
634 | 635 |
635 // There should only be PendingText left since the tree-builder always flush
es | 636 // There should only be PendingText left since the tree-builder always flush
es |
636 // the task queue before returning. In case that ever changes, crash. | 637 // the task queue before returning. In case that ever changes, crash. |
637 if (mode == ForceSynchronous) | 638 if (mode == ForceSynchronous) |
638 m_treeBuilder->flush(); | 639 m_treeBuilder->flush(FlushAlways); |
639 RELEASE_ASSERT(!isStopped()); | 640 RELEASE_ASSERT(!isStopped()); |
640 | 641 |
641 if (session.needsYield) | 642 if (session.needsYield) |
642 m_parserScheduler->scheduleForResume(); | 643 m_parserScheduler->scheduleForResume(); |
643 | 644 |
644 if (isWaitingForScripts()) { | 645 if (isWaitingForScripts()) { |
645 ASSERT(m_tokenizer->state() == HTMLTokenizer::DataState); | 646 ASSERT(m_tokenizer->state() == HTMLTokenizer::DataState); |
646 if (!m_preloadScanner) { | 647 if (!m_preloadScanner) { |
647 m_preloadScanner = adoptPtr(new HTMLPreloadScanner(m_options, docume
nt()->url(), createMediaValues(document()))); | 648 m_preloadScanner = adoptPtr(new HTMLPreloadScanner(m_options, docume
nt()->url(), createMediaValues(document()))); |
648 m_preloadScanner->appendToEnd(m_input.current()); | 649 m_preloadScanner->appendToEnd(m_input.current()); |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1071 void HTMLDocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder> decoder) | 1072 void HTMLDocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder> decoder) |
1072 { | 1073 { |
1073 ASSERT(decoder); | 1074 ASSERT(decoder); |
1074 DecodedDataDocumentParser::setDecoder(decoder); | 1075 DecodedDataDocumentParser::setDecoder(decoder); |
1075 | 1076 |
1076 if (m_haveBackgroundParser) | 1077 if (m_haveBackgroundParser) |
1077 HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::setDeco
der, m_backgroundParser, takeDecoder())); | 1078 HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::setDeco
der, m_backgroundParser, takeDecoder())); |
1078 } | 1079 } |
1079 | 1080 |
1080 } | 1081 } |
OLD | NEW |