Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: third_party/WebKit/Source/core/html/parser/TextDocumentParser.cpp

Issue 1642283002: Deal with frame removal by content scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Last nits Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698