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

Side by Side 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: address nit 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7
8 function crash() {
9 var th = document.createElement("th");
10 var col = document.createElement("col");
11
12 document.body.appendChild(th);
13 document.body.appendChild(col);
14 }
15 </script>
16 </head>
17 <body onload="crash();">
18 <div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=330651">330651</a>: in finite recursion when creating anonymous table structure</div>
19 <div>This test passes if it does not CRASH or HANG.</div>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698