Chromium Code Reviews| Index: Source/core/html/canvas/WebGLRenderingContext.cpp |
| diff --git a/Source/core/html/canvas/WebGLRenderingContext.cpp b/Source/core/html/canvas/WebGLRenderingContext.cpp |
| index 52f7ae846eca77ec778acd8a596392ebbac0f4e1..390b1495d2afcbb502093eefc70dc336e5c08f56 100644 |
| --- a/Source/core/html/canvas/WebGLRenderingContext.cpp |
| +++ b/Source/core/html/canvas/WebGLRenderingContext.cpp |
| @@ -92,7 +92,9 @@ PassOwnPtrWillBeRawPtr<WebGLRenderingContext> WebGLRenderingContext::create(HTML |
| statusMessage.append("Could not create a WebGL context. "); |
| statusMessage.append(glInfo.contextInfoCollectionFailure); |
| } else { |
| - statusMessage.append("Could not create a WebGL context"); |
| + statusMessage.append("Could not create a WebGL context "); |
|
philipj_slow
2015/01/15 09:55:00
Maybe a period after context like in the above str
sivag
2015/01/15 14:50:59
Done.
|
| + statusMessage.append("VendorId = " + String::number(glInfo.vendorId)); |
| + statusMessage.append(", DriverId = " + String::number(glInfo.deviceId)); |
| if (!glInfo.vendorInfo.isEmpty()) { |
| statusMessage.append(" VendorInfo = "); |
| statusMessage.append(glInfo.vendorInfo); |