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

Side by Side Diff: LayoutTests/fast/dom/HTMLKeygenElement/keygen.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 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <keygen id="keys" /> 7 <keygen id="keys" />
8 <pre id="console"> 8 <pre id="console">
9 This tests the keygen element. 9 This tests the keygen element.
10 10
11 </pre> 11 </pre>
12 <script> 12 <script>
13 var keygen = document.getElementById('keys'); 13 var keygen = document.getElementById('keys');
14 shouldBe('keygen.options', 'undefined'); // keygen is not a select 14 shouldBe('keygen.options', 'undefined'); // keygen is not a select
15 15
16 if (window.internals) { 16 if (window.internals) {
17 var shadow = internals.shadowRoot(keygen); 17 var shadow = internals.shadowRoot(keygen);
18 shouldBe('shadow.firstChild.tagName', '"SELECT"'); 18 shouldBe('shadow.firstChild.tagName', '"SELECT"');
19 shouldBe('internals.shadowRoot(shadow.firstChild)', 'null'); 19 shouldBe('internals.shadowRoot(shadow.firstChild)', 'null');
20 } 20 }
21 </script> 21 </script>
22 <script src="../../js/resources/js-test-post.js"></script>
23 </body> 22 </body>
24 </html> 23 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/HTMLIsIndexElement/prototype-chain.html ('k') | LayoutTests/fast/dom/HTMLLabelElement/label-control.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698