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

Side by Side Diff: LayoutTests/fast/table/tr-min-content-crash.html

Issue 1160463004: Check if length isSpecified before accessing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/table/tr-min-content-crash-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 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6
7 <style>
8 .min { height: -webkit-min-content; }
9 .max { height: -webkit-max-content; }
10 .fit { height: -webkit-fit-content; }
11 </style>
12
13 <p>Test passes if it does not CRASH in debug.</p>
14 <p>This test is verifying that setting a table rows height to [min|max|fit]-cont ent does not ASSERT. crbug.com/478265.</p>
15
16 <table>
17 <tr class="min"></tr>
18 <tr class="max"></tr>
19 <tr class="fit"></tr>
20 </table>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/table/tr-min-content-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698