Different behavior between Mac and iPad

I wonder why that happens.

When opened on Mac. Acceptance of files with the '.hwp' extension is applied. But not on ipad

I'd like to know why, where can I get information?

here is the code

<!DOCTYPE html>
<html>
<body>

<h1>The input accept attribute</h1>

<form action="/action_page.php">
  <label for="img">Select file:</label>
  <input type="file"  accept=".pdf, .hwp">
  
</form>
</body>
</html>

here is the code

https://codepen.io/spaciouskitchen/pen/gOoNGLB

this is mac

this is ipad

Different behavior between Mac and iPad
 
 
Q