Strange problem here.
I have
Qt Code:
  1. QString render = "<table width=\"100%\" border=0 cellspacing=0>\n"
  2. "<tr><td height=\">eee </td></tr></table>";
  3.  
  4. render += "</table>";
  5.  
  6.  
  7. detailsText->setHtml(render);
To copy to clipboard, switch view to plain text mode 

detailsText is just a QTextEdit widget.
But nothing appear in the widget.
If i put it with setPlainText() it is ok.
Why