| Index: Source/core/inspector/InspectorOverlayPage.html
|
| diff --git a/Source/core/inspector/InspectorOverlayPage.html b/Source/core/inspector/InspectorOverlayPage.html
|
| index 503aeb4d3dff2c84cbbfab696b76032fb6459970..965c845d23591b6581147b205ef9ec3a44bb8333 100644
|
| --- a/Source/core/inspector/InspectorOverlayPage.html
|
| +++ b/Source/core/inspector/InspectorOverlayPage.html
|
| @@ -354,12 +354,10 @@ function drawViewSize()
|
| var frameWidth = frameViewFullSize.width || canvasWidth;
|
| var textWidth = context.measureText(text).width;
|
| context.fillStyle = gridBackgroundColor;
|
| - context.fillRect(frameWidth - textWidth - 12, 15, frameWidth, 25);
|
| + context.fillRect(frameWidth - textWidth - 12, 0, frameWidth, 25);
|
| context.fillStyle = darkGridColor;
|
| - context.fillText(text, frameWidth - textWidth - 6, 33);
|
| + context.fillText(text, frameWidth - textWidth - 6, 18);
|
| context.restore();
|
| -
|
| - _drawGrid(false, false);
|
| }
|
|
|
| function reset(resetData)
|
|
|