blob: 6e85ad317ab6422d25957c6d2aa6c4df8b9cd590 [file] [log] [blame]
<body>
<script>
// This tests that an <input type="week"> 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="week" value="1982-W25">';
document.body.appendChild(template.content.cloneNode(true));
</script>
</body>