Lines Matching full:style
141 if (elem->getAttribute(classAttr) != "Apple-style-span")
185 if (o.style() && o.style()->zIndex())
186 ts << " zI: " << o.style()->zIndex();
234 if (o.parent() && (o.parent()->style()->color() != o.style()->color()))
235 ts << " [color=" << o.style()->color().name() << "]";
237 if (o.parent() && (o.parent()->style()->backgroundColor() != o.style()->backgroundColor()) &&
238 o.style()->backgroundColor().isValid() && o.style()->backgroundColor().rgb())
240 ts << " [bgcolor=" << o.style()->backgroundColor().name() << "]";
242 if (o.parent() && (o.parent()->style()->textFillColor() != o.style()->textFillColor()) &&
243 o.style()->textFillColor().isValid() && o.style()->textFillColor() != o.style()->color() &&
244 o.style()->textFillColor().rgb())
245 ts << " [textFillColor=" << o.style()->textFillColor().name() << "]";
247 if (o.parent() && (o.parent()->style()->textStrokeColor() != o.style()->textStrokeColor()) &&
248 o.style()->textStrokeColor().isValid() && o.style()->textStrokeColor() != o.style()->color() &&
249 o.style()->textStrokeColor().rgb())
250 ts << " [textStrokeColor=" << o.style()->textStrokeColor().name() << "]";
252 if (o.parent() && (o.parent()->style()->textStrokeWidth() != o.style()->textStrokeWidth()) &&
253 o.style()->textStrokeWidth() > 0)
254 ts << " [textStrokeWidth=" << o.style()->textStrokeWidth() << "]";
264 if (o.style()->borderTop() != prevBorder) {
265 prevBorder = o.style()->borderTop();
270 printBorderStyle(ts, o.style()->borderTopStyle());
271 Color col = o.style()->borderTopColor();
273 col = o.style()->color();
278 if (o.style()->borderRight() != prevBorder) {
279 prevBorder = o.style()->borderRight();
284 printBorderStyle(ts, o.style()->borderRightStyle());
285 Color col = o.style()->borderRightColor();
287 col = o.style()->color();
292 if (o.style()->borderBottom() != prevBorder) {
293 prevBorder = box.style()->borderBottom();
298 printBorderStyle(ts, o.style()->borderBottomStyle());
299 Color col = o.style()->borderBottomColor();
301 col = o.style()->color();
306 if (o.style()->borderLeft() != prevBorder) {
307 prevBorder = o.style()->borderLeft();
312 printBorderStyle(ts, o.style()->borderLeftStyle());
313 Color col = o.style()->borderLeftColor();
315 col = o.style()->color();