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

Side by Side Diff: third_party/WebKit/LayoutTests/css1/text_properties/text_align.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.6 text-align</TITLE> 4 <TITLE>CSS1 Test Suite: 5.4.6 text-align</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 {text-align: left;} 11 .one {text-align: left;}
11 .two {text-align: right;} 12 .two {text-align: right;}
12 .three {text-align: center;} 13 .three {text-align: center;}
13 .four {text-align: justify;} 14 .four {text-align: justify;}
14 </STYLE> 15 </STYLE>
15 16
16 </HEAD> 17 </HEAD>
17 18
18 <BODY><P>The style declarations which apply to the text below are:</P> 19 <BODY><P>The style declarations which apply to the text below are:</P>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 This sentence should be right-justified. 51 This sentence should be right-justified.
51 </P> 52 </P>
52 <P class="three"> 53 <P class="three">
53 This sentence should be centered. 54 This sentence should be centered.
54 </P> 55 </P>
55 <P class="four"> 56 <P class="four">
56 This sentence should be fully justified, which means that the right and left mar gins of this paragraph should line up, no matter how long the paragraph becomes; the exception, of course, is the last line, which should be left-justified in W estern languages. 57 This sentence should be fully justified, which means that the right and left mar gins of this paragraph should line up, no matter how long the paragraph becomes; the exception, of course, is the last line, which should be left-justified in W estern languages.
57 </P> 58 </P>
58 </TD></TR></TABLE></BODY> 59 </TD></TR></TABLE></BODY>
59 </HTML> 60 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698