summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/win
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-04-12 08:11:56 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-04-12 08:11:56 -0700
commit84b96dda1738f816b0ff021d76a16caa9847ee26 (patch)
treee79dba6a969753c85e0e87dfada8683d32dab3dc /Source/WebCore/platform/win
parentba8b643c79877a23cd76135cfc0e72918db70892 (diff)
parente48d279609693b4d164199748c93ad791547c649 (diff)
downloadexternal_webkit-84b96dda1738f816b0ff021d76a16caa9847ee26.zip
external_webkit-84b96dda1738f816b0ff021d76a16caa9847ee26.tar.gz
external_webkit-84b96dda1738f816b0ff021d76a16caa9847ee26.tar.bz2
Merge "Cherry-pick WebKit change r96779 to fix window.location"
Diffstat (limited to 'Source/WebCore/platform/win')
-rw-r--r--Source/WebCore/platform/win/ClipboardWin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/win/ClipboardWin.cpp b/Source/WebCore/platform/win/ClipboardWin.cpp
index 0b5a3d3..2e56cbc 100644
--- a/Source/WebCore/platform/win/ClipboardWin.cpp
+++ b/Source/WebCore/platform/win/ClipboardWin.cpp
@@ -191,7 +191,7 @@ static HGLOBAL createGlobalHDropContent(const KURL& url, String& fileName, Share
WCHAR filePath[MAX_PATH];
if (url.isLocalFile()) {
- String localPath = url.path();
+ String localPath = decodeURLEscapeSequences(url.path());
// windows does not enjoy a leading slash on paths
if (localPath[0] == '/')
localPath = localPath.substring(1);