HomeSort by relevance Sort by last modified time
    Searched defs:outlineWidth (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlinePainter.cpp 74 int outlineWidth = styleToUse->outlineWidth();
92 pixelSnappedBox.x() - outlineWidth,
93 pixelSnappedBox.y() - (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : 0),
95 pixelSnappedBox.maxY() + (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : 0),
98 (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth),
99 (nextline.isEmpty() || thisline.x() <= nextline.x() || (nextline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth),
105 pixelSnappedBox.y() - (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? outlineWidth : 0)
    [all...]
ImagePainter.cpp 58 unsigned short outlineWidth = areaElementStyle->outlineWidth();
59 if (!outlineWidth)
66 paintInfo.context->drawFocusRing(path, outlineWidth,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImage.cpp 292 unsigned short outlineWidth = areaElementStyle->outlineWidth();
296 paintInvalidationRect.inflate(outlineWidth);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 517 unsigned short outlineSize() const { return max(0, outlineWidth() + outlineOffset()); }
518 unsigned short outlineWidth() const
524 bool hasOutline() const { return outlineWidth() > 0 && outlineStyle() > BHIDDEN; }
    [all...]

Completed in 107 milliseconds