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

Unified Diff: third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h

Issue 2386893002: Reformat comments in core/html/parser (Closed)
Patch Set: self review Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h
diff --git a/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h b/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h
index b0c5433d70f4ca44e596e65a99e52477b57d8585..caaba4260d9cab6513eed462549ae7789fcbcf83 100644
--- a/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h
+++ b/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h
@@ -101,10 +101,11 @@ class InputStreamPreprocessor {
m_skipNextNewLine = true;
} else {
m_skipNextNewLine = false;
- // FIXME: The spec indicates that the surrogate pair range as well as
- // a number of specific character values are parse errors and should be replaced
- // by the replacement character. We suspect this is a problem with the spec as doing
- // that filtering breaks surrogate pair handling and causes us not to match Minefield.
+ // FIXME: The spec indicates that the surrogate pair range as well as a
+ // number of specific character values are parse errors and should be
+ // replaced by the replacement character. We suspect this is a problem
+ // with the spec as doing that filtering breaks surrogate pair handling
+ // and causes us not to match Minefield.
if (m_nextInputCharacter == '\0' &&
!shouldTreatNullAsEndOfFileMarker(source)) {
if (m_tokenizer->shouldSkipNullCharacters()) {

Powered by Google App Engine
This is Rietveld 408576698