blob: bdf47c3e8ae024e596629dc4061cc7e075503150 (
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>
<link rel="help" href="https://drafts.csswg.org/css-text-3">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<style>
#container {
font-size: 100px;
width: 33554432px;
}
atomic {
display: inline-block;
width: 1ch;
}
left {
float: left;
width: 33554432px;
height: 10px;
}
</style>
<body>
<div id="container">
<atomic></atomic>
0
<left></left>
<span dir="ltr"><atomic></atomic></span>
</div>
</body>
|