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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp

Issue 2387093002: Reflow comments in canvas-related folders (Closed)
Patch Set: More fix 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/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
index 5a89ed8514fafa6430efc608106416f38a5e25b4..4fb38953da9a96740aefcd5ca712ad5c727eab40 100644
--- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
+++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
@@ -244,8 +244,8 @@ TEST_F(CanvasRenderingContext2DAPITest, CreateImageData) {
EXPECT_EQ(255, imageData->data()->data()[32]);
- // createImageData(imageData) should create a new ImageData of the same size as 'imageData'
- // but filled with transparent black
+ // createImageData(imageData) should create a new ImageData of the same size
+ // as 'imageData' but filled with transparent black
ImageData* sameSizeImageData =
context2d()->createImageData(imageData, exceptionState);
@@ -254,7 +254,8 @@ TEST_F(CanvasRenderingContext2DAPITest, CreateImageData) {
EXPECT_EQ(50, sameSizeImageData->height());
EXPECT_EQ(0, sameSizeImageData->data()->data()[32]);
- // createImageData(width, height) takes the absolute magnitude of the size arguments
+ // createImageData(width, height) takes the absolute magnitude of the size
+ // arguments
ImageData* imgdata1 = context2d()->createImageData(10, 20, exceptionState);
EXPECT_FALSE(exceptionState.hadException());

Powered by Google App Engine
This is Rietveld 408576698