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

Side by Side Diff: LayoutTests/fast/table/fixed-table-layout-large-colspan-crash.html

Issue 2171002: Merge 59495 - 20100514 Abhishek Arya <inferno@chromium.org>... (Closed) Base URL: svn://chrome-svn/chrome/branches/WebKit/375/
Patch Set: Created 10 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style type="text/css">
4 table {
5 table-layout: fixed;
6 width: 15px;
7 }
8 </style>
9 <script>
10 if (window.layoutTestController)
11 layoutTestController.dumpAsText();
12
13 function finish() {
14 document.getElementById("result").innerHTML = "PASS";
15 }
16 </script>
17 </head>
18 <body onload="finish()">
19 <p>Tests that large colspan in a fixed table layout does not result in crash.</p >
20 <div id=result></div>
21 <table>
22 <td colspan="1923138113">
23 </td>
24 </table>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/ChangeLog ('k') | LayoutTests/fast/table/fixed-table-layout-large-colspan-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698