Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 }