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

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

Issue 2023583002: [css-tables] Set ancestor widths dirty when row border width changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove extra id Created 4 years, 6 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-row-border-width-floating-container-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 <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 function shrinkRowBorder() {
13 document.getElementById("row").style.borderWidth = "4px";
14 checkLayout("div");
15 }
16 runAfterLayoutAndPaint(shrinkRowBorder, true);
17 </script>
18 <p>There should be a square below with an internal blue border and external
19 black border. The external black border is around a shrink-to-fit div.</p>
20 <div style="float:left; border: 1px solid black" data-expected-width=60>
21 <table style="border-collapse:collapse" data-expected-width=58 data-expected -height=58>
22 <tr style="border:18px solid lightblue" id="row">
23 <td></td>
24 </tr>
25 </table>
26 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/change-row-border-width-floating-container-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698