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

Side by Side Diff: LayoutTests/fast/table/incorrect-colgroup-span-values.html

Issue 194593005: ASSERTION FAILED: span >= 1 in WebCore::RenderTable::slowColElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 removeSpan() {
9 document.getElementById("colGroup").removeAttribute("span");
10 }
11 </script>
12 </head>
13 <body onload="removeSpan()">
14 <p>This test passes if it does not crash.</p>
Julien - ping for review 2014/03/13 18:29:24 Let's add a description to this test: <p>This tes
15 <table>
16 <colgroup id="colGroup" span="10000000000">
17 <th></th>
18 </colgroup>
19 </table>
20 <table>
21 <colgroup span="0">
22 <th></th>
23 </colgroup>
24 </table>
25 <table>
26 <colgroup span="10000000000">
27 <th></th>
28 </colgroup>
29 </table>
30 <table>
31 <colgroup span="-10000000000">
32 <th></th>
33 </colgroup>
34 </table>
Julien - ping for review 2014/03/13 18:29:24 Missing from the testing: - colgroup span="cheese
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698