1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 /** @const */ var WIDTH = 14;
7 /** @const */ var HEIGHT = WIDTH / 2 + 2;
8 /** @const */ var MARGIN = 1;
9 var ctx = document.getCSSCanvasContext('2d',
14 ctx.fillStyle = '#7a7a7a';
15 ctx.translate(MARGIN, MARGIN);
20 ctx.lineTo(WIDTH / 2, HEIGHT);