1
0
Fork 0
firefox/testing/web-platform/tests/html/rendering/widgets/input-checkbox-switch.tentative.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

14 lines
541 B
HTML

<!doctype html>
<html class="reftest-wait">
<title>Checkbox with switch attribute set renders differently than a checkbox without switch attribute</title>
<link rel=match href="input-checkbox-switch-ref.html">
<link rel=mismatch href="input-checkbox-switch-notref.html">
<input type=checkbox switch>
<input id='input2' type=checkbox>
<input id='input3' type=checkbox switch>
<script>
input2.setAttribute('switch','');
input3.removeAttribute('switch');
document.documentElement.classList.remove("reftest-wait");
</script>
</html>