blob: 8ec14ce09053946f78a016f1f37190814527e82d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<title>HTML root list-item crash during direction-propagation from body</title>
<link rel="help" href="https://crbug.com/1294531">
<style>
html {
display: list-item;
direction: rtl;
}
body {
direction: ltr;
}
div {
display:table-column-group;
column-count: 1;
}
</style>
<p>Pass if no crash.</p>
<div></div>
|