Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9d419f5 authored by Raph Levien's avatar Raph Levien Committed by Android Git Automerger
Browse files

am 6594eca0: am 9704b563: Merge "Fix for 7301594 Html.toHtml creating...

am 6594eca0: am 9704b563: Merge "Fix for 7301594 Html.toHtml creating potentially invalid html" into jb-mr1-dev

* commit '6594eca0':
  Fix for 7301594 Html.toHtml creating potentially invalid html
parents 86f0e715 6594eca0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -221,10 +221,10 @@ public class Html {
                false /* no info */);
        switch(paraDir) {
            case Layout.DIR_RIGHT_TO_LEFT:
                return "<p dir=rtl>";
                return "<p dir=\"rtl\">";
            case Layout.DIR_LEFT_TO_RIGHT:
            default:
                return "<p dir=ltr>";
                return "<p dir=\"ltr\">";
        }
    }