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

  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
position_util.js 59 var popupRect = popupElement.getBoundingClientRect();
93 if (anchorRect.bottom + popupRect.height > availRect.height &&
94 popupRect.height <= anchorRect.top) {
99 if (popupRect.height > anchorRect.top &&
100 anchorRect.bottom + popupRect.height <= availRect.height) {
105 if (anchorRect.right + popupRect.width > availRect.width &&
106 popupRect.width <= anchorRect.left) {
111 if (popupRect.width > anchorRect.left &&
112 anchorRect.right + popupRect.width <= availRect.width) {
126 if (anchorRect.bottom + popupRect.height <= availRect.height
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 349 IntRect popupRect(popupX, rScreenCoords.maxY(), popupWidth, popupHeight);
355 if (popupRect.maxY() > screen.height()) {
357 if (rScreenCoords.y() - popupRect.height() < 0) {
361 popupRect.setHeight(screen.height() - popupRect.y());
364 popupRect.setY(0);
365 popupRect.setHeight(rScreenCoords.y());
369 popupRect.setY(rScreenCoords.y() - popupRect.height());
374 if (popupRect.x() < screen.x())
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 396 IntRect popupRect(popupX, rectInScreenCoords.maxY(), popupWidth, popupHeight);
406 if (popupRect.maxY() > screen.height()) {
408 if (rectInScreenCoords.y() - popupRect.height() < 0) {
412 popupRect.setHeight(screen.height() - popupRect.y());
415 popupRect.setY(0);
416 popupRect.setHeight(rectInScreenCoords.y());
420 popupRect.setY(rectInScreenCoords.y() - popupRect.height());
425 if (popupRect.x() < screen.x())
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp 402 IntRect popupRect = frameRect();
403 chromeClient->popupOpened(this, layoutAndCalculateWidgetRect(popupRect.height(), popupRect.location()), false);
    [all...]

Completed in 132 milliseconds