OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 | 4 |
5 <style> | 5 <style> |
6 #before:before, | 6 #before:before, |
7 #after:after { | 7 #after:after { |
8 content: ""; | 8 content: ""; |
9 display: block; | 9 display: block; |
10 height: 50px; | 10 height: 50px; |
11 width: 50px; | 11 width: 50px; |
12 top: 50px; | 12 top: 50px; |
13 position: relative; | 13 position: relative; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 onload = function() { | 89 onload = function() { |
90 testTransition('before'); | 90 testTransition('before'); |
91 testTransition('after'); | 91 testTransition('after'); |
92 if (window.internals) | 92 if (window.internals) |
93 isSuccessfullyParsed(); | 93 isSuccessfullyParsed(); |
94 else | 94 else |
95 setTimeout(isSuccessfullyParsed, 2000); | 95 setTimeout(isSuccessfullyParsed, 2000); |
96 }; | 96 }; |
97 </script> | 97 </script> |
OLD | NEW |