зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
469 B
HTML
21 строка
469 B
HTML
<!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>
|