зеркало из https://github.com/mozilla/gecko-dev.git
122 строки
3.7 KiB
JavaScript
122 строки
3.7 KiB
JavaScript
// -*- Mode: js2; tab-width: 2; indent-tabs-mode: nil; js2-basic-offset: 2; js2-skip-preprocessor-directives: t; -*-
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
let testURL_blank = baseURI + "browser_blank_01.html";
|
|
|
|
const DEFAULT_WIDTH = 800;
|
|
|
|
function testURL(n) {
|
|
if (n < 0)
|
|
return testURL_blank;
|
|
|
|
return baseURI + "browser_viewport.sjs?" + encodeURIComponent(gTestData[n].metadata);
|
|
}
|
|
|
|
function scaleRatio(n) {
|
|
if ("scaleRatio" in gTestData[n])
|
|
return gTestData[n].scaleRatio;
|
|
return 150; // Default value matches our main target hardware (N900, Nexus One, etc.)
|
|
}
|
|
|
|
let currentTab;
|
|
|
|
let loadURL = function loadURL(aPageURL) {
|
|
BrowserUI.goToURI(aPageURL);
|
|
};
|
|
|
|
let gTestData = [
|
|
{ metadata: "", width: DEFAULT_WIDTH, scale: 1 },
|
|
{ metadata: "width=device-width, initial-scale=1" },
|
|
{ metadata: "width=device-width" },
|
|
{ metadata: "width=320, initial-scale=1" },
|
|
{ metadata: "initial-scale=1.0, user-scalable=no" },
|
|
{ metadata: "width=200,height=500" },
|
|
{ metadata: "width=2000, minimum-scale=0.75" },
|
|
{ metadata: "width=100, maximum-scale=2.0" },
|
|
{ metadata: "width=2000, initial-scale=0.75" },
|
|
{ metadata: "width=20000, initial-scale=100" },
|
|
{ metadata: "XHTML" },
|
|
/* testing opening and switching between pages without a viewport */
|
|
{ metadata: "style=width:400px;margin:0px;" },
|
|
{ metadata: "style=width:1000px;margin:0px;" },
|
|
{ metadata: "style=width:800px;margin:0px;" },
|
|
{ metadata: "style=width:800px;height:300px;margin:0px;" },
|
|
{ metadata: "style=width:800px;height:1000px;margin:0px;" },
|
|
];
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Entry point (must be named "test")
|
|
let gCurrentTest = -1;
|
|
let secondPass = false;
|
|
let oldRendererFactory;
|
|
let gDevice = null;
|
|
function test() {
|
|
oldRendererFactory = rendererFactory;
|
|
rendererFactory = newRendererFactory;
|
|
|
|
// if we are on desktop, we can run tests in both portrait and landscape modes
|
|
// on devices we should just use the current orientation
|
|
let sysInfo = Cc["@mozilla.org/system-info;1"].getService(Ci.nsIPropertyBag2);
|
|
gDevice = sysInfo.get("device");
|
|
if (gDevice != null)
|
|
secondPass = true;
|
|
|
|
// This test is async
|
|
waitForExplicitFinish();
|
|
|
|
currentTab = Browser.addTab("about:blank", true);
|
|
ok(currentTab, "Tab Opened");
|
|
|
|
startTest(gCurrentTest);
|
|
}
|
|
|
|
function startTest(n) {
|
|
let url = testURL(gCurrentTest);
|
|
info("Testing: " + url)
|
|
loadURL(url);
|
|
}
|
|
|
|
function newRendererFactory(aBrowser, aCanvas) {
|
|
let wrapper = {};
|
|
let ctx = aCanvas.MozGetIPCContext("2d");
|
|
let draw = function(browser, aLeft, aTop, aWidth, aHeight, aColor, aFlags) {
|
|
is(aLeft, 0,"Thumbnail drawn at x=0");
|
|
is(aTop, 0,"Thumbnail drawn at y=0");
|
|
ok(aWidth <= browser.contentDocumentWidth, "Thumbnail ok width: " + aWidth + " <= " + browser.contentDocumentWidth);
|
|
ok(aHeight <= browser.contentDocumentHeight,"Thumbnail ok height:" + aHeight + " <= " + browser.contentDocumentHeight);
|
|
finishTest();
|
|
};
|
|
wrapper.checkBrowser = function(browser) {
|
|
return browser.contentWindow;
|
|
};
|
|
wrapper.drawContent = function(callback) {
|
|
callback(ctx, draw);
|
|
};
|
|
|
|
return wrapper;
|
|
};
|
|
|
|
function finishTest() {
|
|
gCurrentTest++;
|
|
if (gCurrentTest < gTestData.length) {
|
|
startTest(gCurrentTest);
|
|
} else if (secondPass) {
|
|
|
|
if (gDevice == null)
|
|
window.top.resizeTo(480,800);
|
|
|
|
Browser.closeTab(currentTab);
|
|
rendererFactory = oldRendererFactory;
|
|
finish();
|
|
} else {
|
|
secondPass = true;
|
|
gCurrentTest = -1;
|
|
window.top.resizeTo(800,480);
|
|
startTest(gCurrentTest);
|
|
}
|
|
}
|