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

Side by Side Diff: LayoutTests/fast/dom/tabindex-defaults.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 <div id="container"> 7 <div id="container">
8 <!-- Focusable elements --> 8 <!-- Focusable elements -->
9 <a id="anchor" href="tabindex-defaults.html">anchor</a> 9 <a id="anchor" href="tabindex-defaults.html">anchor</a>
10 <button id="button">button</button> 10 <button id="button">button</button>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 shouldBe('anchor.setAttribute("tabindex", "9999999999"); anchor.tabIndex', '0'); 47 shouldBe('anchor.setAttribute("tabindex", "9999999999"); anchor.tabIndex', '0');
48 shouldBe('button.setAttribute("tabindex", "9999999999"); button.tabIndex', '0'); 48 shouldBe('button.setAttribute("tabindex", "9999999999"); button.tabIndex', '0');
49 shouldBe('input.setAttribute("tabindex", "9999999999"); input.tabIndex', '0'); 49 shouldBe('input.setAttribute("tabindex", "9999999999"); input.tabIndex', '0');
50 shouldBe('select.setAttribute("tabindex", "9999999999"); select.tabIndex', '0'); 50 shouldBe('select.setAttribute("tabindex", "9999999999"); select.tabIndex', '0');
51 shouldBe('textarea.setAttribute("tabindex", "9999999999"); textarea.tabIndex', ' 0'); 51 shouldBe('textarea.setAttribute("tabindex", "9999999999"); textarea.tabIndex', ' 0');
52 shouldBe('editableDiv.setAttribute("tabindex", "9999999999"); editableDiv.tabInd ex', '0'); 52 shouldBe('editableDiv.setAttribute("tabindex", "9999999999"); editableDiv.tabInd ex', '0');
53 shouldBe('normalDiv.setAttribute("tabindex", "9999999999"); normalDiv.tabIndex', '-1'); 53 shouldBe('normalDiv.setAttribute("tabindex", "9999999999"); normalDiv.tabIndex', '-1');
54 54
55 document.getElementById('container').innerHTML = ''; 55 document.getElementById('container').innerHTML = '';
56 </script> 56 </script>
57 <script src="../js/resources/js-test-post.js"></script>
58 </body> 57 </body>
59 </html> 58 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/subtree-modified-attributes.html ('k') | LayoutTests/fast/dom/text-api-arguments.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698