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

Unified Diff: LayoutTests/fast/table/crash-col-in-anonymous-table.html

Issue 131993002: Stop infinite recursion when generating anonymous table boxes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update baseline too Created 6 years, 11 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 | « no previous file | LayoutTests/fast/table/crash-col-in-anonymous-table-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/crash-col-in-anonymous-table.html
diff --git a/LayoutTests/fast/table/crash-col-in-anonymous-table.html b/LayoutTests/fast/table/crash-col-in-anonymous-table.html
new file mode 100644
index 0000000000000000000000000000000000000000..fb6a06d186779a48ca0ed709c8dfefd8a609908c
--- /dev/null
+++ b/LayoutTests/fast/table/crash-col-in-anonymous-table.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+
+ function crash() {
+ var th = document.createElement("th");
+ var col = document.createElement("col");
+
+ document.body.appendChild(th);
+ document.body.appendChild(col);
+ }
+</script>
+</head>
+<body onload="crash();">
+<div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=330651">330651</a>: infinite recursion when creating anonymous table structure</div>
+<div>This test passes if it does not CRASH or HANG.</div>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/table/crash-col-in-anonymous-table-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698