forked from mirrors/gecko-dev
		
	 67ecaaa283
			
		
	
	
		67ecaaa283
		
	
	
	
	
		
			
			Automatic update from web-platform-tests [css-flexbox] Move stretch-input-in-column.html test to WPT This CL moves stretch-input-in-column[-expected].html test from css3/css-flexbox to external/wpt/css/css-flexbox with WPT styles, adding links to the relevant specs, and test description. Additionally, stretch-input-in-column-expected.html is renamed to stretch-input-in-column-ref.html. Bug: 1063749 Change-Id: If9fa79e6cd85d15b0c29daea6aecdaae1b27d580 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2131816 Reviewed-by: Robert Ma <robertma@chromium.org> Reviewed-by: David Grogan <dgrogan@chromium.org> Commit-Queue: David Grogan <dgrogan@chromium.org> Cr-Commit-Position: refs/heads/master@{#756138} -- wpt-commits: 0bf1054dcf1186ad87c3b1dd57ea802232284cac wpt-pr: 22630
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <link href="../support/flexbox.css" rel="stylesheet">
 | |
| <style>
 | |
| .flexbox {
 | |
|     background-color: grey;
 | |
| }
 | |
| .flexbox > * {
 | |
|     flex: 1;
 | |
| }
 | |
| </style>
 | |
| <body>
 | |
| <p>This test passes if none of the form controls overflow.</p>
 | |
| <div class="flexbox">
 | |
|     <input>
 | |
| </div>
 | |
| <div class="flexbox">
 | |
|     <textarea></textarea>
 | |
| </div>
 | |
| <div class="flexbox">
 | |
|     <input type="button">
 | |
| </div>
 | |
| <div class="flexbox">
 | |
|     <select></select>
 | |
| </div>
 | |
| <div class="flexbox">
 | |
|     <legend style="border: 2px solid black">legend</legend>
 | |
| </div>
 | |
| <div class="flexbox">
 | |
|     <div type="border: 4px solid black; padding: 10px;">
 | |
| </div>
 | |
| </body>
 | |
| </html>
 |