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

Side by Side Diff: LayoutTests/svg/W3C-SVG-1.1-SE/text-intro-09-b.svg

Issue 243453003: Proper unicode-range font loading behavior (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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
1 <svg version="1.1" baseProfile="basic" id="svg-root" 1 <svg version="1.1" baseProfile="basic" id="svg-root"
2 width="100%" height="100%" viewBox="0 0 480 360" 2 width="100%" height="100%" viewBox="0 0 480 360"
3 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> 3 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4 <!--======================================================================--> 4 <!--======================================================================-->
5 <!--= SVG 1.1 2nd Edition Test Case =--> 5 <!--= SVG 1.1 2nd Edition Test Case =-->
6 <!--======================================================================--> 6 <!--======================================================================-->
7 <!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =--> 7 <!--= Copyright 2009 World Wide Web Consortium, (Massachusetts =-->
8 <!--= Institute of Technology, European Research Consortium for =--> 8 <!--= Institute of Technology, European Research Consortium for =-->
9 <!--= Informatics and Mathematics (ERCIM), Keio University). =--> 9 <!--= Informatics and Mathematics (ERCIM), Keio University). =-->
10 <!--= All Rights Reserved. =--> 10 <!--= All Rights Reserved. =-->
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 <g font-family="SVGFreeSansASCII,sans-serif" font-size="32"> 79 <g font-family="SVGFreeSansASCII,sans-serif" font-size="32">
80 <text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.6 $</text> 80 <text id="revision" x="10" y="340" stroke="none" fill="black">$Revision: 1.6 $</text>
81 </g> 81 </g>
82 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke= "#000000"/> 82 <rect id="test-frame" x="1" y="1" width="478" height="358" fill="none" stroke= "#000000"/>
83 <!-- comment out this watermark once the test is approved --> 83 <!-- comment out this watermark once the test is approved -->
84 <!--<g id="draft-watermark"> 84 <!--<g id="draft-watermark">
85 <rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-w idth="1"/> 85 <rect x="1" y="1" width="478" height="20" fill="red" stroke="black" stroke-w idth="1"/>
86 <text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size ="20" x="240" 86 <text font-family="SVGFreeSansASCII,sans-serif" font-weight="bold" font-size ="20" x="240"
87 text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white" >DRAFT</text> 87 text-anchor="middle" y="18" stroke-width="0.5" stroke="black" fill="white" >DRAFT</text>
88 </g>--> 88 </g>-->
89 <script>
90 if (window.testRunner) {
91 testRunner.waitUntilDone();
92 pendingFonts = 3;
93 document.fonts.onloadingdone = document.fonts.onloadingerror = function (e) {
94 pendingFonts -= e.fontfaces.length;
95 if (pendingFonts == 0)
96 testRunner.notifyDone();
97 };
98 }
99 </script>
89 </svg> 100 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698