aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/layouts/layouttester/GridLayout/GridComponentSizing.java
blob: 5b91b78b514857e2da1b6c1f98363e5124abb46f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.vaadin.tests.layouts.layouttester.GridLayout;

import com.vaadin.server.VaadinRequest;

public class GridComponentSizing extends GridBaseLayoutTestUI {

    @Override
    protected void setup(VaadinRequest request) {
        getLayoutForLayoutSizing("component");
        super.setup(request);
        layout.setSizeFull();
    }
}