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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementTest.cpp

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. 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/dom/custom/CustomElementTest.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementTest.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementTest.cpp
index b74c6db834eec24504d4e01af6fedc0e23d78ccf..b135c127ed9b512de280c2dbaee7b59f434bfb54 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementTest.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementTest.cpp
@@ -73,16 +73,27 @@ TEST(CustomElementTest, TestIsValidNamePotentialCustomElementName) {
TEST(CustomElementTest, TestIsValidNamePotentialCustomElementNameChar) {
struct {
UChar32 from, to;
- } ranges[] =
- {
- {'-', '.'}, // "-" | "." need to merge to test -1/+1.
- {'0', '9'}, {'_', '_'}, {'a', 'z'},
- {0xB7, 0xB7}, {0xC0, 0xD6}, {0xD8, 0xF6},
- {0xF8, 0x37D}, // [#xF8-#x2FF] | [#x300-#x37D] need to merge to test -1/+1.
- {0x37F, 0x1FFF}, {0x200C, 0x200D}, {0x203F, 0x2040},
- {0x2070, 0x218F}, {0x2C00, 0x2FEF}, {0x3001, 0xD7FF},
- {0xF900, 0xFDCF}, {0xFDF0, 0xFFFD}, {0x10000, 0xEFFFF},
- };
+ } ranges[] = {
+ // "-" | "." need to merge to test -1/+1.
+ {'-', '.'},
+ {'0', '9'},
+ {'_', '_'},
+ {'a', 'z'},
+ {0xB7, 0xB7},
+ {0xC0, 0xD6},
+ {0xD8, 0xF6},
+ // [#xF8-#x2FF] | [#x300-#x37D] need to merge to test -1/+1.
+ {0xF8, 0x37D},
+ {0x37F, 0x1FFF},
+ {0x200C, 0x200D},
+ {0x203F, 0x2040},
+ {0x2070, 0x218F},
+ {0x2C00, 0x2FEF},
+ {0x3001, 0xD7FF},
+ {0xF900, 0xFDCF},
+ {0xFDF0, 0xFFFD},
+ {0x10000, 0xEFFFF},
+ };
for (auto range : ranges) {
testIsPotentialCustomElementNameChar(range.from - 1, false);
for (UChar32 c = range.from; c <= range.to; ++c)

Powered by Google App Engine
This is Rietveld 408576698