summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-content-rtl.html
blob: 0f12c6f92a173ea111b00ccab04adc16a6f9ec76 (plain)
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
<!DOCTYPE html>
<html dir="rtl">
<head>
<meta charset="utf-8">
<title>crbug.com/1130174; Non-auto-width block should be right-aligned in an RTL fieldset</title>
<link rel="match" href="fieldset-content-rtl-ref.html">
<style>
.control {
  background: blue;
  width: 200px;
  height: 1em;
}
fieldset {
  border: 2px groove ThreeDFace;
  margin: 0;
  padding: 1em;
}
</style>
</head>
<body>
<fieldset>
  <label>Label</label>
  <div class="control"></div>
</fieldset>
</body>
</html>