goog.provide('M.style.baseline');
/**
* @namespace M.style.baseline
*/
(function() {
/**
* Top style baseline
* @const
* @type {string}
* @public
* @api stable
*/
M.style.baseline.TOP = "top";
/**
* Middle style baseline
* @const
* @type {string}
* @public
* @api stable
*/
M.style.baseline.MIDDLE = "middle";
/**
* Bottom style baseline
* @const
* @type {string}
* @public
* @api stable
*/
M.style.baseline.BOTTOM = "bottom";
/**
* Alphabetic style baseline
* @const
* @type {string}
* @public
* @api stable
*/
M.style.baseline.ALPHABETIC = "alphabetic";
/**
* Hanging style baseline
* @const
* @type {string}
* @public
* @api stable
*/
M.style.baseline.HANGING = "hanging";
/**
* Ideographic style baseline
* @const
* @type {string}
* @public
* @api stable
*/
M.style.baseline.IDEOGRAPHIC = "ideographic";
})();