Chromium Code Reviews| Index: LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom.html |
| diff --git a/LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom.html b/LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9a912e682fea6a3d4aecce5fa55e41bb7490b232 |
| --- /dev/null |
| +++ b/LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom.html |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
| + |
| +<template> |
| + <input list="lang" value="5"> |
| + <datalist id="lang"> |
| + <option value="D">German</option> |
| + <option value="E">English</option> |
| + </datalist> |
| +</template> |
| + |
|
keishi
2014/07/09 02:04:37
Could we have a description what this test is chec
|
| +<host></host> |
|
keishi
2014/07/09 02:04:37
This element doesn't seemed to be used in this fil
|
| + |
| +<script> |
| +var host = document.createElement('host'); |
| +host.createShadowRoot().appendChild(document.querySelector('template').content.cloneNode(true)); |
| +document.body.appendChild(host); |
| +document.querySelector('host::shadow input').focus(); |
| +</script> |