Lines Matching defs:toNode
632 this.copyTextStyles=function(fromNode,toNode,style){var view=this.isIE?fromNode.ownerDocument.parentWindow:fromNode.ownerDocument.defaultView;
634 }toNode.style.fontFamily=style.fontFamily;
635 toNode.style.fontSize=style.fontSize;
636 toNode.style.fontWeight=style.fontWeight;
637 toNode.style.fontStyle=style.fontStyle;
640 this.copyBoxStyles=function(fromNode,toNode,style){var view=this.isIE?fromNode.ownerDocument.parentWindow:fromNode.ownerDocument.defaultView;
642 }toNode.style.marginTop=style.marginTop;
643 toNode.style.marginRight=style.marginRight;
644 toNode.style.marginBottom=style.marginBottom;
645 toNode.style.marginLeft=style.marginLeft;
646 toNode.style.borderTopWidth=style.borderTopWidth;
647 toNode.style.borderRightWidth=style.borderRightWidth;
648 toNode.style.borderBottomWidth=style.borderBottomWidth;
649 toNode.style.borderLeftWidth=style.borderLeftWidth;