Home | History | Annotate | Download | only in page

Lines Matching full:width

445     if (key == "width") {
446 if (value == "device-width") {
449 int width = value.toInt();
450 if (width <= 10000) {
451 if (width <= 320) {
454 // use device-width which works for both portrait and
458 m_viewport_width = width;
532 void Settings::setViewportWidth(int width)
534 if (width < 0 || width > 10000)
537 m_viewport_width = width;