| Index: third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp b/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
|
| index 3555e059f99623c4ae585955a3dceb2408150cd2..6b9f64bde2380ee615d8376fff456d4bc7dc83f8 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
|
| +++ b/third_party/WebKit/Source/modules/filesystem/DOMFilePath.cpp
|
| @@ -71,7 +71,7 @@ bool DOMFilePath::isParentOf(const String& parent, const String& mayBeChild) {
|
| if (parent == DOMFilePath::root && mayBeChild != DOMFilePath::root)
|
| return true;
|
| if (parent.length() >= mayBeChild.length() ||
|
| - !mayBeChild.startsWith(parent, TextCaseInsensitive))
|
| + !mayBeChild.startsWith(parent, TextCaseUnicodeInsensitive))
|
| return false;
|
| if (mayBeChild[parent.length()] != DOMFilePath::separator)
|
| return false;
|
|
|