HomeSort by relevance Sort by last modified time
    Searched refs:urlStringSize (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/win/
DragImageWin.cpp 167 IntSize urlStringSize;
171 urlStringSize.setWidth(urlFont->width(urlRun));
172 urlStringSize.setHeight(urlFont->fontMetrics().ascent() + urlFont->fontMetrics().descent());
173 imageSize.setHeight(imageSize.height() + urlStringSize.height());
174 if (urlStringSize.width() > MaxDragLabelStringWidth) {
178 imageSize.setWidth(std::max(labelSize.width(), urlStringSize.width()) + DragLabelBorderX * 2);
  /external/webkit/Source/WebCore/platform/mac/
DragImageMac.mm 265 NSSize urlStringSize;
266 urlStringSize.width = widthWithFont(urlString, urlFont);
267 urlStringSize.height = [urlFont ascender] - [urlFont descender];
268 imageSize.height += urlStringSize.height;
269 if (urlStringSize.width > MaxDragLabelWidth) {
273 imageSize.width = std::max(labelSize.width + DragLabelBorderX * 2, urlStringSize.width + DragLabelBorderX * 2);

Completed in 48 milliseconds