Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / number / number-appearance-spinbutton-visibility.html
blob756b5fab35debdb6970378b96595e886bdc648ad
1 <!DOCTYPE HTML>
2 <html>
3 <body onload="
4 document.getElementsByTagName('input')[0].style.visibility = 'visible';
5 document.getElementsByTagName('input')[1].style.visibility = 'hidden';
6 ">
7 <!-- Test visibility of spin buttons. The number input text area hidden by "visibility:hidden" becomes visible with Javascript visibility change. Also the test cheks the number input text with an inner spin box is correctly hidden by Javascript visibility change.
8 The only first input text area should be shown as a result. So there should be just one number field at the top-left corner. -->
9 <input type="number" style="visibility:hidden">
10 <input type="number" >
11 </body>
12 </html>