Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Side by Side Diff: LayoutTests/fast/table/crash-section-logical-height-changed-needsCellRecalc.html

Issue 9271032: Revert 105795 - Merge 105685 - Crash in WebCore::RenderTableSection::rowLogicalHeightChanged (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/table/crash-section-logical-height-changed-needsCellRecalc-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <style>
2 .c3 { position: fixed; }
3 .c12:first-letter { visibility: inherit; }
4 .c12 { -webkit-appearance: button; }
5 .c13 { display: table-row; }
6 .c13:nth-last-child(odd) { height: 80%; }
7 </style>
8 <script>
9 if (window.layoutTestController)
10 layoutTestController.dumpAsText();
11
12 function boom() {
13 var quote = document.createElement('q');
14 document.documentElement.appendChild(quote);
15
16 base = document.createElement('base');
17 base2 = document.createElement('base');
18 base2.setAttribute('class', 'c3');
19 quote.appendChild(base2);
20
21 var ins = document.createElement('ins');
22 base2.appendChild(ins);
23
24 var sub = document.createElement('sub');
25 var quote3 = document.createElement('q');
26 quote3.setAttribute('class', 'c12');
27 sub.appendChild(quote3);
28
29 figureRow = document.createElement('figure');
30 figureRow.setAttribute('class', 'c13');
31 document.documentElement.appendChild(figureRow);
32
33 var col = document.createElement('col');
34 col.setAttribute('class', 'c13');
35 document.documentElement.appendChild(col);
36
37 var select = document.createElement('select');
38 document.documentElement.appendChild(select);
39
40 code = document.createElement('code');
41 document.documentElement.appendChild(code);
42
43 quote2 = document.createElement('q');
44 setTimeout('quote2.appendChild(code);', 321);
45 ins.appendChild(sub);
46 setTimeout('base.appendChild(figureRow);', 251);
47 text = document.createTextNode('-1435037881');
48 setTimeout('figureRow.appendChild(text);', 206);
49 }
50 window.onload = boom;
51 </script>
52 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=76842">76842</a>: Crash in WebCore::RenderTableSection::rowLogicalHeightChanged</p>
53 <p>This test passes if it does not crash nor ASSERT.</p>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/table/crash-section-logical-height-changed-needsCellRecalc-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698