Skip to content

Commit

Permalink
Add disabled file input to index.html and test.html
Browse files Browse the repository at this point in the history
  • Loading branch information
h-banii committed Nov 23, 2024
1 parent 9a5a675 commit 8d7700f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,10 @@ <h1>Form elements</h1>
<label for="if">File input</label>
<input type="file" id="if">
</p>
<p>
<label for="if">Disabled file input</label>
<input type="file" id="if" disabled>
</p>
</fieldset>
<p><a href="#top">[Top]</a></p>
<fieldset id="forms__action">
Expand Down
4 changes: 4 additions & 0 deletions test.html
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,10 @@ <h1>Form elements</h1>
<label for="if">File input</label>
<input type="file" id="if">
</p>
<p>
<label for="if">Disabled file input</label>
<input type="file" id="if" disabled>
</p>
</fieldset>
<p><a href="#top">[Top]</a></p>
<fieldset id="forms__action">
Expand Down

0 comments on commit 8d7700f

Please sign in to comment.