Bug 1225236 - Removed the 360 value limit for the hue-rotate field in the CSS filter popup. r=pbro

--HG--
extra : rebase_source : 60a53480c7820c034fc7461c0264804cae7b9337
This commit is contained in:
Nicolas Chevobbe 2015-12-04 22:26:15 +01:00
Родитель bdfed80664
Коммит dcba7ec582
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -42,6 +42,16 @@ add_task(function*() {
} }
] ]
}, },
{
cssValue: "hue-rotate(420.2deg)",
expected: [
{
label: "hue-rotate",
value: "420.2",
unit: "deg"
}
]
},
{ {
cssValue: "url(example.svg)", cssValue: "url(example.svg)",
expected: [ expected: [

Просмотреть файл

@ -68,7 +68,7 @@ const filterList = [
}, },
{ {
"name": "hue-rotate", "name": "hue-rotate",
"range": [0, 360], "range": [0, Infinity],
"type": "angle" "type": "angle"
}, },
{ {