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

Unified Diff: third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.h

Issue 2393243003: Reflow comments in //third_party/WebKit/Sourcecore/editing/serializers (Closed)
Patch Set: Address nits 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/editing/serializers/MarkupFormatter.h
diff --git a/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.h b/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.h
index 7eb496516cf989928059c60c57ffa35a4b4bb7a7..151cf4e7f0209fcfbed4e43b614525f85f53d11f 100644
--- a/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.h
+++ b/third_party/WebKit/Source/core/editing/serializers/MarkupFormatter.h
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
+ * reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -51,8 +52,10 @@ enum EntityMask {
EntityLineFeed = 0x0040,
EntityCarriageReturn = 0x0080,
- // Non-breaking space needs to be escaped in innerHTML for compatibility reason. See http://trac.webkit.org/changeset/32879
- // However, we cannot do this in a XML document because it does not have the entity reference defined (See the bug 19215).
+ // Non-breaking space needs to be escaped in innerHTML for compatibility
+ // reasons. See http://trac.webkit.org/changeset/32879. However, we cannot do
+ // this in an XML document because it does not have the entity reference
+ // defined (see bug 19215).
EntityMaskInCDATA = 0,
EntityMaskInPCDATA = EntityAmp | EntityLt | EntityGt,
EntityMaskInHTMLPCDATA = EntityMaskInPCDATA | EntityNbsp,

Powered by Google App Engine
This is Rietveld 408576698