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

Unified Diff: resources/bookmark_manager/css/bmm.css.js

Issue 853002: Updating the Chromium reference build for Windows. The continuous... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/reference_builds/chrome/
Patch Set: Added the symbol files back. Created 10 years, 9 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
« no previous file with comments | « resources/bookmark_manager/css/bmm.css ('k') | resources/bookmark_manager/css/list.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: resources/bookmark_manager/css/bmm.css.js
===================================================================
--- resources/bookmark_manager/css/bmm.css.js (revision 0)
+++ resources/bookmark_manager/css/bmm.css.js (revision 0)
@@ -0,0 +1,17 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Create the drop down arrow for the drop down buttons.
+(function() {
+ var ctx = document.getCSSCanvasContext('2d', 'drop-down-arrow', 9, 4);
+ ctx.fillStyle = '#000';
+ ctx.translate(1.5, .5);
+ ctx.beginPath();
+ ctx.moveTo(0, 0);
+ ctx.lineTo(6, 0);
+ ctx.lineTo(3, 3);
+ ctx.closePath();
+ ctx.fill();
+ ctx.stroke();
+})();
« no previous file with comments | « resources/bookmark_manager/css/bmm.css ('k') | resources/bookmark_manager/css/list.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698