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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 { | 53 { |
54 // In principle, we should create a specialized tree builder for | 54 // In principle, we should create a specialized tree builder for |
55 // TextDocuments, but instead we re-use the existing HTMLTreeBuilder. | 55 // TextDocuments, but instead we re-use the existing HTMLTreeBuilder. |
56 // We create a fake token and give it to the tree builder rather than | 56 // We create a fake token and give it to the tree builder rather than |
57 // sending fake bytes through the front-end of the parser to avoid | 57 // sending fake bytes through the front-end of the parser to avoid |
58 // distrubing the line/column number calculations. | 58 // distrubing the line/column number calculations. |
59 Vector<Attribute> attributes; | 59 Vector<Attribute> attributes; |
60 attributes.append(Attribute(styleAttr, "word-wrap: break-word; white-space:
pre-wrap;")); | 60 attributes.append(Attribute(styleAttr, "word-wrap: break-word; white-space:
pre-wrap;")); |
61 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes)
; | 61 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes)
; |
62 treeBuilder()->constructTree(&fakePre); | 62 treeBuilder()->constructTree(&fakePre); |
| 63 if (isStopped()) |
| 64 return; // The document could have been detached by an extension while t
he tree was being constructed. |
63 | 65 |
64 // Normally we would skip the first \n after a <pre> element, but we don't | 66 // Normally we would skip the first \n after a <pre> element, but we don't |
65 // want to skip the first \n for text documents! | 67 // want to skip the first \n for text documents! |
66 treeBuilder()->setShouldSkipLeadingNewline(false); | 68 treeBuilder()->setShouldSkipLeadingNewline(false); |
67 | 69 |
68 // Although Text Documents expose a "pre" element in their DOM, they | 70 // Although Text Documents expose a "pre" element in their DOM, they |
69 // act like a <plaintext> tag, so we have to force plaintext mode. | 71 // act like a <plaintext> tag, so we have to force plaintext mode. |
70 forcePlaintextForTextDocument(); | 72 forcePlaintextForTextDocument(); |
71 | 73 |
72 m_haveInsertedFakePreElement = true; | 74 m_haveInsertedFakePreElement = true; |
73 } | 75 } |
74 | 76 |
75 } // namespace blink | 77 } // namespace blink |
OLD | NEW |