Lines Matching defs:width

7248      * Sets the width of the element to the given size, regardless
7256 Y.DOM._setSize(node, 'width', size);
7327 re_unit = /width|height|top|left|right|bottom|margin|padding/i;
7634 WIDTH = 'width',
7681 width: ['Left', 'Right'],
7688 var current = _getStyleObj(el)[prop], // value of "width", "top", etc.
7716 // need to map style.width to currentStyle (no currentStyle.pixelWidth)
7884 Y.DOM.CUSTOM_STYLES.width = {
7888 style.width = val;
7890 Y.log('invalid style value for width: ' + val, 'warn', 'dom-style');
7979 * Returns the inner width of the viewport (exludes scrollbar).
7981 * @return {Number} The current width of the viewport.
7984 var w = Y_DOM._getWinSize(node).width;
8001 * Document width
8003 * @return {Number} The current width of the document.
8006 var w = Y_DOM._getDocSize(node).width;
8008 return Math.max(w, Y_DOM._getWinSize(node).width);
8181 Gets the width of vertical scrollbars on overflowed containers in the body
8185 @return {Number} Pixel width of a scrollbar in the current browser
8192 width = 0.1;
8195 testNode.style.cssText = "position:absolute;visibility:hidden;overflow:scroll;width:20px;";
8198 width = testNode.offsetWidth - testNode.clientWidth;
8203 return width;
8342 return { height: h, width: w };
8353 return { height: root.scrollHeight, width: root.scrollWidth };
8501 region.width = region[RIGHT] - region[LEFT];
16454 * Returns the inner width of the viewport (exludes scrollbar).
16469 * Document width
18528 * width: '10px',
18647 * width: '10px',
18731 width: 0,
18740 width: function(node) {
19773 RE_DEFAULT_UNIT: /^width|height|top|right|bottom|left|margin.*|padding.*|border.*$/i,