summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/parsing/background-shorthand-serialization.html
blob: 5212303784bc0ed9086837dd8cf5db51b1eb1db3 (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Background Shorthand Serialization Test: background shorthand should only serialize non-initial values</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background">
<meta name="assert" content="background shorthand should only serialize non-initial values">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
  const element = document.createElement('div');

  test((t) => {
    element.style = 'background: yellow;';
    assert_equals(element.style.background , 'yellow');
  }, "single value");

  test((t) => {
    element.style = 'background: no-repeat url(/favicon.ico);';
    assert_equals(element.style.background , 'url("/favicon.ico") no-repeat');
  }, "multiple values");

  test((t) => {
    element.style = 'background: url(/favicon.ico) no-repeat, url(/favicon.ico) no-repeat;';
    assert_equals(element.style.background , 'url("/favicon.ico") no-repeat, url("/favicon.ico") no-repeat');
  }, "multiple backgrounds");

  test((t) => {
    element.style = 'background: url("/favicon.ico") 0% 0% / 10rem;';
    assert_equals(element.style.background , 'url("/favicon.ico") 0% 0% / 10rem');
  }, "background-size with non-initial background-position");

  test((t) => {
    element.style = `background: url(/favicon.ico) top left no-repeat,
        url(/favicon.ico) center / 100% 100% no-repeat,
        url(/favicon.ico) white;`;
    assert_equals(element.style.background , 'url("/favicon.ico") left top no-repeat, url("/favicon.ico") center center / 100% 100% no-repeat, white url("/favicon.ico")');
  }, "multiple backgrounds with varying values");

  test((t) => {
    element.style = `background: padding-box border-box;`;
    assert_equals(element.style.background , 'none');
  }, "all initial values");
</script>