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

Side by Side Diff: third_party/WebKit/LayoutTests/shadow-dom/focus-navigation-with-delegatesFocus.html

Issue 1774113002: Move Shadow DOM V1 tests from fast/dom/shadow to shadow-dom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 9 months 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../resources/js-test.js"></script>
5 <script src="resources/shadow-dom.js"></script> 5 <script src="../fast/dom/shadow/resources/shadow-dom.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <p>This tests TAB focus navigation with delegatesFocus flag on shadow hosts</p> 8 <p>This tests TAB focus navigation with delegatesFocus flag on shadow hosts</p>
9 <pre id="console"></pre> 9 <pre id="console"></pre>
10 <div id="sandbox"></div> 10 <div id="sandbox"></div>
11 <script> 11 <script>
12 function prepareDOMTree(parent, mode, tabindex, delegatesFocus) { 12 function prepareDOMTree(parent, mode, tabindex, delegatesFocus) {
13 parent.innerHTML = ''; 13 parent.innerHTML = '';
14 parent.appendChild( 14 parent.appendChild(
15 createDOM('div', {'id': 'testform'}, 15 createDOM('div', {'id': 'testform'},
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 208
209 test(); 209 test();
210 210
211 debug('Test finished.'); 211 debug('Test finished.');
212 } 212 }
213 213
214 run_tests(); 214 run_tests();
215 </script> 215 </script>
216 </body> 216 </body>
217 </html> 217 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698