blob: 20b44d8bfc99386e4925fa236e1ce644d5cb509f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 1290535 - Sort paced subproperties of a shorthand property</title>
<meta charset="UTF-8">
<script>
function test()
{
var div = document.createElement('div');
document.documentElement.appendChild(div);
div.animate([ { borderRadius: "0", borderTopRightRadius: "0" },
{ borderRadius: "50%" } ],
{ spacing:"paced(border-radius)" });
}
</script>
</head>
<body onload="test();"></body>
</html>
|