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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/large-col-span-crash.html

Issue 2518163002: [css-tables] Fix divide-by-zero resulting from 32-bit overflow (Closed)
Patch Set: update wpt -expected.txt and span-attribute.html but not -expected.txt Created 4 years 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 table {
4 width: 100px;
5 table-layout: fixed;
6 height: 100px;
7 background: lime;
8 }
9 </style>
10 <script src="../../resources/testharness.js"></script>
11 <script src="../../resources/testharnessreport.js"></script>
12 <script src="../../resources/check-layout-th.js"></script>
13 <table data-expected-width=100 data-expected-height=100>
14 <col span="4294967295">
15 <col>
16 </table>
17 <script>checkLayout("table");</script>
18 Pass if no crash, ensured by the checkLayout.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698