mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 18:28:55 +00:00
52 lines
2.4 KiB
JavaScript
52 lines
2.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests the function testing whether or not a frame is content or chrome
|
|
* works properly.
|
|
*/
|
|
|
|
function test() {
|
|
let { FrameNode } = devtools.require("devtools/shared/profiler/tree-model");
|
|
|
|
ok(FrameNode.isContent({ location: "http://foo" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(FrameNode.isContent({ location: "https://foo" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(FrameNode.isContent({ location: "file://foo" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
|
|
ok(!FrameNode.isContent({ location: "chrome://foo" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ location: "resource://foo" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
|
|
ok(!FrameNode.isContent({ location: "chrome://foo -> http://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ location: "chrome://foo -> https://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ location: "chrome://foo -> file://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
|
|
ok(!FrameNode.isContent({ location: "resource://foo -> http://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ location: "resource://foo -> https://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ location: "resource://foo -> file://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
|
|
ok(!FrameNode.isContent({ category: 1, location: "chrome://foo" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ category: 1, location: "resource://foo" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
|
|
ok(!FrameNode.isContent({ category: 1, location: "file://foo -> http://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ category: 1, location: "file://foo -> https://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
ok(!FrameNode.isContent({ category: 1, location: "file://foo -> file://bar" }),
|
|
"Verifying content/chrome frames is working properly.");
|
|
|
|
finish();
|
|
}
|