OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="../../../resources/testharness.js"></script> | |
3 <script src="../../../resources/testharnessreport.js"></script> | |
4 | |
5 <style> | |
6 #bg { | |
7 transition: all 5s; | |
8 transform: none; | |
9 } | |
10 </style> | |
11 <div id="div"></div> | |
12 | |
13 <script> | |
14 div.offsetTop; | |
15 | |
16 test(function() { | |
17 div.style.transform = "translateX(100px)"; | |
18 assert_not_equals(getComputedStyle(div).transform, "translateX(100px)"); | |
19 }, 'Ensure that unprefixed transitions work.'); | |
20 </script> | |
OLD | NEW |