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

Side by Side Diff: third_party/WebKit/LayoutTests/css1/text_properties/letter_spacing.html

Issue 2588283002: Most css1/ tests should wait for basebg.gif to be loaded (Closed)
Patch Set: fix Created 4 years 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
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org /TR/REC-html40/loose.dtd"> 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org /TR/REC-html40/loose.dtd">
2 <HTML> 2 <HTML>
3 <HEAD> 3 <HEAD>
4 <TITLE>CSS1 Test Suite: 5.4.2 letter-spacing</TITLE> 4 <TITLE>CSS1 Test Suite: 5.4.2 letter-spacing</TITLE>
5 <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 5 <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <META http-equiv="Content-Style-Type" content="text/css"> 6 <META http-equiv="Content-Style-Type" content="text/css">
7 7
8 <LINK rel="stylesheet" type="text/css" media="screen" href="../resources/base.cs s"> 8 <LINK rel="stylesheet" type="text/css" media="screen" href="../resources/base.cs s">
9 <SCRIPT src="../resources/base.js"></SCRIPT>
9 <STYLE type="text/css"> 10 <STYLE type="text/css">
10 .one {letter-spacing: 0.3in;} 11 .one {letter-spacing: 0.3in;}
11 .two {letter-spacing: 0.5cm;} 12 .two {letter-spacing: 0.5cm;}
12 .three {letter-spacing: 5mm;} 13 .three {letter-spacing: 5mm;}
13 .four {letter-spacing: 3pt;} 14 .four {letter-spacing: 3pt;}
14 .five {letter-spacing: 0.25pc;} 15 .five {letter-spacing: 0.25pc;}
15 .six {letter-spacing: 1em;} 16 .six {letter-spacing: 1em;}
16 .seven {letter-spacing: 1ex;} 17 .seven {letter-spacing: 1ex;}
17 .eight {letter-spacing: 5px;} 18 .eight {letter-spacing: 5px;}
18 .nine {letter-spacing: normal;} 19 .nine {letter-spacing: normal;}
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 This letters in this sentence should have extra space between them, but the last few words in the sentence <SPAN class="nine">should show normal spacing</SPAN>. 99 This letters in this sentence should have extra space between them, but the last few words in the sentence <SPAN class="nine">should show normal spacing</SPAN>.
99 </P> 100 </P>
100 <P class="ten"> 101 <P class="ten">
101 This letters in this sentence should have normal space between them, since perce ntage values are not allowed on this property. 102 This letters in this sentence should have normal space between them, since perce ntage values are not allowed on this property.
102 </P> 103 </P>
103 <P class="eleven"> 104 <P class="eleven">
104 This letters in this sentence should have reduced space between them, since nega tive values are allowed on this property. 105 This letters in this sentence should have reduced space between them, since nega tive values are allowed on this property.
105 </P> 106 </P>
106 </TD></TR></TABLE></BODY> 107 </TD></TR></TABLE></BODY>
107 </HTML> 108 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698