Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 package org.mozilla.gecko.tests;
3 /**
4 * A basic page load test.
5 * - loads a page
6 * - verifies it rendered properly
7 * - verifies the displayed url is correct
8 */
9 public class testLoad extends PixelTest {
10 public void testLoad() {
11 String url = getAbsoluteUrl("/robocop/robocop_boxes.html");
13 blockForGeckoReady();
15 loadAndVerifyBoxes(url);
17 verifyUrl(url);
18 }
19 }