Specify how filenames from the OS map to File's `name` property
まだ誰も着手していません。
- 主要言語
- HTML
- スター
- 118
- フォーク
- 52
- 平均マージ
- 9日 16時間
- マージ済み PR(30日)
- 1
説明
I've been testing how files coming from the OS get exposed as File objects, and in particular how filenames that aren't in the OS's default encoding get mapped to the name property.
In Windows systems, filenames are sequences of UTF-16 code units (not UTF-16 encoded text, as is sometimes claimed, because the system APIs don't check for lone surrogates), and as expected, they directly map to a DOMString. An initial BOM doesn't get removed. There doesn't seem to be any browser differences here.
In Unix systems (tested on Fedora Linux; my understanding is all other modern Unix variants/distros work the same), filenames are byte sequences, which are usually taken to be UTF-8. Here's how the various browsers behave on them:
- Firefox does the equivalent of UTF-8 decode without BOM, decoding bytes which aren't valid UTF-8 as a replacement character.
- WebKit does the equivalent of UTF-8 decode without BOM or fail, and handles failures by returning a
Fileobject with the empty string as filename, empty contents, and MIME typeapplication/octet-streaminstead. The language aroundnamein the spec might allow for an empty string to substitute a filename that cannot be decoded, but it doesn't allow the content to be dropped. Note that the resultingFileobject is identical to theFileobject that HTML's "construct the entry list" creates when a file input has no selected files. - Chrome also does the equivalent of UTF-8 decode without BOM or fail, except that for file inputs, any file whose filename isn't UTF-8 gets dropped from the selection. For drag and drop, Chrome behaves the same as WebKit.
Since it doesn't seem good to drop files or replace them by an empty file, even when their filenames don't match the OS's conventions, it seems like it would be best to agree on Firefox's behavior.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
OSのファイル名がFileの名前になる方法を説明しているFile APIの記述を読み、関連付けられたEncodingとHTMLのアルゴリズムを比較してください。仕様が無効なファイル名の処理と、それによって生じるFileの動作を規範的に定義し、ブラウザー間の差異を未解決のまま残さなくなった時点で、issueは完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- html
- 領域
- api, web-dev
- issue の種類
- 機能追加
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100