mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4248bbb581
--HG-- rename : browser/devtools/commandline/test/browser_dbg_cmd.html => browser/devtools/debugger/test/browser_dbg_cmd.html rename : browser/devtools/commandline/test/browser_dbg_cmd.js => browser/devtools/debugger/test/browser_dbg_cmd.js rename : browser/devtools/commandline/test/browser_dbg_cmd_break.html => browser/devtools/debugger/test/browser_dbg_cmd_break.html rename : browser/devtools/commandline/test/browser_dbg_cmd_break.js => browser/devtools/debugger/test/browser_dbg_cmd_break.js
108 lines
2.4 KiB
JavaScript
108 lines
2.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
function isOpen() {
|
|
return !!gBrowser.selectedTab.__responsiveUI;
|
|
}
|
|
|
|
helpers.addTabWithToolbar("about:blank", function(options) {
|
|
return helpers.audit(options, [
|
|
{
|
|
setup: "resize toggle",
|
|
check: {
|
|
input: 'resize toggle',
|
|
hints: '',
|
|
markup: 'VVVVVVVVVVVVV',
|
|
status: 'VALID'
|
|
},
|
|
exec: {
|
|
output: ""
|
|
},
|
|
post: function() {
|
|
ok(isOpen(), "responsive mode is open");
|
|
},
|
|
},
|
|
{
|
|
setup: "resize toggle",
|
|
check: {
|
|
input: 'resize toggle',
|
|
hints: '',
|
|
markup: 'VVVVVVVVVVVVV',
|
|
status: 'VALID'
|
|
},
|
|
exec: {
|
|
output: ""
|
|
},
|
|
post: function() {
|
|
ok(!isOpen(), "responsive mode is closed");
|
|
},
|
|
},
|
|
{
|
|
setup: "resize on",
|
|
check: {
|
|
input: 'resize on',
|
|
hints: '',
|
|
markup: 'VVVVVVVVV',
|
|
status: 'VALID'
|
|
},
|
|
exec: {
|
|
output: ""
|
|
},
|
|
post: function() {
|
|
ok(isOpen(), "responsive mode is open");
|
|
},
|
|
},
|
|
{
|
|
setup: "resize off",
|
|
check: {
|
|
input: 'resize off',
|
|
hints: '',
|
|
markup: 'VVVVVVVVVV',
|
|
status: 'VALID'
|
|
},
|
|
exec: {
|
|
output: ""
|
|
},
|
|
post: function() {
|
|
ok(!isOpen(), "responsive mode is closed");
|
|
},
|
|
},
|
|
{
|
|
setup: "resize to 400 400",
|
|
check: {
|
|
input: 'resize to 400 400',
|
|
hints: '',
|
|
markup: 'VVVVVVVVVVVVVVVVV',
|
|
status: 'VALID',
|
|
args: {
|
|
width: { value: 400 },
|
|
height: { value: 400 },
|
|
}
|
|
},
|
|
exec: {
|
|
output: ""
|
|
},
|
|
post: function() {
|
|
ok(isOpen(), "responsive mode is open");
|
|
},
|
|
},
|
|
{
|
|
setup: "resize off",
|
|
check: {
|
|
input: 'resize off',
|
|
hints: '',
|
|
markup: 'VVVVVVVVVV',
|
|
status: 'VALID'
|
|
},
|
|
exec: {
|
|
output: ""
|
|
},
|
|
post: function() {
|
|
ok(!isOpen(), "responsive mode is closed");
|
|
},
|
|
},
|
|
]);
|
|
}).then(finish);
|
|
}
|