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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/remove-cell-with-large-border-width.html

Issue 2173163003: [css-tables] Mark sibling cells dirty when a cell is removed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark fast/repaint/table-collapsed-border.html NeedsRebaseline 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/table/remove-cell-with-large-border-width.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/remove-cell-with-large-border-width.html b/third_party/WebKit/LayoutTests/fast/table/remove-cell-with-large-border-width.html
new file mode 100644
index 0000000000000000000000000000000000000000..d2cf7a7afdf271cdacd531ac01b86c3de2ca10d1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/remove-cell-with-large-border-width.html
@@ -0,0 +1,26 @@
+<!doctype html>
+<style>
+ td {
+ width: 50px;
+ height: 50px;
+ padding: 0px;
+ background: lime;
+ }
+</style>
+<script src="../../resources/check-layout.js"></script>
+<script src="../../resources/run-after-layout-and-paint.js"></script>
+<script type="text/javascript">
+ function removeMiddleCell() {
+ theRow.removeChild(cellToRemove);
+ checkLayout("table");
+ }
+ runAfterLayoutAndPaint(removeMiddleCell, true);
+</script>
+<p>After removing the middle cell with the red border the 2 remaining cells' widths should depend on sharing the black border, and not have stale widths from sharing the red border.</p>
+<table style="border-collapse:collapse" data-expected-width=108>
+ <tr id="theRow">
+ <td style="border:4px solid black" data-expected-width=54></td>
+ <td style="border:18px solid red" id="cellToRemove"></td>
+ <td data-expected-width=52></td>
+ </tr>
+</table>

Powered by Google App Engine
This is Rietveld 408576698