blob: 997171e30d77261c4c76d44ff73f8489fdfa942c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const TEST_URI = URL_ROOT_SSL + "doc_sourcemap_chrome.html";
const CHROME_TEST_URI = CHROME_URL_ROOT + "doc_sourcemap_chrome.html";
const GENERATED_NAME = "sourcemaps_chrome.css";
const ORIGINAL_NAME = "sourcemaps.scss";
/**
* Test that a sourcemap served by a chrome URL for a http document will not be resolved.
*/
add_task(async function () {
const { ui } = await openStyleEditorForURL(TEST_URI);
ok(
findStylesheetByName(ui, GENERATED_NAME),
"Sourcemap not resolved: generated source is listed"
);
ok(
!findStylesheetByName(ui, ORIGINAL_NAME),
"Sourcemap not resolved: original source is not listed"
);
});
/**
* Test that a sourcemap served by a chrome URL for a chrome document is resolved.
*/
add_task(async function () {
const { ui } = await openStyleEditorForURL(CHROME_TEST_URI);
ok(
findStylesheetByName(ui, ORIGINAL_NAME),
"Sourcemap resolved: original source is listed"
);
ok(
!findStylesheetByName(ui, GENERATED_NAME),
"Sourcemap resolved: generated source is not listed"
);
});
function findStylesheetByName(ui, name) {
return ui.editors.some(
editor =>
editor.summary
.querySelector(".stylesheet-name > label")
.getAttribute("value") === name
);
}
|