summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_custom_content_inheritance.html
blob: 625f1ad9c311bc1821006390e8fbb83a9b047a81 (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
<!doctype html>
<title>Test for custom content inheritance</title>
<style>
  html { color: red !important; }
</style>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script>
onload = function() {
  let doc = SpecialPowers.wrap(document);
  let div = doc.createElement('div');
  div.id = "test-id";
  ok(!!doc.insertAnonymousContent,
     "Must have the insertAnonymousContent API");
  let content = doc.insertAnonymousContent();
  ok(!!content, "Must have anon content");
  content.root.appendChild(div);
  let color = SpecialPowers.wrap(window).getComputedStyle(div).color;
  ok(!!color, "Should be able to get a color");
  isnot(color, getComputedStyle(document.documentElement).color,
        "Custom anon content shouldn't inherit from the root element");
  SimpleTest.finish();
};
SimpleTest.waitForExplicitFinish();
</script>