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

Side by Side Diff: LayoutTests/fast/events/mouse-click-events-pseudo-element.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 PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <style> 5 <style>
6 #square { 6 #square {
7 position: relative; 7 position: relative;
8 width: 100px; 8 width: 100px;
9 height: 100px; 9 height: 100px;
10 background: #aaa; 10 background: #aaa;
11 } 11 }
12 12
13 #square:active:after { 13 #square:active:after {
14 content: ""; 14 content: "";
15 display: block; 15 display: block;
16 position: absolute; 16 position: absolute;
17 top: 0; 17 top: 0;
18 bottom: 0; 18 bottom: 0;
19 left: 0; 19 left: 0;
20 right: 0; 20 right: 0;
21 background: #000; 21 background: #000;
22 opacity: 0.25; 22 opacity: 0.25;
23 } 23 }
24 </style> 24 </style>
25 </head> 25 </head>
26 <body> 26 <body>
27 <script src="script-tests/mouse-click-events-pseudo-element.js"></script> 27 <script src="script-tests/mouse-click-events-pseudo-element.js"></script>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/mouse-click-events.html ('k') | LayoutTests/fast/events/mouse-cursor-change.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698