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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/crash-section-logical-height-changed-needsCellRecalc.html
===================================================================
--- LayoutTests/fast/table/crash-section-logical-height-changed-needsCellRecalc.html (revision 105823)
+++ LayoutTests/fast/table/crash-section-logical-height-changed-needsCellRecalc.html (working copy)
@@ -1,53 +0,0 @@
-<style>
-.c3 { position: fixed; }
-.c12:first-letter { visibility: inherit; }
-.c12 { -webkit-appearance: button; }
-.c13 { display: table-row; }
-.c13:nth-last-child(odd) { height: 80%; }
-</style>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-function boom() {
- var quote = document.createElement('q');
- document.documentElement.appendChild(quote);
-
- base = document.createElement('base');
- base2 = document.createElement('base');
- base2.setAttribute('class', 'c3');
- quote.appendChild(base2);
-
- var ins = document.createElement('ins');
- base2.appendChild(ins);
-
- var sub = document.createElement('sub');
- var quote3 = document.createElement('q');
- quote3.setAttribute('class', 'c12');
- sub.appendChild(quote3);
-
- figureRow = document.createElement('figure');
- figureRow.setAttribute('class', 'c13');
- document.documentElement.appendChild(figureRow);
-
- var col = document.createElement('col');
- col.setAttribute('class', 'c13');
- document.documentElement.appendChild(col);
-
- var select = document.createElement('select');
- document.documentElement.appendChild(select);
-
- code = document.createElement('code');
- document.documentElement.appendChild(code);
-
- quote2 = document.createElement('q');
- setTimeout('quote2.appendChild(code);', 321);
- ins.appendChild(sub);
- setTimeout('base.appendChild(figureRow);', 251);
- text = document.createTextNode('-1435037881');
- setTimeout('figureRow.appendChild(text);', 206);
-}
-window.onload = boom;
-</script>
-<p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=76842">76842</a>: Crash in WebCore::RenderTableSection::rowLogicalHeightChanged</p>
-<p>This test passes if it does not crash nor ASSERT.</p>
« 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