summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-typed-om/stylevalue-serialization/cssStyleValue-cssom.html
blob: 5f21bfaa617d88744fcaf0e7cab546a60e6e5ff1 (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
<!doctype html>
<meta charset="utf-8">
<title>CSSStyleValue serialization from CSSOM</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#stylevalue-serialization">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/testhelper.js"></script>
<body>
<div id="log"></div>
<script>
'use strict';

test(t => {
  const result = createInlineStyleMap(t, 'color: red').get('color');
  assert_equals(result.toString(), 'red');
}, 'CSSStyleValue from specified CSSOM serializes correctly');

test(t => {
  const result = createComputedStyleMap(t, 'color: red').get('color');
  assert_equals(result.toString(), 'rgb(255, 0, 0)');
}, 'CSSStyleValue from computed CSSOM serializes correctly');

test(t => {
  const result = createInlineStyleMap(t, 'background: blue').get('background');
  assert_equals(result.toString(), 'blue');
}, 'Shorthand CSSStyleValue from inline CSSOM serializes correctly');

test(t => {
  const result = createComputedStyleMap(t, 'background: blue').get('background');
  assert_equals(result.toString(), 'rgb(0, 0, 255) none repeat scroll 0% 0% / auto padding-box border-box');
}, 'Shorthand CSSStyleValue from computed CSSOM serializes correctly');

</script>