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

Side by Side Diff: LayoutTests/fast/dom/HTMLButtonElement/change-type.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 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../../js/resources/js-test-pre.js"></script> 5 <script src="../../../resources/js-test.js"></script>
6 </head> 6 </head>
7 <body onload="runTests()"> 7 <body onload="runTests()">
8 <script> 8 <script>
9 9
10 description("Tests for <a href=\"https://bugs.webkit.org/show_bug.cgi?id=14439\" > \ 10 description("Tests for <a href=\"https://bugs.webkit.org/show_bug.cgi?id=14439\" > \
11 bug 14439</a>. Button type should be set using el.type."); 11 bug 14439</a>. Button type should be set using el.type.");
12 12
13 var didSubmit = false; 13 var didSubmit = false;
14 var btn; 14 var btn;
15 var txt; 15 var txt;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 } else 105 } else
106 finishJSTest(); 106 finishJSTest();
107 } 107 }
108 </script> 108 </script>
109 <form id="f" action="#submitted" onsubmit="formWasSubmitted();"> 109 <form id="f" action="#submitted" onsubmit="formWasSubmitted();">
110 <input id="t" type="text" /> 110 <input id="t" type="text" />
111 <button id="b"></button> 111 <button id="b"></button>
112 </form> 112 </form>
113 </body> 113 </body>
114 </html> 114 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698