Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: LayoutTests/fast/text/emoji-web-font.html

Issue 954953002: Adding GetTableAction method to Blink to handle color table tags (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updating Test Expectation for Virtual test Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/text/emoji-web-font-expected.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/text/emoji-web-font.html
diff --git a/LayoutTests/fast/text/emoji-web-font.html b/LayoutTests/fast/text/emoji-web-font.html
new file mode 100644
index 0000000000000000000000000000000000000000..f403fdff01b2d549a8e8f3b00acabe71824a6047
--- /dev/null
+++ b/LayoutTests/fast/text/emoji-web-font.html
@@ -0,0 +1,26 @@
+<html>
+<head>
+<style type="text/css">
+@font-face {
+ font-family: FruityGirl;
+ src: url(../../third_party/FruityGirl/FruityGirl.ttf) format("truetype");
+}
+
+#emojiLatin {
+ font-family: FruityGirl;
+ font-size:25px;
+}
+
+#normal {
+ font-size:25px;
+}
+</style>
+</head>
+<body>
+<p>Following should show Asterisk with FruitGirl similar to Asterisk Image below</p>
+<p id="emojiLatin">&#x002A;</p>
+<img src="../../third_party/FruityGirl/002A.png" alt="Asterisk" height="25" width="25">
+<p>Normal rendering of Asterisk with default font</p>
+<p id="normal">&#x002A;</p>
+</body>
+</html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/text/emoji-web-font-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698