summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/text-shadow-orientation-upright-001.html
blob: faa5b0acc03257e83c7fc7091ffba249ff6b5fca (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>

  <meta charset="UTF-8">

  <title>CSS Writing Modes Test: 'text-shadow' and upright text orientation</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
  <link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#physical-only">
  <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-shadow-property">
  <link rel="match" href="reference/text-shadow-orientation-upright-001-ref.html">
  <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">

  <!--

  Issue 229211: text-shadow is drawn at the invalid position in vertical writing mode
  on Chromium for Mac
  https://bugs.chromium.org/p/chromium/issues/detail?id=229211#c8

  -->

  <meta content="This test checks that text-shadow offsets are purely physical and do not change with vertical writing mode.">

  <style>
  div
    {
      color: yellow;
      font-family: Ahem;
      font-size: 100px;
      line-height: 1;
      margin: calc(1em + 8px) auto auto 1em;
      text-orientation: upright;
      writing-mode: vertical-rl;

      text-shadow: 0em -1em purple, 1em 0em blue, 0em 1em fuchsia, -1em 0em orange;
    }

  /*

  Value: [ <color>? && <length>{2,3} ]#

  color: color of text-shadow

  1st <length>
    Specifies the horizontal offset
    of the shadow. A positive value draws a shadow that is
    offset to the right of the box, a negative length to the
    left.

  2nd <length>
    Specifies the vertical offset
    of the shadow. A positive value offsets the shadow down,
    a negative one up.

  */

  </style>

  <div>A</div>

  <!--

                  .........
                  .       .
                  .       . <-purple
                  .       .
           .......................
           .      .       .      .
  orange-> .      .  yel  .      . <-blue
           .      .  low  .      .
           .......................
                  .       .
                  .       . <-fuchsia
                  .       .
                  .........

  -->