Merge pull request #5454 from Snuffleupagus/debugger-font-download

Fix regression that prevents downloading of font files in the debugger
This commit is contained in:
Yury Delendik 2014-10-30 09:19:33 -07:00
commit 308646d5f1

View File

@ -124,8 +124,8 @@ var FontInspector = (function FontInspectorClosure() {
url = URL.createObjectURL(new Blob([fontObj.data], {
type: fontObj.mimeType
}));
download.href = url;
}
download.href = url;
download.textContent = 'Download';
var logIt = document.createElement('a');
logIt.href = '';