Пример #1
0
 public void suppressedForIEfail_testNonXmlEntities() {
   // This fragment includes both translated and non-translated strings
   ParagraphElement mainParagraph = widgetUi.main;
   final String innerHTML = mainParagraph.getInnerHTML().trim();
   assertTrue(innerHTML.contains(" \u261E \u2022 XHTML \u2022 \u261C"));
   assertTrue(innerHTML.startsWith("\u261E&nbsp;<span>"));
   assertTrue(innerHTML.endsWith("</span>&nbsp;\u261C"));
 }
Пример #2
0
 public void suppressedForSafari3Fail_testDomTextNoMessageWithFunnyChars() {
   ParagraphElement p = widgetUi.funnyCharsParagraph;
   // WebKit does \n replace thing, so let's do it everywhere
   String t = StringCase.toLower(p.getInnerHTML().replace("\n", " "));
   String expected =
       "Templates can be marked up for <b>localization</b>, which presents alls "
           + "kinds of exciting opportunities for bugs related to character escaping. "
           + "Consider these funny characters \\ \" \" ' ' &amp; &lt; &gt; &gt; { }, and "
           + "the various places they might make your life miserable, like this "
           + "untranslated paragraph.";
   expected = StringCase.toLower(expected);
   assertEquals(expected, t);
 }