diff options
Diffstat (limited to 'Base/res')
-rw-r--r-- | Base/res/html/misc/font-face.html | 70 | ||||
-rw-r--r-- | Base/res/html/misc/test-cff.woff | bin | 0 -> 1052 bytes | |||
-rw-r--r-- | Base/res/html/misc/test-cff.woff2 | bin | 0 -> 684 bytes | |||
-rw-r--r-- | Base/res/html/misc/test-truetype.woff | bin | 0 -> 1108 bytes | |||
-rw-r--r-- | Base/res/html/misc/test-truetype.woff2 | bin | 0 -> 640 bytes | |||
-rw-r--r-- | Base/res/html/misc/test.otf | bin | 0 -> 1476 bytes | |||
-rw-r--r-- | Base/res/html/misc/test.ttf | bin | 0 -> 1520 bytes |
7 files changed, 70 insertions, 0 deletions
diff --git a/Base/res/html/misc/font-face.html b/Base/res/html/misc/font-face.html new file mode 100644 index 0000000000..742a638239 --- /dev/null +++ b/Base/res/html/misc/font-face.html @@ -0,0 +1,70 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>CSS @font-face Test</title> +<style> +@font-face { + font-family: TestWOFF-TTF; + src: url("./test-truetype.woff") format("woff"); +} +.woff-ttf { + font-family: TestWOFF-TTF; +} + +@font-face { + font-family: TestWOFF-CFF; + src: url("./test-cff.woff") format("woff"); +} +.woff-cff { + font-family: TestWOFF-CFF; +} + +@font-face { + font-family: TestWOFF2-TTF; + src: url("./test-truetype.woff2") format("woff2"); +} +.woff2-ttf { + font-family: TestWOFF2-TTF; +} + +@font-face { + font-family: TestWOFF2-CFF; + src: url("./test-cff.woff2") format("woff2"); +} +.woff2-cff { + font-family: TestWOFF2-CFF; +} + +@font-face { + font-family: TestTTF; + src: url("./test.ttf") format("truetype"); +} +.ttf { + font-family: TestTTF; +} + +@font-face { + font-family: TestOTF; + src: url("./test.otf") format("opentype"); +} +.otf { + font-family: TestOTF; +} + +body { + font-family: sans-serif; +} + +</style> +</head> +<body> +<p>These should render checkmarks, not X's</p> +<p>WOFF with TTF: <span class="woff-ttf">X</span></p> +<p>WOFF with CFF: <span class="woff-cff">X</span></p> +<p>WOFF2 with TTF: <span class="woff2-ttf">X</span></p> +<p>WOFF2 with CFF: <span class="woff2-cff">X</span></p> +<p>TTF: <span class="ttf">X</span></p> +<p>OTF: <span class="otf">X</span></p> +</body> +</html> diff --git a/Base/res/html/misc/test-cff.woff b/Base/res/html/misc/test-cff.woff Binary files differnew file mode 100644 index 0000000000..902dd26c73 --- /dev/null +++ b/Base/res/html/misc/test-cff.woff diff --git a/Base/res/html/misc/test-cff.woff2 b/Base/res/html/misc/test-cff.woff2 Binary files differnew file mode 100644 index 0000000000..3f49898481 --- /dev/null +++ b/Base/res/html/misc/test-cff.woff2 diff --git a/Base/res/html/misc/test-truetype.woff b/Base/res/html/misc/test-truetype.woff Binary files differnew file mode 100644 index 0000000000..afe7cb10ca --- /dev/null +++ b/Base/res/html/misc/test-truetype.woff diff --git a/Base/res/html/misc/test-truetype.woff2 b/Base/res/html/misc/test-truetype.woff2 Binary files differnew file mode 100644 index 0000000000..756f2114b8 --- /dev/null +++ b/Base/res/html/misc/test-truetype.woff2 diff --git a/Base/res/html/misc/test.otf b/Base/res/html/misc/test.otf Binary files differnew file mode 100644 index 0000000000..2f61c3cac3 --- /dev/null +++ b/Base/res/html/misc/test.otf diff --git a/Base/res/html/misc/test.ttf b/Base/res/html/misc/test.ttf Binary files differnew file mode 100644 index 0000000000..e0ccbed18e --- /dev/null +++ b/Base/res/html/misc/test.ttf |