File: blocks-ignore-line-height.html

package info (click to toggle)
firefox-esr 128.14.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,230,248 kB
  • sloc: cpp: 7,104,262; javascript: 6,088,450; ansic: 3,654,017; python: 1,212,326; xml: 594,604; asm: 420,654; java: 182,969; sh: 71,124; makefile: 20,739; perl: 13,449; objc: 12,399; yacc: 4,583; cs: 3,846; pascal: 2,973; lex: 1,720; ruby: 1,194; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (85 lines) | stat: -rw-r--r-- 3,321 bytes parent folder | download | duplicates (22)
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
<!doctype html>
<html>
 <head>
  <title>The blocks ignore line-height quirk</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <style> iframe { width:200px; height:20px; } </style>
 </head>
 <body>
  <div id=log></div>
  <iframe id=quirks></iframe>
  <iframe id=almost></iframe>
  <iframe id=standards></iframe>
  <script>
    setup({explicit_done:true});
    onload = function() {
        var html = "<style id=style></style>";
        var a_doctype = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
        var s_doctype = '<!DOCTYPE HTML>';
        var q = document.getElementById('quirks').contentWindow;
        var a = document.getElementById('almost').contentWindow;
        var s = document.getElementById('standards').contentWindow;
        q.document.open();
        q.document.write(html);
        q.document.close();
        a.document.open();
        a.document.write(a_doctype + html);
        a.document.close();
        s.document.open();
        s.document.write(s_doctype + html);
        s.document.close();
        [q, a, s].forEach(function(win) {
            ['style', 'test', 'ref', 's_ref'].forEach(function(id) {
                Object.getPrototypeOf(win).__defineGetter__(id, function() { return win.document.getElementById(id); });
            });
        });

        var tests = [
        {style:'#ref { display:block }', body:
        '<div id=test><font size=1>x</font></div>'+
        '<font id=ref size=1>x</font>'+
        '<div id=s_ref>x</div>'},

        {style:'#ref { display:block }', body:
        '<div id=test><font size=1>x</font><br><font size=1>x</font></div>'+
        '<font id=ref size=1>x<br>x</font>'+
        '<div id=s_ref>x<br>x</div>'},

        {style:'#ref { display:block }', body:
        '<div id=test><font size=1>foo</font><br><font size=1>foo</font><div>x</div></div>'+
        '<font id=ref size=1>foo<br>foo<br><font size=3>x</font></font>'+
        '<div id=s_ref>x<br>x<br>x</div>'},

        {style:'#ref { display:block } div, #ref { line-height:2 } span { font-size:50% }', body:
        '<div id=test><span>x</span></div>'+
        '<span id=ref>x</span>'+
        '<div id=s_ref>x</div>'},
        ];

        tests.forEach(function(t) {
            test(function() {
                q.style.textContent = t.style;
                a.style.textContent = t.style;
                s.style.textContent = t.style;
                q.document.body.innerHTML = t.body;
                a.document.body.innerHTML = t.body;
                s.document.body.innerHTML = t.body;

                assert_equals(q.getComputedStyle(q.test).height,
                              q.getComputedStyle(q.ref).height,
                              'quirks mode');
                assert_equals(a.getComputedStyle(a.test).height,
                              a.getComputedStyle(a.ref).height,
                              'almost standards mode');
                assert_equals(s.getComputedStyle(s.test).height,
                              s.getComputedStyle(s.s_ref).height,
                              'standards mode');
            }, document.title+', '+t.style+t.body);
        });

        done();
    }
  </script>
 </body>
</html>