Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(454)

Side by Side Diff: LayoutTests/fast/css-generated-content/pseudo-transition-event.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 -webkit-transition: width 1ms; 12 -webkit-transition: width 1ms;
13 transition: width 1ms; 13 transition: width 1ms;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 { 65 {
66 var div = document.getElementById(id); 66 var div = document.getElementById(id);
67 div.className = 'transition'; 67 div.className = 'transition';
68 } 68 }
69 69
70 onload = function() { 70 onload = function() {
71 document.addEventListener( 'transitionend', recordTransitionEvent); 71 document.addEventListener( 'transitionend', recordTransitionEvent);
72 testTransition('before'); 72 testTransition('before');
73 }; 73 };
74 </script> 74 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698