blob: 97110dd54e63b29efdda3945f4c376e442176f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<title>Translation animation on important property</title>
<link rel="help" href="https://crbug.com/1324679">
<style>
#target {
width: 100px;
height: 100px;
background: green;
transform: none !important;
}
</style>
<div id="target"></div>
|