summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-typed-om/stylevalue-serialization/cssKeywordValue.tentative.html
blob: 1e2041d80dc059ead3c9493f780f6d47994501e4 (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
<!doctype html>
<meta charset="utf-8">
<title>IDL-constructed CSSKeywordValue serialization tests</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#unparsedvalue-serialization">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/testhelper.js"></script>
<body>
<script>
'use strict';

test(() => {
  assert_equals(new CSSKeywordValue('auto').toString(), 'auto');
  assert_equals(new CSSKeywordValue('inherit').toString(), 'inherit');
  assert_equals(new CSSKeywordValue('lemon').toString(), 'lemon');
}, 'CSSKeywordValue constructed from IDL serializes correctly');

test(() => {
  assert_equals(new CSSKeywordValue(' Hello World').toString(), CSS.escape(' Hello World'));
  assert_equals(new CSSKeywordValue('3').toString(), CSS.escape('3'));
}, 'CSSKeywordValue constructed from IDL serializes to escaped strings');

test(() => {
  let result = CSSStyleValue.parse('width', 'auto');
  result.value = 'lemon';
  assert_equals(result.toString(), 'lemon');
}, 'CSSKeywordValue from DOMString modified through "value" setter serializes correctly');

test(t => {
  let result = createInlineStyleMap(t, 'width: auto').get('width');
  result.value = 'lemon';
  assert_equals(result.toString(), 'lemon');
}, 'CSSKeywordValue from CSSOM modified through "value" setter serializes correctly');

</script>