Lines Matching refs:style

2334   iframe.style.display = 'none';
13920 span.style.fontFamily = names[i];
14963 setLineCap: function CanvasGraphics_setLineCap(style) {
14964 this.ctx.lineCap = LINE_CAP_STYLES[style];
14966 setLineJoin: function CanvasGraphics_setLineJoin(style) {
14967 this.ctx.lineJoin = LINE_JOIN_STYLES[style];
18816 style: null,
18841 var style = styles[geom.fontName];
18843 if (style.vertical) {
18850 if (style.ascent) {
18851 fontAscent = style.ascent * fontAscent;
18852 } else if (style.descent) {
18853 fontAscent = (1 + style.descent) * fontAscent;
18870 styleBuf[7] = style.fontFamily;
18871 textDivProperties.style = styleBuf.join('');
18872 textDiv.setAttribute('style', textDivProperties.style);
18884 if (style.vertical) {
18906 var divWidth = (style.vertical ? geom.height : geom.width) * task._viewport.scale;
19294 var fontSize = textDiv.style.fontSize;
19295 var fontFamily = textDiv.style.fontFamily;
19318 textDiv.style.transform = transform;
19431 div.setAttribute('style', divProperties.style + padding);
19435 div.style.transform = transform;
19438 div.style.padding = 0;
19439 div.style.transform = divProperties.originalTransform || '';
19638 container.style.transform = 'matrix(' + viewport.transform.join(',') + ')';
19639 container.style.transformOrigin = -rect[0] + 'px ' + -rect[1] + 'px';
19642 container.style.borderWidth = data.borderStyle.width + 'px';
19644 if (data.borderStyle.style !== _util.AnnotationBorderStyleType.UNDERLINE) {
19654 container.style.borderRadius = radius;
19657 switch (data.borderStyle.style) {
19659 container.style.borderStyle = 'solid';
19663 container.style.borderStyle = 'dashed';
19675 container.style.borderBottomStyle = 'solid';
19683 …container.style.borderColor = _util.Util.makeCssRgb(data.color[0] | 0, data.color[1] | 0, data.col…
19685 container.style.borderWidth = 0;
19689 container.style.left = rect[0] + 'px';
19690 container.style.top = rect[1] + 'px';
19691 container.style.width = width + 'px';
19692 container.style.height = height + 'px';
19700 trigger.style.height = container.style.height;
19701 trigger.style.width = container.style.width;
19715 popup.style.left = container.style.width;
19820 image.style.height = this.container.style.height;
19821 image.style.width = this.container.style.width;
19901 element.style.letterSpacing = 'calc(' + combWidth + 'px - 1ch)';
19906 element.style.verticalAlign = 'middle';
19907 element.style.display = 'table-cell';
19918 element.style.textAlign = TEXT_ALIGNMENT[this.data.textAlignment];
19927 var style = element.style;
19928 style.fontSize = this.data.fontSize + 'px';
19929 style.direction = this.data.fontDirection < 0 ? 'rtl' : 'ltr';
19935 style.fontWeight = font.black ? font.bold ? '900' : 'bold' : font.bold ? 'bold' : 'normal';
19936 style.fontStyle = font.italic ? 'italic' : 'normal';
19939 style.fontFamily = fontFamily + fallbackName;
20117 var parentLeft = parseFloat(parentElement.style.left);
20118 var parentWidth = parseFloat(parentElement.style.width);
20119 …this.container.style.transformOrigin = -(parentLeft + parentWidth) + 'px -' + parentElement.style.…
20120 this.container.style.left = parentLeft + parentWidth + 'px';
20161 popup.style.backgroundColor = _util.Util.makeCssRgb(r | 0, g | 0, b | 0);
20228 this.container.style.zIndex += 1;
20242 this.container.style.zIndex -= 1;
20731 trigger.style.height = this.container.style.height;
20732 trigger.style.width = this.container.style.width;
20799 element.style.transform = 'matrix(' + parameters.viewport.transform.join(',') + ')';
21841 value: function setLineCap(style) {
21842 this.current.lineCap = LINE_CAP_STYLES[style];
21846 value: function setLineJoin(style) {
21847 this.current.lineJoin = LINE_JOIN_STYLES[style];