mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
37 lines
477 B
HTML
37 lines
477 B
HTML
<html>
|
|
<head>
|
|
<title>Testcase, bug 48237</title>
|
|
<style type="text/css">
|
|
|
|
div {
|
|
float: right;
|
|
border: 1px solid red;
|
|
width: 40%;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>This is a float:right div.</div>
|
|
|
|
<select>
|
|
<option>one</option>
|
|
<option>two</option>
|
|
<option>three</option>
|
|
</select>
|
|
|
|
<hr clear="all">
|
|
|
|
<div>This is a float:right div.</div>
|
|
|
|
<select size=3>
|
|
<option>one</option>
|
|
<option>two</option>
|
|
<option>three</option>
|
|
</select>
|
|
|
|
</body>
|
|
</html>
|