Chromium Code Reviews| Index: LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom-expected.html |
| diff --git a/LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom-expected.html b/LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8fe28c2b86194a7572bce518c2f9165574379575 |
| --- /dev/null |
| +++ b/LayoutTests/fast/forms/datalist/datalist-inside-shadow-dom-expected.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| + |
| +<template> |
| + <input list="lang" value="5"> |
| + <datalist id="lang"> |
|
keishi
2014/07/15 06:12:13
Extra tab.
You can move the datalist before the in
deepak.sa
2014/07/16 14:47:36
If input is put after datalist, it doesn't work pr
|
| + <option value="D">German</option> |
| + <option value="E">English</option> |
| + </datalist> |
| +</template> |
| + |
| +<host></host> |
| + |
| +<script> |
| +var host = document.querySelector('host') |
| +host.appendChild(document.querySelector('template').content.cloneNode(true)); |
| +document.querySelector('input').focus(); |
| +</script> |