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 29 matching lines...) Expand all Loading... | |
40 | 40 |
41 TextDocumentParser::~TextDocumentParser() | 41 TextDocumentParser::~TextDocumentParser() |
42 { | 42 { |
43 } | 43 } |
44 | 44 |
45 void TextDocumentParser::append(PassRefPtr<StringImpl> text) | 45 void TextDocumentParser::append(PassRefPtr<StringImpl> text) |
46 { | 46 { |
47 if (!m_haveInsertedFakePreElement) | 47 if (!m_haveInsertedFakePreElement) |
48 insertFakePreElement(); | 48 insertFakePreElement(); |
49 HTMLDocumentParser::append(text); | 49 HTMLDocumentParser::append(text); |
50 } | 50 } |
abarth-chromium
2013/12/15 05:50:00
We should be able to remove this override now, rig
oystein (OOO til 10th of July)
2013/12/16 19:33:30
Done.
| |
51 | 51 |
52 void TextDocumentParser::appendBytes(const char* data, size_t length) | |
53 { | |
54 if (!m_haveInsertedFakePreElement) | |
55 insertFakePreElement(); | |
56 HTMLDocumentParser::appendBytes(data, length); | |
57 } | |
58 | |
52 void TextDocumentParser::insertFakePreElement() | 59 void TextDocumentParser::insertFakePreElement() |
53 { | 60 { |
54 // In principle, we should create a specialized tree builder for | 61 // In principle, we should create a specialized tree builder for |
55 // TextDocuments, but instead we re-use the existing HTMLTreeBuilder. | 62 // TextDocuments, but instead we re-use the existing HTMLTreeBuilder. |
56 // We create a fake token and give it to the tree builder rather than | 63 // 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 | 64 // sending fake bytes through the front-end of the parser to avoid |
58 // distrubing the line/column number calculations. | 65 // distrubing the line/column number calculations. |
59 Vector<Attribute> attributes; | 66 Vector<Attribute> attributes; |
60 attributes.append(Attribute(styleAttr, "word-wrap: break-word; white-space: pre-wrap;")); | 67 attributes.append(Attribute(styleAttr, "word-wrap: break-word; white-space: pre-wrap;")); |
61 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes) ; | 68 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes) ; |
62 treeBuilder()->constructTree(&fakePre); | 69 treeBuilder()->constructTree(&fakePre); |
63 | 70 |
64 // Normally we would skip the first \n after a <pre> element, but we don't | 71 // 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! | 72 // want to skip the first \n for text documents! |
66 treeBuilder()->setShouldSkipLeadingNewline(false); | 73 treeBuilder()->setShouldSkipLeadingNewline(false); |
67 | 74 |
68 // Although Text Documents expose a "pre" element in their DOM, they | 75 // Although Text Documents expose a "pre" element in their DOM, they |
69 // act like a <plaintext> tag, so we have to force plaintext mode. | 76 // act like a <plaintext> tag, so we have to force plaintext mode. |
70 forcePlaintextForTextDocument(); | 77 forcePlaintextForTextDocument(); |
71 | 78 |
72 m_haveInsertedFakePreElement = true; | 79 m_haveInsertedFakePreElement = true; |
73 } | 80 } |
74 | 81 |
75 } | 82 } |
OLD | NEW |