commit | 86e73004f61d8ab6dd94c23f14b5030b4964ea19 | [log] [tgz] |
---|---|---|
author | xtof@google.com <xtof@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Dec 10 14:42:34 2010 +0000 |
committer | xtof@google.com <xtof@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Fri Dec 10 14:42:34 2010 +0000 |
tree | d8fe66b405e778764eb8c61d18d518b48a52e548 | |
parent | d6d3113a672bd6c1bad51832acf72a670e714b85 [diff] |
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>")