1# Note: this test is really an analog of box_with_corners_and_border. This
2# should produce an identical result.
3text {
4  text {
5    value: "Hello World"
6  }
7  modifiers {
8    background {
9      color {
10        argb: 0xFF00FF00
11      }
12      corner {
13        radius {
14          value: 5
15        }
16      }
17    }
18    padding {
19      end {
20        value: 10
21      }
22      top {
23        value: 20
24      }
25      bottom {
26        value: 30
27      }
28      start {
29        value: 40
30      }
31    }
32    border {
33      color {
34        argb: 0xFFFF0000
35      }
36      width {
37        value: 5
38      }
39    }
40  }
41}
42