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

Side by Side Diff: LayoutTests/fast/css-generated-content/pseudo-transition.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 top: 50px; 12 top: 50px;
13 position: relative; 13 position: relative;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698