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

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: with layout test Created 4 years, 1 month 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>
mstensho (USE GERRIT) 2016/11/22 07:04:29 Could turn this into a testharness test, to get ri
dgrogan 2016/12/01 21:51:44 Done.
2 <style>
3 table {
4 width: 100px;
5 table-layout: fixed;
6 /* vv just to get a green square vv */
mstensho (USE GERRIT) 2016/11/22 07:04:29 Not so interesting, since this isn't a visual test
dgrogan 2016/12/01 21:51:44 Done.
7 height: 100px;
8 background: lime;
9 }
10 </style>
11 <table>
12 <col span="4294967295">
13 <col>
14 </table>
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 </script>
19 Pass if no crash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698