am 5a1f6fb4: Merge "Use ' for apostrophe in HTML encoding"

* commit '5a1f6fb4073ee4b27359faa950808a6eeac33a4c':
  Use ' for apostrophe in HTML encoding
This commit is contained in:
Marc Blank
2012-02-13 10:21:58 -08:00
committed by Android Git Automerger

View File

@@ -1325,7 +1325,11 @@ public class TextUtils {
sb.append("&"); //$NON-NLS-1$
break;
case '\'':
sb.append("'"); //$NON-NLS-1$
//http://www.w3.org/TR/xhtml1
// The named character reference ' (the apostrophe, U+0027) was introduced in
// XML 1.0 but does not appear in HTML. Authors should therefore use ' instead
// of ' to work as expected in HTML 4 user agents.
sb.append("'"); //$NON-NLS-1$
break;
case '"':
sb.append("""); //$NON-NLS-1$