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

Side by Side Diff: LayoutTests/fast/css/calculated-length-as-percent-crash.html

Issue 192603003: ASSERTION FAILED: type() == Percent in WebCore::Length::percent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@extractedstyle
Patch Set: Support for fixed table layouts, test update and comments 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
Julien - ping for review 2014/06/23 17:09:57 Also the test is not checking for a test anymore s
2 <html>
3 <script src="../../resources/check-layout.js"></script>
4 <body onload="checkLayout('td')">
Julien - ping for review 2014/06/23 17:09:23 Let's add a description of what we are testing ple
5 <table>
6 <tr>
7 <td colspan="5" style="width: calc(100% + 100px);" data-expected-wid th="2"/>
Julien - ping for review 2014/06/23 17:09:23 That works because you have no content so it's cor
8 </tr>
9 </table>
10
11 <table style="table-layout:fixed;">
12 <tr>
13 <td colspan="5" style="width: calc(100% + 100px);" data-expected-wid th="2"/>
14 </tr>
15 </table>
16
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698