blob: 9bc890541f04fa3dec4e83239ee68dc2e63cfa3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<style>
h3 {
column-span: all;
}
html {
columns: 3em;
}
</style>
<body onload=go()>
<h3></h3>
<!-- The following content will be in a -moz-column-content frame where it's
parent is a hard continuation of a nsColumnSetFrame. -->
ltr
ltr
<div dir="rtl">rtl</div>
<div></div>
</body>
</html>
|