-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
css_table.go
57 lines (50 loc) · 1.22 KB
/
css_table.go
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
package compat
type CSSFeature uint32
const (
HexRGBA CSSFeature = 1 << iota
RebeccaPurple
// This feature includes all of the following:
// - Allow floats in rgb() and rgba()
// - hsl() can accept alpha values
// - rgb() can accept alpha values
// - Space-separated functional color notations
Modern_RGB_HSL
)
func (features CSSFeature) Has(feature CSSFeature) bool {
return (features & feature) != 0
}
var cssTable = map[CSSFeature]map[Engine][]int{
// Data from: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value
HexRGBA: {
Chrome: {62},
Edge: {79},
Firefox: {49},
IOS: {9, 3},
Safari: {9, 1},
},
RebeccaPurple: {
Chrome: {38},
Edge: {12},
Firefox: {33},
IOS: {8},
Safari: {9},
},
Modern_RGB_HSL: {
Chrome: {66},
Edge: {79},
Firefox: {52},
IOS: {12, 2},
Safari: {12, 1},
},
}
// Return all features that are not available in at least one environment
func UnsupportedCSSFeatures(constraints map[Engine][]int) (unsupported CSSFeature) {
for feature, engines := range cssTable {
for engine, version := range constraints {
if minVersion, ok := engines[engine]; !ok || isVersionLessThan(version, minVersion) {
unsupported |= feature
}
}
}
return
}