Lines Matching refs:val
80 InkWeb.setStyle = function (el, att, val) {
86 style = style.replace( re, "$1"+ att +":"+ val +"$3" );
88 style += ";"+ att +":"+ val;
91 return val
104 var val = this.getStyle( conf.from, conf.att[i] );
105 if ( val ) {
106 this.setStyle( toEl, conf.att[i], val );
108 val = conf.from.getAttribute(conf.att[i]);
109 toEl.setAttribute( conf.att[i], val );
119 conf.val = conf.val.split( /\s+/ );
136 el.setAttribute( att, conf.val[i] );
138 this.setStyle( el, att, conf.val[i] );