* from 'text/html' MIME type. <p>
* Has <b>OK</b> status if DataFlavour returned has 'text/hrml' MIME
* type.
*/
public void _getDataFlavorFromSystemDataType() {
DataFlavor in = new DataFlavor
("text/html","HTML-Documents", new Type());
Object res = oObj.getSystemDataTypeFromDataFlavor(in);
DataFlavor out = oObj.getDataFlavorFromSystemDataType(res);
tRes.tested("getDataFlavorFromSystemDataType()",
out.MimeType.equals("text/html"));
}