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

Side by Side Diff: LayoutTests/svg/text/alt-glpyh-on-fallback-font-crash.svg

Issue 656913006: Remove SVG fonts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update tests for landing Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <g>
3 <defs>
4 <font>
5 <font-face font-family="HappySad">
6 </font-face>
7 </font>
8 </defs>
9 <g font-family="HappySad" style="-webkit-writing-mode: vertical-rl; ">
10 <text>
11 <altGlyph>A</altGlyph>
12 A: This test passes if you see two As at the start of this message.
13 </text>
14 </g>
15 </g>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19
20 var docElement = document.body ? document.body : document.documentElement;
21 if (docElement) docElement.offsetTop;
22 </script>
23 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698