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

Side by Side Diff: LayoutTests/fast/speech/speech-style-on-non-speech-elements.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 .speechButton { 6 .speechButton {
7 -webkit-appearance: -webkit-input-speech-button; 7 -webkit-appearance: -webkit-input-speech-button;
8 } 8 }
9 </style> 9 </style>
10 </head> 10 </head>
11 <body> 11 <body>
12 12
13 <!-- Test a few HTML elements with the speech button style to check that they do n't result in a crash. --> 13 <!-- Test a few HTML elements with the speech button style to check that they do n't result in a crash. -->
14 <div class='speechButton'>Test</div> 14 <div class='speechButton'>Test</div>
15 <p class='speechButton'>Test</p> 15 <p class='speechButton'>Test</p>
16 <span class='speechButton'>Test</span> 16 <span class='speechButton'>Test</span>
17 <button class='speechButton'>Test</button> 17 <button class='speechButton'>Test</button>
18 18
19 <script type="text/javascript"> 19 <script type="text/javascript">
20 description('Test for speech button style applied on non-input elements.'); 20 description('Test for speech button style applied on non-input elements.');
21 </script> 21 </script>
22 22
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698