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

Side by Side Diff: LayoutTests/fast/forms/setCustomValidity.html

Issue 48903019: Delete js-test-post.js. (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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 5
6 [name=victim] { 6 [name=victim] {
7 background-color: #0f0; 7 background-color: #0f0;
8 } 8 }
9 9
10 [name=victim]:invalid { 10 [name=victim]:invalid {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 shouldBeEqualToString('test.validationMessage', message); 42 shouldBeEqualToString('test.validationMessage', message);
43 shouldBeEqualToString('getComputedStyle(test).backgroundColor', 'rgb(255, 0, 0)'); 43 shouldBeEqualToString('getComputedStyle(test).backgroundColor', 'rgb(255, 0, 0)');
44 44
45 test.setCustomValidity(''); 45 test.setCustomValidity('');
46 shouldBeFalse('test.validity.customError'); 46 shouldBeFalse('test.validity.customError');
47 shouldBeEqualToString('test.validationMessage', ''); 47 shouldBeEqualToString('test.validationMessage', '');
48 shouldBeEqualToString('getComputedStyle(test).backgroundColor', 'rgb(0, 255, 0)'); 48 shouldBeEqualToString('getComputedStyle(test).backgroundColor', 'rgb(0, 255, 0)');
49 } 49 }
50 50
51 </script> 51 </script>
52 <script src="../js/resources/js-test-post.js"></script>
53 </body> 52 </body>
54 </html> 53 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/selection-wrongtype.html ('k') | LayoutTests/fast/forms/setCustomValidity-existence.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698