Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-05-20 01:25:03 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-05-20 01:25:03 (GMT)
commitb04e3c942b664c13ce6d6f2aa2a7283d0efb61dc (patch)
tree8d5374f4da423c0ea113fbed6808e7016159d69a /tests
parent4d4d441ec16bd09428c679dcbcc6a1523ca68c0a (diff)
Create the mozilla widget at init and host it inside
the offscreen window.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-browser.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test-browser.py b/tests/test-browser.py
index 396045f..16f261d 100644
--- a/tests/test-browser.py
+++ b/tests/test-browser.py
@@ -9,11 +9,10 @@ window = gtk.Window()
window.connect("destroy", _quit)
browser = hulahop.Browser()
+browser.load_uri('http://www.google.com')
window.add(browser)
browser.show()
window.show()
-browser.load_uri('http://www.google.com')
-
gtk.main()