forked from mirrors/gecko-dev
Automatic update from web-platform-tests WebKit export of https://bugs.webkit.org/show_bug.cgi?id=260255 (#42577) -- wpt-commits: efd2c5fade72fb07176e6db7c33fd86d3088e23d wpt-pr: 42577
24 lines
No EOL
415 B
HTML
24 lines
No EOL
415 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Animating both the "scale" and "rotate" property</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-transforms-2/#individual-transforms">
|
|
|
|
<style>
|
|
|
|
#target {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: black;
|
|
|
|
transform-origin: bottom left;
|
|
rotate: 90deg;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="target"></div>
|
|
</body>
|
|
</html> |