Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/ui/cssnames.js
4505 views
1
/**
2
* @license
3
* Copyright The Closure Library Authors.
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
/**
8
* @fileoverview Common CSS class name constants.
9
*/
10
11
goog.provide('goog.ui.INLINE_BLOCK_CLASSNAME');
12
13
14
/**
15
* CSS class name for applying the "display: inline-block" property in a
16
* cross-browser way.
17
* @type {string}
18
*/
19
goog.ui.INLINE_BLOCK_CLASSNAME = goog.getCssName('goog-inline-block');
20
21