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

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

Issue 2387093002: Reflow comments in canvas-related folders (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/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..aae6f0f940603d20b4e376a6ad369acc18b9804e 100644
--- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
+++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DAPITest.cpp
@@ -244,7 +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'
+ // createImageData(imageData) should create a new ImageData of the same size
+ // as 'imageData'
Justin Novosad 2016/10/03 18:13:11 oops
// but filled with transparent black
ImageData* sameSizeImageData =
@@ -254,7 +255,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