OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="resources/polyfill.js"></script> | |
5 <style> | 4 <style> |
6 .box { | 5 .box { |
7 height: 100px; | 6 height: 100px; |
8 width: 100px; | 7 width: 100px; |
9 margin: 10px; | 8 margin: 10px; |
10 background-color: gray; | 9 background-color: gray; |
11 } | 10 } |
12 | 11 |
13 #box { | 12 #box { |
14 opacity: 1; | 13 opacity: 1; |
(...skipping 29 matching lines...) Expand all Loading... |
44 <!-- If this test pass, css transition will be started and --> | 43 <!-- If this test pass, css transition will be started and --> |
45 <!-- the css transition will be paused by using pauseTransitionAtTimeOnEleme
nt. --> | 44 <!-- the css transition will be paused by using pauseTransitionAtTimeOnEleme
nt. --> |
46 <div id="box" class="box" style="background: green;"> | 45 <div id="box" class="box" style="background: green;"> |
47 <div>Content</div> | 46 <div>Content</div> |
48 <div>New Content</div> | 47 <div>New Content</div> |
49 </div> | 48 </div> |
50 | 49 |
51 <div id="result"></div> | 50 <div id="result"></div> |
52 </body> | 51 </body> |
53 </html> | 52 </html> |
OLD | NEW |