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

Side by Side Diff: LayoutTests/fast/css/handling-calc-on-table-as-auto.html

Issue 192603003: ASSERTION FAILED: type() == Percent in WebCore::Length::percent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@extractedstyle
Patch Set: Test update Created 6 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 | LayoutTests/fast/css/handling-calc-on-table-as-auto-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 <html>
3 <head>
4 <script src="../../resources/check-layout.js"></script>
5 </head>
6 <body onload="checkLayout('td, table', output);">
7 <p>Test for handling calc() values on table elements as if they were Auto. Check crbug.com/350852 for details.</p>
8 <div id="output"></div>
9 <table cellpadding="0" cellspacing="0" data-expected-width="100" data-expected-h eight="100">
10 <tr>
11 <td colspan="5" style="width: calc(100% + 100px);" data-expected-width=" 100" data-expected-height="100">
12 <div style="height: 100px; width: 100px"/>
13 </td>
14 </tr>
15 </table>
16
17 <table cellpadding="0" cellspacing="0" style="table-layout:fixed;" data-expected -width="100" data-expected-height="100">
18 <tr>
19 <td colspan="5" style="width: calc(100% + 100px);" data-expected-width=" 100" data-expected-height="100">
20 <div style="height: 100px; width: 100px"/>
21 </td>
22 </tr>
23 </table>
24 </body>
25 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/handling-calc-on-table-as-auto-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698