text-control-flow-root.html (620B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>display inside of text control should always be flow-root</title> 4 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#form-controls"> 5 <link rel=match href="text-control-flow-root-ref.html"> 6 7 <input id="input1" style="display: inline;"> 8 <br> 9 <input style="display: inline; transform: scale(0.5);"> 10 <br> 11 aaa<input style="display: inline;">aaa 12 <br> 13 <textarea style="display: inline;"></textarea> 14 <br> 15 <textarea style="display: inline; transform: scale(0.5);"></textarea> 16 <br> 17 aa<textarea style="display: inline; transform: scale(0.5);">aa</textarea>aa