no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / painting / BorderConsts.h
blobe25c69710188dc35fd8f9a8878f3e01aa0146d8a
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_BorderConsts_h_
8 #define mozilla_BorderConsts_h_
10 // thickness of dashed line relative to dotted line
11 #define DOT_LENGTH 1 // square
12 #define DASH_LENGTH 3 // 3 times longer than dot
14 #define C_TL mozilla::eCornerTopLeft
15 #define C_TR mozilla::eCornerTopRight
16 #define C_BR mozilla::eCornerBottomRight
17 #define C_BL mozilla::eCornerBottomLeft
19 #define BORDER_SEGMENT_COUNT_MAX 100
20 #define BORDER_DOTTED_CORNER_MAX_RADIUS 100000
22 #endif /* mozilla_BorderConsts_h_ */