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

Side by Side Diff: LayoutTests/fast/forms/formnovalidate-attribute.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 PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../fast/js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script> 9 <script>
10 description("This test performs some simple check on the formnovalidate attribut e."); 10 description("This test performs some simple check on the formnovalidate attribut e.");
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 shouldBe("b.getAttribute('formNoValidate')", "null"); 42 shouldBe("b.getAttribute('formNoValidate')", "null");
43 shouldBe("b.formNoValidate", "false"); 43 shouldBe("b.formNoValidate", "false");
44 44
45 i2.formNoValidate = false; 45 i2.formNoValidate = false;
46 shouldBe("i2.formNoValidate", "false"); 46 shouldBe("i2.formNoValidate", "false");
47 i2.formNoValidate = "something"; 47 i2.formNoValidate = "something";
48 shouldBe("i2.hasAttribute('formNoValidate')", "true"); 48 shouldBe("i2.hasAttribute('formNoValidate')", "true");
49 shouldBe("i2.getAttribute('formNoValidate')", "''"); 49 shouldBe("i2.getAttribute('formNoValidate')", "''");
50 shouldBe("i2.formNoValidate", "true"); 50 shouldBe("i2.formNoValidate", "true");
51 </script> 51 </script>
52 <script src="../../fast/js/resources/js-test-post.js"></script>
53 </body> 52 </body>
54 </html> 53 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/formmethod-attribute-test.html ('k') | LayoutTests/fast/forms/hidden/hidden-setrangetext.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698