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

Side by Side Diff: LayoutTests/editing/selection/user-select-all-parsing.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 <head> 2 <head>
3 <style> 3 <style>
4 .userSelectAll {-webkit-user-select: all;} 4 .userSelectAll {-webkit-user-select: all;}
5 </style> 5 </style>
6 <script src="../../fast/js/resources/js-test-pre.js"></script> 6 <script src="../../resources/js-test.js"></script>
7 </head> 7 </head>
8 <body contentEditable="true"> 8 <body contentEditable="true">
9 <div class="userSelectAll" id ="allArea"> 9 <div class="userSelectAll" id ="allArea">
10 this is text of -webkit-user-select all 10 this is text of -webkit-user-select all
11 </div> 11 </div>
12 <div id="console"></div> 12 <div id="console"></div>
13 13
14 <script> 14 <script>
15 description("Test for Parsing new value all for -webkit-user-select" ); 15 description("Test for Parsing new value all for -webkit-user-select" );
16 var userSelect = document.defaultView.getComputedStyle(document.getE lementById("allArea"),null); 16 var userSelect = document.defaultView.getComputedStyle(document.getE lementById("allArea"),null);
17 shouldBeEqualToString('userSelect.getPropertyValue("-webkit-user-sel ect")', 'all'); 17 shouldBeEqualToString('userSelect.getPropertyValue("-webkit-user-sel ect")', 'all');
18 </script> 18 </script>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW
« no previous file with comments | « LayoutTests/editing/selection/stay-in-textarea.html ('k') | LayoutTests/editing/selection/user-select-all-selection.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698