Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/widgets/button-layout/input-fragmentation-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<style>
.parent {
columns: 2;
}
input {
float: inline-start;
}
</style>
<div class="parent">
<input style="display: block" type="color">
</div>