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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/fixed-table-layout-large-colspan-crash.html
===================================================================
--- LayoutTests/fast/table/fixed-table-layout-large-colspan-crash.html (revision 0)
+++ LayoutTests/fast/table/fixed-table-layout-large-colspan-crash.html (revision 48057)
@@ -0,0 +1,26 @@
+<html>
+<head>
+<style type="text/css">
+table {
+ table-layout: fixed;
+ width: 15px;
+}
+</style>
+<script>
+if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+
+function finish() {
+ document.getElementById("result").innerHTML = "PASS";
+}
+</script>
+</head>
+<body onload="finish()">
+<p>Tests that large colspan in a fixed table layout does not result in crash.</p>
+<div id=result></div>
+<table>
+<td colspan="1923138113">
+</td>
+</table>
+</body>
+</html>
« 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