fune/layout/style/test/browser_sourceurl_comment.js
Tom Tromey 916228aee7 Bug 1399911 - preserve sourceURL comment directive on style sheets; r=bz,heycam
In addition to the sourceMappingURL comment, there is a second special
comment, "sourceURL", that can be used to set the "display name" of a
style sheet for developer tools.  This name is also used as the base
URL for the source-map URL resolution algorithm.  sourceURL is
described here:
https://blog.getfirebug.com/2009/08/11/give-your-eval-a-name-with-sourceurl/

This patch changes Firefox to record this URL, if specified, and to
expose it (chrome-only) vai StyleSheet.webidl.

MozReview-Commit-ID: 7NwXsOf7nbY

--HG--
extra : rebase_source : bd5d25b4d44f5f220a4624db346edbc4236c9886
2017-09-14 14:59:32 -06:00

40 lines
1.3 KiB
JavaScript

add_task(async function() {
// Test text and expected results.
let test_cases = [
["/*# sourceURL=here*/", "here"],
["/*# sourceURL=here */", "here"],
["/*@ sourceURL=here*/", "here"],
["/*@ sourceURL=there*/ /*# sourceURL=here*/", "here"],
["/*# sourceURL=here there */", "here"],
["/*# sourceURL= here */", ""],
["/*# sourceURL=*/", ""],
["/*# sourceUR=here */", ""],
["/*! sourceURL=here */", ""],
["/*# sourceURL = here */", ""],
["/* # sourceURL=here */", ""],
];
let page = "<!DOCTYPE HTML>\n<html>\n<head>\n";
for (let i = 0; i < test_cases.length; ++i) {
page += `<style type="text/css"> #x${i} { color: red; }${test_cases[i][0]}</style>\n`;
}
page += "</head><body>some text</body></html>";
let uri = "data:text/html;base64," + btoa(page);
info(`URI is ${uri}`);
await BrowserTestUtils.withNewTab({
gBrowser,
url: uri
}, async function(browser) {
await ContentTask.spawn(browser, test_cases, function* (tests) {
for (let i = 0; i < content.document.styleSheets.length; ++i) {
let sheet = content.document.styleSheets[i];
info(`Checking sheet #${i}`);
is(sheet.sourceURL, tests[i][1], `correct source URL for sheet ${i}`);
}
});
});
});