Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / file / disabling-file-busy-loop.html
bloba41afc1bdfbee930653f0d39aa707b75182ec604
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .foo[disabled] {}
6 </style>
7 </head>
8 <body>
9 <input type="file" id="fileUpload">
10 <div id=console></div>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 document.getElementById('fileUpload').disabled = true;
15 document.getElementById('console').innerText = 'PASS if this text is visible.';
16 </script>
17 </body>
18 </html>