summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/quirks/unitless-length/support/common.js
blob: f2f7eab4e33858b571344940c67de9b50e18e119 (plain)
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
setup({explicit_done:true});
onload = function() {
    setupIframe();

    var tests = [
    {input:"1", q:"1px"},
    {input:"+1", q:"1px"},
    {input:"-1", q:"-1px"},
    {input:"1.5", q:"1.5px"},
    {input:"+1.5", q:"1.5px"},
    {input:"-1.5", q:"-1.5px"},
    {input:"\\31 "},
    {input:"+\\31 "},
    {input:"-\\31 "},
    {input:"\\31 .5"},
    {input:"+\\31 .5"},
    {input:"-\\31 .5"},
    {input:"1\\31 "},
    {input:"+1\\31 "},
    {input:"-1\\31 "},
    {input:"1\\31 .5"},
    {input:"+1\\31 .5"},
    {input:"-1\\31 .5"},
    {input:"a"},
    {input:"A"},
    {input:"1a"},
    {input:"+1a"},
    {input:"-1a"},
    {input:"+1A"},
    {input:"-1A"},
    {input:"+a"},
    {input:"-a"},
    {input:"+A"},
    {input:"-A"},
    {input:"@a"},
    {input:"@1"},
    {input:"@1a"},
    {input:'"a"'},
    {input:'"1"'},
    {input:'"1a"'},
    {input:"url(1)"},
    {input:"url('1')"},
    {input:"#1"},
    {input:"#01"},
    {input:"#001"},
    {input:"#0001"},
    {input:"#00001"},
    {input:"#000001"},
    {input:"+/**/1"},
    {input:"-/**/1"},
    {input:"calc(1)"},
    {input:"calc(2 * 2px)", q:"4px", s:"4px"},
    {input:"1px 2", q:"1px 2px", shorthand:true},
    {input:"1 2px", q:"1px 2px", shorthand:true},
    {input:"1px calc(2)", shorthand:true},
    {input:"calc(1) 2px", shorthand:true},
    {input:"1 +2", q:"1px 2px", shorthand:true},
    {input:"1 -2", q:"1px -2px", shorthand:true},
    ];

    var props = [
    {prop:'background-position', check:'background-position', check_also:[]},
    {prop:'border-spacing', check:'border-spacing', check_also:[]},
    {prop:'border-top-width', check:'border-top-width'},
    {prop:'border-right-width', check:'border-right-width'},
    {prop:'border-bottom-width', check:'border-bottom-width'},
    {prop:'border-left-width', check:'border-left-width'},
    {prop:'border-width', check:'border-top-width', check_also:['border-right-width', 'border-bottom-width', 'border-left-width']},
    {prop:'bottom', check:'bottom'},
    {prop:'clip', check:'clip'},
    {prop:'font-size', check:'font-size'},
    {prop:'height', check:'height'},
    {prop:'left', check:'left'},
    {prop:'letter-spacing', check:'letter-spacing'},
    {prop:'margin-right', check:'margin-right'},
    {prop:'margin-left', check:'margin-left'},
    {prop:'margin-top', check:'margin-top'},
    {prop:'margin-bottom', check:'margin-bottom'},
    {prop:'margin', check:'margin-top', check_also:['margin-right', 'margin-bottom', 'margin-left']},
    {prop:'max-height', check:'max-height'},
    {prop:'max-width', check:'max-width'},
    {prop:'min-height', check:'min-height'},
    {prop:'min-width', check:'min-width'},
    {prop:'padding-top', check:'padding-top'},
    {prop:'padding-right', check:'padding-right'},
    {prop:'padding-bottom', check:'padding-bottom'},
    {prop:'padding-left', check:'padding-left'},
    {prop:'padding', check:'padding-top', check_also:['padding-right', 'padding-bottom', 'padding-left']},
    {prop:'right', check:'right'},
    {prop:'text-indent', check:'text-indent'},
    {prop:'top', check:'top'},
    {prop:'vertical-align', check:'vertical-align'},
    {prop:'width', check:'width'},
    {prop:'word-spacing', check:'word-spacing'},
    ];
    var style_template = '#test{border-style:solid;position:relative;{prop}:{test};}' +
                         '#ref{border-style:solid;position:relative;{prop}:{ref};}';

    tests.forEach(function(t) {
        for (var i in props) {
            if (t.shorthand && !(props[i].check_also)) {
                continue;
            }
            test(function() {
                win.style.textContent = style_template.replace('{test}', t.input)
                            .replace('{ref}', quirks ? t.q : t.s).replace(/\{prop\}/g, props[i].prop)
                            .replace(/clip:[^;]+/g, function(match) {
                                return 'clip:rect(auto, auto, auto, ' + match.substr(5) + ')';
                            });
                assert_equals(win.getComputedStyle(win.test).getPropertyValue(props[i].check),
                              win.getComputedStyle(win.ref).getPropertyValue(props[i].check),
                              props[i].prop);
                if (t.shorthand && props[i].check_also) {
                    for (var j in props[i].check_also) {
                        assert_equals(win.getComputedStyle(win.test).getPropertyValue(props[i].check_also[j]),
                                      win.getComputedStyle(win.ref).getPropertyValue(props[i].check_also[j]),
                                      props[i].prop + ', checking ' + props[i].check_also[j]);
                    }
                }
            }, props[i].prop + ": " + t.input);

        }
    });

    if (quirks) {
        var other_tests = [
        {input:'background:1 1', prop:'background-position'},
        {input:'border-top:red solid 1', prop:'border-top-width'},
        {input:'border-right:red solid 1', prop:'border-right-width'},
        {input:'border-bottom:red solid 1', prop:'border-bottom-width'},
        {input:'border-left:red solid 1', prop:'border-left-width'},
        {input:'border:red solid 1', prop:'border-top-width'},
        {input:'font:normal normal normal 40 sans-serif', prop:'font-size'},
        {input:'outline:red solid 1', prop:'outline-width'},
        {input:'outline-width:1', prop:'outline-width'},
        ];

        var other_template = "#test{position:relative;outline-style:solid;{test}}" +
                             "#ref{outline-style:solid}";

        other_tests.forEach(function(t) {
            test(function() {
                win.style.textContent = other_template.replace('{test}', t.input);
                assert_equals(win.getComputedStyle(win.test).getPropertyValue(t.prop),
                              win.getComputedStyle(win.ref).getPropertyValue(t.prop),
                              'quirk was supported');
            }, 'Excluded property '+t.input);
        });
    }

    done();
}