input-checkbox-switch.tentative.html (541B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <title>Checkbox with switch attribute set renders differently than a checkbox without switch attribute</title> 4 <link rel=match href="input-checkbox-switch-ref.html"> 5 <link rel=mismatch href="input-checkbox-switch-notref.html"> 6 <input type=checkbox switch> 7 <input id='input2' type=checkbox> 8 <input id='input3' type=checkbox switch> 9 <script> 10 input2.setAttribute('switch',''); 11 input3.removeAttribute('switch'); 12 document.documentElement.classList.remove("reftest-wait"); 13 </script> 14 </html>