summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-typed-om/stylevalue-serialization/cssUnparsedValue.html
blob: c87553dd917b124fbe42d82d5d4b13d4499749b9 (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
<!doctype html>
<meta charset="utf-8">
<title>IDL-constructed CSSUnparsedValue serialization tests</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#unparsedvalue-serialization">
<meta name="assert" content="Test CSSUnparsedValue are serialized similar to getComputedStyle()" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<div id="tag"></div>
<div id="elem" style="color-scheme: bar/*comment*/var(--foo)"></div>
<script>
'use strict';

test(() => {
  assert_equals(new CSSUnparsedValue(['lem', 'on', 'ade']).toString(), 'lem/**/on/**/ade');
}, 'CSSUnparsedValue containing strings serializes to its tokenized contents');

test(() => {
  assert_equals(new CSSUnparsedValue([
      new CSSVariableReferenceValue('--A',
        new CSSUnparsedValue([new CSSVariableReferenceValue('--B')])),
      new CSSVariableReferenceValue('--C')]).toString(),
    'var(--A,var(--B))var(--C)');
}, 'CSSUnparsedValue containing variable references serializes its ' +
   'tokenized contents');

test(() => {
  assert_equals(new CSSUnparsedValue(['foo', 'bar ',
      new CSSVariableReferenceValue('--A',
        new CSSUnparsedValue(['baz ',
          new CSSVariableReferenceValue('--B'), 'lemon'])),
      new CSSVariableReferenceValue('--C',
        new CSSUnparsedValue(['ade']))]).toString(),
    'foo/**/bar var(--A,baz var(--B)lemon)var(--C,ade)');
}, 'CSSUnparsedValue containing mix of strings and variable references ' +
   'serializes to its tokenized contents');

test(() => {
  assert_equals(
      elem.attributeStyleMap.get("color-scheme").toString(),
      'bar/**/var(--foo)');
}, 'attributeStyleMap round-trips correctly, though the comment is gone');

</script>