mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
20 lines
469 B
HTML
20 lines
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>
|