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

Unified Diff: third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaperTest.cpp

Issue 2386333002: reflow comments in platform/fonts (Closed)
Patch Set: 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/platform/fonts/shaping/CachingWordShaperTest.cpp
diff --git a/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaperTest.cpp b/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaperTest.cpp
index fdb47ea0d05430a64d19fc9e545be7c2293efee7..f0daa5b30e9240452aba0d4323e79205d0f28ff5 100644
--- a/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaperTest.cpp
+++ b/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShaperTest.cpp
@@ -449,10 +449,12 @@ TEST_F(CachingWordShaperTest, GlyphBoundsWithSpaces) {
float periodsAndSpacesWidth = shaper.width(&font, periodsAndSpaces, nullptr,
&periodsAndSpacesGlyphBounds);
- // The total width of periods and spaces should be longer than the width of periods alone.
+ // The total width of periods and spaces should be longer than the width of
+ // periods alone.
ASSERT_GT(periodsAndSpacesWidth, periodsWidth);
- // The glyph bounds of periods and spaces should be longer than the glyph bounds of periods alone.
+ // The glyph bounds of periods and spaces should be longer than the glyph
+ // bounds of periods alone.
ASSERT_GT(periodsAndSpacesGlyphBounds.width(), periodsGlyphBounds.width());
}

Powered by Google App Engine
This is Rietveld 408576698