iframeSampleTextBox.setWidth(Math.floor(Window.getClientWidth() * 0.6) + "px");
iframeSampleBoxPanel.add(iframeSampleTextBox);
iframeSampleBoxPanel.add(new HTML(" "));
Button iframeReTestButton = new Button(GuiFactory.strings.reTestRequest());
iframeReTestButton.addClickListener(new ClickListener() {
public void onClick(Widget sender) {
frame.setUrl(iframeSampleTextBox.getText());
}
});
iframeSampleBoxPanel.add(iframeReTestButton);