• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/libxo/xohtml/external/

Lines Matching refs:top

1372 	div.innerHTML = "   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/><nav></nav>";
1402 style: /top/.test( a.getAttribute("style") ),
1512 top: "-999px"
1605 ptlm = "position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",
1621 container.style.cssText = vb + "width:0;height:0;position:static;top:0;margin-top:" + conMarginTop + "px";
1640 inner.style.top = "20px";
1644 inner.style.position = inner.style.top = "";
8983 return box ? { top: box.top, left: box.left } : { top: 0, left: 0 };
8992 top = box.top + scrollTop - clientTop,
8995 return { top: top, left: left };
9024 top = elem.offsetTop,
9033 top -= elem.scrollTop;
9037 top += elem.offsetTop;
9041 top += parseFloat( computedStyle.borderTopWidth ) || 0;
9050 top += parseFloat( computedStyle.borderTopWidth ) || 0;
9058 top += body.offsetTop;
9063 top += Math.max( docElem.scrollTop, body.scrollTop );
9067 return { top: top, left: left };
9074 var top = body.offsetTop,
9078 top += parseFloat( jQuery.css(body, "marginTop") ) || 0;
9082 return { top: top, left: left };
9088 // set position first, in-case top/left are set even on static elem
9095 curCSSTop = jQuery.css( elem, "top" ),
9100 // need to be able to calculate position if either top or left is auto and position is either absolute or fixed
9103 curTop = curPosition.top;
9114 if ( options.top != null ) {
9115 props.top = ( options.top - curOffset.top ) + curTop;
9144 parentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset();
9149 offset.top -= parseFloat( jQuery.css(elem, "marginTop") ) || 0;
9153 parentOffset.top += parseFloat( jQuery.css(offsetParent[0], "borderTopWidth") ) || 0;
9158 top: offset.top - parentOffset.top,