Thanks again to Michael Klepikov for these fixes.

M dom/jni/org_mozilla_dom_NodeImpl.cpp

- code around the absence of LowerCaseEqualsLiteral in nsTAString.h.
  I'm surprised the unit tests worked for me all aloung though.

M webclient/build.xml

- make run.test.browser depend on "main"

M webclient/src_moz/EmbedProgress.cpp

- deal with null URL passed to ::OnStateChange

M webclient/src_moz/HistoryImpl.cpp

- Don't cast to PRBool* when you don't need to.

M webclient/test/manual/src/classes/org/mozilla/webclient/test/TestBrowser.java

- don't swallow the exception from setAppData().


git-svn-id: svn://10.0.0.236/trunk@160299 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2004-08-03 17:16:57 +00:00
parent 0add72333a
commit 3fd0db98ed
5 changed files with 19 additions and 14 deletions

View File

@@ -92,7 +92,10 @@ public class TestBrowser extends JPanel {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
BrowserControlFactory.setAppData(System.getProperty("BROWSER_BIN_DIR"));
} catch (Exception e) {}
} catch (Exception e) {
System.out.println("Can't init test browser, exception: " + e + " "
+ e.getMessage());
}
JFrame frame = new JFrame("Webclient API Demo - Browser");