blob: bdce5de486233c342399579e80c55ae2fa0ddb39 [file] [log] [blame]
<body>
<script>
// This tests that an <input type="time"> created in a template document (e.g. one without a frame)
// is identical to one created in the main document.
let template = document.createElement('template');
template.innerHTML = '<input type="time" value="22:53:05">';
document.body.appendChild(template.content.cloneNode(true));
</script>
</body>