summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_variables.html
blob: e26dc5a0f70e84a90e17d5087565b0abbb548275 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE type>
<title>Assorted CSS variable tests</title>
<script src="/MochiKit/MochiKit.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css" type="text/css">

<style id="test1">
</style>

<style id="test2">
</style>

<style id="test3">
</style>

<style id="test4">
</style>

<div id="t4"></div>

<style id="test5">
</style>

<div id="t5"></div>

<style id="test6">
</style>

<style id="test7">
</style>

<style id="test8">
</style>

<script>
var tests = [
  function() {
    // https://bugzilla.mozilla.org/show_bug.cgi?id=773296#c121
    var test1 = document.getElementById("test1");
    test1.textContent = "p { --a:123!important; }";
    var declaration = test1.sheet.cssRules[0].style;
    declaration.cssText;
    declaration.setProperty("color", "black");
    is(declaration.getPropertyValue("--a"), "123");
  },

  function() {
    // https://bugzilla.mozilla.org/show_bug.cgi?id=773296#c121
    var test2 = document.getElementById("test2");
    test2.textContent = "p { --a: a !important; }";
    var declaration = test2.sheet.cssRules[0].style;
    is(declaration.getPropertyPriority("--a"), "important");
  },

  function() {
    // https://bugzilla.mozilla.org/show_bug.cgi?id=955913
    var test3 = document.getElementById("test3");
    test3.textContent = "p { border-left-style: inset; padding: 1px; --decoration: line-through; }";
    var declaration = test3.sheet.cssRules[0].style;
    is(declaration[declaration.length - 1], "--decoration");
  },

  function() {
    // https://bugzilla.mozilla.org/show_bug.cgi?id=959973
    var test4 = document.getElementById("test4");
    test4.textContent = "#t4 { background-image: var(--a); }";

    var element = document.getElementById("t4");
    var path = window.location.pathname;
    var currentDir = path.substring(0, path.lastIndexOf('/'));
    var imageURL = "http://mochi.test:8888" + currentDir + "/image.png";

    is(window.getComputedStyle(element).getPropertyValue("background-image"), "url(\"" + imageURL +"\")");
  },

  function() {
    // https://bugzilla.mozilla.org/show_bug.cgi?id=1043713
    var test5 = document.getElementById("test5");
    test5.textContent = "#t5 { --SomeVariableName: a; }";

    var declaration = test5.sheet.cssRules[0].style;
    is(declaration.item(0), "--SomeVariableName", "custom property name returned by item() on style declaration");
    is(declaration[0], "--SomeVariableName", "custom property name returned by indexed getter on style declaration");

    var element = document.getElementById("t5");
    var cs = window.getComputedStyle(element);

    is(cs.item(cs.length - 1), "--SomeVariableName", "custom property name returned by item() on computed style");
    is(cs[cs.length - 1], "--SomeVariableName", "custom property name returned by indexed getter on style declaration");
  },

  function() {
    // https://bugzilla.mozilla.org/show_bug.cgi?id=1154356
    var test7 = document.getElementById("test7");
    test7.textContent = "p { --weird\\;name: green; }";
    is(test7.sheet.cssRules[0].style.cssText, "--weird\\;name: green;");
    test7.textContent = "p { --0: green; }";
    is(test7.sheet.cssRules[0].style.cssText, "--0: green;");
  },

  function() {
    // https://bugzilla.mozilla.org/show_bug.cgi?id=1330172
    var test8 = document.getElementById("test8");
    test8.textContent = "p { --a:inHerit; }";
    is(test8.sheet.cssRules[0].style.cssText, "--a: inherit;");
    test8.textContent = "p { --b: initial!important; }";
    is(test8.sheet.cssRules[0].style.cssText, "--b: initial !important;");
    test8.textContent = "p { --c:   UNSET  !important }";
    is(test8.sheet.cssRules[0].style.cssText, "--c: unset !important;");
  },
];

function prepareTest() {
  // Load an external style sheet for test 4.
  var e = document.createElement("link");
  e.addEventListener("load", runTest);
  e.setAttribute("rel", "stylesheet");
  e.setAttribute("href", "support/external-variable-url.css");
  document.head.appendChild(e);
}

function runTest() {
  tests.forEach(function(fn) { fn(); });
  SimpleTest.finish();
}

SimpleTest.waitForExplicitFinish();
prepareTest();
</script>