summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_constructable_stylesheets_chrome_only_rules_in_content.html
blob: 6d80b2bb7b2b0fb23592b6cd9bf4150a53eddd27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML>
<meta charset="utf-8">
<title>Test for chrome-only rules in constructable stylesheets (in content)</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script>
  add_task(async function chrome_rules_constructable_stylesheets_in_content() {
    let sheet = new CSSStyleSheet();
    sheet.replaceSync(".foo { -moz-default-appearance: none }");
    is(sheet.cssRules[0].style.length, 0, "Should not parse chrome-only property in content  document");
  });

  add_task(async function chrome_rules_constructable_stylesheets_in_content() {
    let sheet = new CSSStyleSheet({ baseURL: "chrome://browser/content/browser.xhtml" })
    sheet.replaceSync(".foo { -moz-default-appearance: none }");
    is(sheet.cssRules[0].style.length, 0, "Should not parse chrome-only property in content  document, even with chrome baseURL");
  });
</script>