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

Side by Side Diff: LayoutTests/fast/css-generated-content/pseudo-element-events.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 div:before { 6 div:before {
7 width: 100px; 7 width: 100px;
8 content: ""; 8 content: "";
9 display: block; 9 display: block;
10 -webkit-transition: width 1ms; 10 -webkit-transition: width 1ms;
11 } 11 }
12 12
13 div { 13 div {
(...skipping 26 matching lines...) Expand all
40 div.addEventListener('webkitTransitionEnd', function(event) { 40 div.addEventListener('webkitTransitionEnd', function(event) {
41 window.event = event; 41 window.event = event;
42 shouldBeEqualToString('event.target.tagName', 'DIV'); 42 shouldBeEqualToString('event.target.tagName', 'DIV');
43 if (event.target == div) { 43 if (event.target == div) {
44 isSuccessfullyParsed(); 44 isSuccessfullyParsed();
45 testRunner.notifyDone(); 45 testRunner.notifyDone();
46 } 46 }
47 }); 47 });
48 } 48 }
49 </script> 49 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698