input-file-print.html (707B)
1 <!DOCTYPE html> 2 <head> 3 <meta charset="utf-8"> 4 <title>Test that file-input widgets have 'auto' height (not some other arbitrary value) when printed</title> 5 <meta name="assert" content="file-input widgets should have 'auto' height (not some other arbitrary value) when printed"> 6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=133984"> 7 <link rel="match" href="input-file-print-ref.html"> 8 <style> 9 .with-outline { 10 outline: 2px solid teal; 11 } 12 .wrapper { 13 border: 2px solid fuchsia; 14 } 15 </style> 16 </head> 17 <body> 18 <input type="file"> 19 <br><br> 20 <input type="file" class="with-outline"> 21 <br><br> 22 <div class="wrapper"><input type="file"></div> 23 </body>