Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5e9cf8bed3f0ddbcf1cdd7c336da468fade6be4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * Copyright (c) 2018 Red Hat and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.tests.gtk.snippets;


import org.eclipse.swt.SWT;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class Bug96500_DoubleBrowserComposite {
	public static void main(String[] args) {
		final Display display = new Display();
		Shell shell = new Shell(display);
		Browser browser;
		
		browser = new Browser (shell, SWT.NONE);
		browser.setBounds (10, 10, 500, 200);
		browser.setText("<html><body><A HREF=\"www\">lala</a> <AHREF=\"www\">lala</a><br><input type=\"widget.text\"  value=''	maxlength=256></body></html>");
		browser.getAccessible();
		browser = new Browser (shell, SWT.NONE);
		browser.setBounds (10, 220, 500, 200);
		browser.setText("<html><body><A HREF=\"www\">lala</a> <A HREF=\"www\">lala</a><br><input type=\"widget.text\"  value='' maxlength=256></body></html>");
		
		Button button= new Button (shell, SWT.PUSH);
		button.setBounds(10, 500, 70, 28);
		button.setText("Button");
		
		shell.open();
		while (!shell.isDisposed())
			if (!display.readAndDispatch())
				display.sleep();
		display.dispose();
	}
}

Back to the top