Reviewers: jgw,
Please review this at http://gwt-code-reviews.appspot.com/47818 Affected files: user/src/com/google/gwt/dom/client/AnchorElement.java Index: user/src/com/google/gwt/dom/client/AnchorElement.java =================================================================== --- user/src/com/google/gwt/dom/client/AnchorElement.java (revision 5739) +++ user/src/com/google/gwt/dom/client/AnchorElement.java (working copy) @@ -93,7 +93,7 @@ * @see <a href="http://www.w3.org/TR/1999/REC-html401-19991224/struct/links.html#adef-rel">W3C HTML Specification</a> */ public final native String getRel() /*-{ - return this.name; + return this.rel; }-*/; /** @@ -165,7 +165,7 @@ * @see <a href="http://www.w3.org/TR/1999/REC-html401-19991224/struct/links.html#adef-rel">W3C HTML Specification</a> */ public final native void setRel(String name) /*-{ - this.name = name; + this.rel = rel; }-*/; /** --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
