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

Side by Side Diff: LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom.html

Issue 371413004: Fix for input/datalist failure when datalist is created outside document (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
(Empty)
1 <!DOCTYPE html>
2
3 <template>
4 <input list="lang" value="5">
5 <datalist id="lang">
6 <option value="D">German</option>
7 <option value="E">English</option>
8 </datalist>
9 </template>
10
keishi 2014/07/09 02:04:37 Could we have a description what this test is chec
11 <host></host>
keishi 2014/07/09 02:04:37 This element doesn't seemed to be used in this fil
12
13 <script>
14 var host = document.createElement('host');
15 host.createShadowRoot().appendChild(document.querySelector('template').content.c loneNode(true));
16 document.body.appendChild(host);
17 document.querySelector('host::shadow input').focus();
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698