Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / computeLogicalWidth-table-needsSectionRecalc.html
blob59782ff77a275e9e42fdfee5eda13f230b39949b
1 <html>
2 <head>
3 <style>
4 #el0 {
5 border-collapse: collapse;
6 width: 1;
7 height: 1;
9 #el1 {
10 width: 1;
11 float: left;
12 display: table;
14 #el2 {
15 content: counter(c);
16 display: table-footer-group;
18 </style>
19 <script>
20 if (window.testRunner) {
21 testRunner.dumpAsText();
22 testRunner.waitUntilDone();
25 function crash() {
26 el0 = document.createElement('div');
27 el0.setAttribute('id', 'el0');
28 document.body.appendChild(el0);
29 el1 = document.createElement('div');
30 el1.setAttribute('id', 'el1');
31 el0.appendChild(el1);
32 el2 = document.createElement('div');
33 el2.setAttribute('id', 'el2');
34 el1.appendChild(el2);
35 setTimeout(function() {
36 document.body.offsetTop;
37 document.body.style.zoom*=1.1;
38 document.designMode='on';
39 document.execCommand("selectall");
40 document.execCommand("italic");
42 document.body.innerHTML = "Bug 74026: Crash in LayoutTable::outerBorderAfter<br>This test has PASSED!";
44 if (window.testRunner)
45 testRunner.notifyDone();
46 }, 0);
48 window.onload=crash
49 </script>
50 </head>
51 <body>
52 </body>
53 </html>