summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/test/browser_require_raw.js
blob: d40b84c35844de39b5243d5c062c93621ef7a73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const { BrowserLoader } = Cu.import("resource://devtools/client/shared/browser-loader.js", {});

const { require: browserRequire } = BrowserLoader({
  baseURI: "resource://devtools/client/shared/",
  window
});

const variableFileContents = browserRequire("raw!devtools/client/themes/variables.css");

function test() {
  ok(variableFileContents.length > 0, "raw browserRequire worked");
  finish();
}