3 Webkit Bug
86019 - Crash due to floats not removed from first-letter element.
6 .li2:first-letter { float: left; content: counter(section); }
7 .li2:first-of-type { display: -webkit-inline-flexbox; }
10 if (window
.testRunner
)
11 testRunner
.dumpAsText();
14 li1
= document
.createElement('li');
15 document
.documentElement
.appendChild(li1
);
16 keygen1
= document
.createElement('keygen');
17 keygen1
.setAttribute('autofocus', 'autofocus');
18 document
.documentElement
.appendChild(keygen1
);
19 li2
= document
.createElement('li');
20 li2
.setAttribute('class', 'li2');
21 document
.documentElement
.appendChild(li2
);
22 text1
= document
.createTextNode("PASS. WebKit didn't crash.");
23 li2
.appendChild(text1
);
25 window
.onload
= crash
;