summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/colrv1-05-ref.html
blob: c58ef650dbc387299759d28f241a312fc41d4be8 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<meta charset=utf-8>
<title>COLRv1 font test: compositing operators</title>
<style>
.ref { margin: 10px; padding: 10px; line-height: 0; font-size: 0; }
span { display: inline-block; width: 100px; height: 100px; position: relative; }
</style>

<p>Some glyphs using PAINT_COMPOSITE:</p>
<!-- using blocks to imitate the composited layers in CAhem.ttf -->
<div class="ref">
  <span class=g>
    <div style="background: red; width: 70px; height: 70px; position: absolute; top: 0px; left: 0px;"></div>
    <div style="background: blue; width: 70px; height: 70px; position: absolute; bottom: 0px; right: 0px;"></div>
  </span>
  <span class=h>
    <div style="background: blue; width: 70px; height: 70px; position: absolute; bottom: 0px; right: 0px;"></div>
    <div style="background: red; width: 40px; height: 40px; position: absolute; top: 30px; left: 30px;"></div>
  </span>
  <span class=i>
    <div style="background: blue; width: 70px; height: 70px; position: absolute; bottom: 0px; right: 0px;"></div>
    <div style="background: white; width: 40px; height: 40px; position: absolute; top: 30px; left: 30px;"></div>
  </span>
  <span class=j>
    <div style="background: red; width: 40px; height: 40px; position: absolute; top: 30px; left: 30px;"></div>
  </span>
  <span class=k>
    <div style="background: red; width: 70px; height: 70px; position: absolute; top: 0px; left: 0px;"></div>
    <div style="background: blue; width: 70px; height: 70px; position: absolute; bottom: 0px; right: 0px;"></div>
    <div style="background: black; width: 40px; height: 40px; position: absolute; top: 30px; left: 30px;"></div>
  </span>
  <span class=l>
    <div style="background: red; width: 70px; height: 70px; position: absolute; top: 0px; left: 0px;"></div>
    <div style="background: blue; width: 70px; height: 70px; position: absolute; bottom: 0px; right: 0px;"></div>
    <div style="background: magenta; width: 40px; height: 40px; position: absolute; top: 30px; left: 30px;"></div>
  </span>
</div>

<p>And painting them to a canvas element:</p>
<canvas id=c width=600 height=100></canvas>
<script>
ctx = c.getContext("2d");

// glyph "g"
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 70, 70);
ctx.fillStyle = "blue";
ctx.fillRect(30, 30, 70, 70);
ctx.translate(100, 0);

// glyph "h"
ctx.fillStyle = "blue";
ctx.fillRect(30, 30, 70, 70);
ctx.fillStyle = "red";
ctx.fillRect(30, 30, 40, 40);
ctx.translate(100, 0);

// glyph "i"
ctx.fillStyle = "blue";
ctx.fillRect(30, 30, 70, 70);
ctx.fillStyle = "white";
ctx.fillRect(30, 30, 40, 40);
ctx.translate(100, 0);

// glyph "j"
ctx.fillStyle = "red";
ctx.fillRect(30, 30, 40, 40);
ctx.translate(100, 0);

// glyph "k"
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 70, 70);
ctx.fillStyle = "blue";
ctx.fillRect(30, 30, 70, 70);
ctx.fillStyle = "black";
ctx.fillRect(30, 30, 40, 40);
ctx.translate(100, 0);

// glyph "l"
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 70, 70);
ctx.fillStyle = "blue";
ctx.fillRect(30, 30, 70, 70);
ctx.fillStyle = "magenta";
ctx.fillRect(30, 30, 40, 40);
ctx.translate(100, 0);

</script>