提交 eeda6eb4 编写于 作者: P pchelko

8016563: Test closed/java/awt/dnd/ImageTransferTest/ImageTransferTest.html fails

Reviewed-by: anthony, serb
上级 0c499974
...@@ -1793,8 +1793,17 @@ search: ...@@ -1793,8 +1793,17 @@ search:
} catch (Exception e) { } catch (Exception e) {
throw new IOException(e.getMessage()); throw new IOException(e.getMessage());
} }
// Target data is Image
} else if (DataFlavor.imageFlavor.equals(flavor)) {
if (!isImageFormat(format)) {
throw new IOException("data translation failed");
}
theObject = platformImageBytesToImage(inputStreamToByteArray(str), format);
} }
if (theObject == null) {
throw new IOException("data translation failed");
}
return theObject; return theObject;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册