Home
last modified time | relevance | path

Searched refs:computedStyle (Results 1 – 2 of 2) sorted by relevance

/external/python/httplib2/doc/html/_static/
Djquery.js808 var computedStyle = defaultView.getComputedStyle( elem, null );
810 if ( computedStyle )
811 ret = computedStyle.getPropertyValue( name );
4189 doc = elem.ownerDocument, computedStyle, docElem = doc.documentElement, variable
4195 computedStyle = defaultView.getComputedStyle(elem, null);
4200 top += parseInt( computedStyle.borderTopWidth, 10) || 0,
4201 left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
4204 if ( jQuery.offset.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" )
4205 top += parseInt( computedStyle.borderTopWidth, 10) || 0,
4206 left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
Djquery-1.7.1.js6708 var ret, defaultView, computedStyle;
6713 (computedStyle = defaultView.getComputedStyle( elem, null )) ) {
6714 ret = computedStyle.getPropertyValue( name );
8961 var computedStyle,
8977 computedStyle = defaultView ? defaultView.getComputedStyle(elem, null) : elem.currentStyle;
8986 top += parseFloat( computedStyle.borderTopWidth ) || 0;
8987 left += parseFloat( computedStyle.borderLeftWidth ) || 0;
8994 …if ( jQuery.support.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" )…
8995 top += parseFloat( computedStyle.borderTopWidth ) || 0;
8996 left += parseFloat( computedStyle.borderLeftWidth ) || 0;
[all …]