5 #test1 { -webkit-column-count:
2; }
6 #test4 { -webkit-column-span: all; }
10 testRunner
.dumpAsText();
12 window
.onload = function() {
13 test1
= document
.createElement('div');
14 test1
.setAttribute('id', 'test1');
15 document
.body
.appendChild(test1
);
16 test2
= document
.createElement('div');
17 test3
= document
.createElement('div');
18 test1
.appendChild(test2
);
19 test1
.appendChild(test3
);
20 test4
= document
.createElement('div');
21 test4
.setAttribute('id', 'test4');
22 test1
.appendChild(test4
);
23 test4
.style
.display
= 'table-footer-group';
24 document
.body
.offsetTop
25 test3
.style
.display
= 'table-row';
26 document
.body
.offsetTop
;
27 test3
.style
.display
= 'table-column-group';
28 document
.body
.offsetTop
;
29 test3
.style
.display
= 'table-row';
30 document
.body
.offsetTop
;
31 test2
.style
.display
= 'inline';
36 Test passes if it does not crash.