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

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

Issue 1952133006: [css-tables] Set table and cell widths dirty when row border width changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 4 years, 7 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
OLDNEW
(Empty)
1 <!doctype html>
2 <style>
3 td {
4 width: 50px;
5 height: 50px;
6 padding: 0px;
7 }
8 </style>
9 <script src="../../resources/check-layout.js"></script>
10 <script src="../../resources/run-after-layout-and-paint.js"></script>
11 <script type="text/javascript">
12 runAfterLayoutAndPaint(function() {
13 document.getElementById("row").style.borderWidth = "4px";
14 checkLayout("table");
15 }, true);
16 </script>
17 There should be a square with a 4px blue border.
18 <table style="border-collapse:collapse" data-expected-width=58 data-expected-hei ght=58>
19 <tr style="border:18px solid lightblue" id="row">
20 <td />
21 </tr>
22 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698