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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/change-tbody-border-width-crash.html

Issue 2146163005: [css-tables] Don't use internal layout structure when iterating all rows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | third_party/WebKit/LayoutTests/fast/table/change-tbody-border-width-crash-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 <!doctype html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6
7 runAfterLayoutAndPaint(
8 function () {
9 theTbody.removeChild(row1);
10 theTbody.style.border = "solid 10px blue";
11 }, true /* autoNotifyDone */);
12 </script>
13 <table style="border-collapse: collapse">
14 <tbody id=theTbody>
15 <tr id=row1><td>Some text</td></tr>
16 </tbody>
17 </table>
18 <p>There was a crash when a row was removed and the border of a section was chan ged without an intervening CellRecalc.</p>
19 <p>No crash == pass</p>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/change-tbody-border-width-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698