Expand self-closing <div/> tag in SafeHtmlTemplate into separate open and close
tag.

Review at http://gwt-code-reviews.appspot.com/1209801

Review by: rice@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9405 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/cellview/client/CellTable.java b/user/src/com/google/gwt/user/cellview/client/CellTable.java
index 1ba3f08..5096fee 100644
--- a/user/src/com/google/gwt/user/cellview/client/CellTable.java
+++ b/user/src/com/google/gwt/user/cellview/client/CellTable.java
@@ -282,7 +282,7 @@
     @Template("<div style=\"outline:none;\" tabindex=\"{0}\" accessKey=\"{1}\">{2}</div>")
     SafeHtml divFocusableWithKey(int tabIndex, char accessKey, SafeHtml contents);
 
-    @Template("<div class=\"{0}\"/>")
+    @Template("<div class=\"{0}\"></div>")
     SafeHtml loading(String loading);
 
     @Template("<table><tbody>{0}</tbody></table>")