Index: core/page/PagePopupController.idl |
diff --git a/core/page/PagePopupController.idl b/core/page/PagePopupController.idl |
index 6d36d2b2d57895897c4bb717c124a2f2e04aea0a..28051d06fab11194ee84e29bc85eab9b336659b2 100644 |
--- a/core/page/PagePopupController.idl |
+++ b/core/page/PagePopupController.idl |
@@ -36,9 +36,14 @@ |
void setValueAndClosePopup(long numberValue, DOMString stringValue); |
void setValue(DOMString value); |
void closePopup(); |
+ void selectFontsFromOwnerDocument(Document targetDocument); |
DOMString localizeNumberString(DOMString numberString); |
DOMString formatMonth(long year, long zeroBaseMonth); |
DOMString formatShortMonth(long year, long zeroBaseMonth); |
DOMString formatWeek(long year, long weekNumber, DOMString localizedStartDate); |
void histogramEnumeration(DOMString name, long sample, long boundaryValue); |
+ // window.resizeTo/moveTo are not suitable because LocalDOMWindow adjusts |
+ // rectangle to fit in the current screen. Popups sometimes need to be |
+ // positioned on other screens. |
+ void setWindowRect(long x, long y,long width, long height); |
}; |