csswg/css3-fonts Overview.html,1.17,1.18

Update of /sources/public/csswg/css3-fonts
In directory hutz:/tmp/cvs-serv10989

Modified Files:
	Overview.html 
Log Message:
appeasing the pubchecker gods

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-fonts/Overview.html,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- Overview.html	23 Mar 2011 06:58:22 -0000	1.17
+++ Overview.html	23 Mar 2011 07:08:32 -0000	1.18
@@ -1945,7 +1945,7 @@
    <pre>
 @font-face {
   font-family: Gentium;
-  src: url(http://site/fonts/Gentium.ttf);
+  src: url(http://example.com/fonts/Gentium.ttf);
 }
 
 p { font-family: Gentium, serif; }
@@ -4484,7 +4484,7 @@
 
    <pre>@font-face {
   font-family: MainText;
-  src: url(http://site/font.ttf);
+  src: url(http://example.com/font.ttf);
   font-variant: oldstyle-nums proportional-nums styleset(1,3);
 }
 
@@ -4593,10 +4593,10 @@
   <pre>
 /* same origin (i.e. domain, protocol, port match document) */
 src: url(fonts/simple.ttf);                     
-src: url(http://fonts/simple.ttf);                     
+src: url(//fonts/simple.ttf);                     
 
 /* cross origin, different protocol */
-src: url(https://fonts/simple.ttf);              
+src: url(https://example.com/fonts/simple.ttf);              
 
 /* cross origin, different domain */
 src: url(http://another.example.com/fonts/simple.ttf); 

Received on Wednesday, 23 March 2011 07:08:36 UTC