Home
last modified time | relevance | path

Searched refs:wargs (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/bindings/js/
DJSDOMWindowBase.cpp303 WindowFeatures wargs; in showModalDialog() local
304wargs.width = WindowFeatures::floatFeature(features, "dialogwidth", 100, screenRect.width(), 620);… in showModalDialog()
305 wargs.widthSet = true; in showModalDialog()
306wargs.height = WindowFeatures::floatFeature(features, "dialogheight", 100, screenRect.height(), 45… in showModalDialog()
307 wargs.heightSet = true; in showModalDialog()
309wargs.x = WindowFeatures::floatFeature(features, "dialogleft", screenRect.x(), screenRect.right() … in showModalDialog()
310 wargs.xSet = wargs.x > 0; in showModalDialog()
311wargs.y = WindowFeatures::floatFeature(features, "dialogtop", screenRect.y(), screenRect.bottom() … in showModalDialog()
312 wargs.ySet = wargs.y > 0; in showModalDialog()
315 if (!wargs.xSet) { in showModalDialog()
[all …]