summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_at_rule_parse_serialize.html
blob: 2c6f2e2d5ca30e63ff065b2beb19a36091785e34 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=478160
-->
<head>
  <title>Test for Bug 478160</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <style id="style" type="text/css"></style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=478160">Mozilla Bug 478160</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 478160 **/

var style_element = document.getElementById("style");
var style_text = document.createTextNode("");
style_element.appendChild(style_text);

function test_at_rule(str) {
    style_text.data = str;
    is(style_element.sheet.cssRules.length, 1,
       "should have one rule from " + str);
    var ser1 = style_element.sheet.cssRules[0].cssText;
    isnot(ser1, "", "should have non-empty rule from " + str);
    style_text.data = ser1;
    var ser2 = style_element.sheet.cssRules[0].cssText;
    is(ser2, ser1, "parse+serialize should be idempotent for " + str);
}

test_at_rule("@namespace 'a b'");

</script>
</pre>
</body>
</html>