File: span-limits.html

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (107 lines) | stat: -rw-r--r-- 3,462 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<title>Limits on colSpan/rowSpan</title>
<meta name="timeout" content="long">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>

<table border=1>
  <tr><td colspan=500>a<td colspan=500 id=a1>a
  <!-- This cell must span the previous two -->
  <tr><td colspan=1000 id=a2>a
</table>

<table border=1>
  <tr><td colspan=1000 id=b1>a<td>a
  <!-- This cell must span only the first cell in the previous row -->
  <tr><td colspan=1001 id=b2>a
</table>

<table border=1 style="float:left">
  <!-- The first column must go all the way down to the bottom -->
  <tr><td rowspan=65534 id=c1>a<td>
  <!-- We'll add another 65533 rows later -->
</table>

<table border=1>
  <!-- The first column must go one cell below the bottom -->
  <tr><td rowspan=65535 id=d1>a<td>
  <!-- We'll add another 65534 rows later -->
</table>

<table>
    <tr>
        <td id="rowspan-limit-test1" rowspan=5></td>
        <td id="rowspan-limit-test2" rowspan=0></td>
        <td id="rowspan-limit-test3" rowspan=1000></td>
        <td id="rowspan-limit-test4" rowspan=65534></td>
        <td id="rowspan-limit-test5" rowspan=65535></td>
        <td id="rowspan-limit-test6" rowspan=5555555></td>
    </tr>
</table>

<script>
var $ = document.querySelector.bind(document);

test(() => {
    assert_equals($("#a2").getBoundingClientRect().right,
                  $("#a1").getBoundingClientRect().right);
}, "colspan of 1000 must work");

test(() => {
    assert_equals($("#b2").getBoundingClientRect().right,
                  $("#b1").getBoundingClientRect().right);
}, "colspan of 1001 must be treated as 1000");

test(() => {
    var s = "";
    for (var i = 0; i < 65532; i++) {
      s += "<tr><td>";
    }
    s += "<tr><td id=c2>";
    document.querySelectorAll("table")[2].firstElementChild.innerHTML += s;
    assert_equals($("#c1").getBoundingClientRect().bottom,
                  $("#c2").getBoundingClientRect().bottom);
}, "rowspan of 65534 must work");

test(() => {
    var s = "";
    for (var i = 0; i < 65532; i++) {
      s += "<tr><td>";
    }
    s += "<tr><td id=d2><tr><td>a<td>";
    document.querySelectorAll("table")[3].firstElementChild.innerHTML += s;
    assert_equals($("#d1").getBoundingClientRect().bottom,
                  $("#d2").getBoundingClientRect().bottom);
}, "rowspan of 65535 must be treated as 65534");

test(() => {
    let td = document.createElement("td");
    td.rowSpan = 5;
    assert_equals(td.rowSpan, 5);

    td.rowSpan = 0;
    assert_equals(td.rowSpan, 0);

    td.rowSpan = 1000;
    assert_equals(td.rowSpan, 1000);

    td.rowSpan = 65534;
    assert_equals(td.rowSpan, 65534);

    td.rowSpan = 65535;
    assert_equals(td.rowSpan, 65534);

    td.rowSpan = 555555;
    assert_equals(td.rowSpan, 65534);
}, "rowspan must be clamped to [0, 65534] when set via script");

test(() => {
    assert_equals(document.getElementById("rowspan-limit-test1").rowSpan, 5);
    assert_equals(document.getElementById("rowspan-limit-test2").rowSpan, 0);
    assert_equals(document.getElementById("rowspan-limit-test3").rowSpan, 1000);
    assert_equals(document.getElementById("rowspan-limit-test4").rowSpan, 65534);
    assert_equals(document.getElementById("rowspan-limit-test5").rowSpan, 65534);
    assert_equals(document.getElementById("rowspan-limit-test6").rowSpan, 65534);
}, "rowspan must be clamped to [0, 65534] when parsing attributes");
</script>