Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: layout/style/test/chrome/chrome.toml
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="data:text/css,{}">
<body>
<script>
SimpleTest.waitForExplicitFinish();
const Cu = SpecialPowers.Components.utils;
document.styleSheetChangeEventsEnabled = true;
onload = runTest;
async function runTest() {
const sheet = document.getElementsByTagName("link")[1].sheet;
sheet.insertRule('@import url("blahblah")', 0);
const rule = sheet.cssRules[0];
is(rule.type, CSSRule.IMPORT_RULE, "Got expected import rule.");
isnot(rule.styleSheet, null, "Import rule contains a stylesheet.");
isnot(rule.media, null, "Import rule contains a media list.");
is(rule.href, "blahblah", "Import rule contains expected href.");
SimpleTest.finish();
}
</script>
</body>
</html>