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

Side by Side Diff: third_party/WebKit/LayoutTests/css1/text_properties/text_indent.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.7 text-indent</TITLE> 4 <TITLE>CSS1 Test Suite: 5.4.7 text-indent</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-indent: 0.5in; background: aqua;} 11 .one {text-indent: 0.5in; background: aqua;}
11 .two {text-indent: 2cm; background: aqua;} 12 .two {text-indent: 2cm; background: aqua;}
12 .three {text-indent: 20mm; background: aqua;} 13 .three {text-indent: 20mm; background: aqua;}
13 .four {text-indent: 24pt; background: aqua;} 14 .four {text-indent: 24pt; background: aqua;}
14 .five {text-indent: 2pc; background: aqua;} 15 .five {text-indent: 2pc; background: aqua;}
15 .six {text-indent: 2em; background: aqua;} 16 .six {text-indent: 2em; background: aqua;}
16 .seven {text-indent: 2ex; background: aqua;} 17 .seven {text-indent: 2ex; background: aqua;}
17 .eight {text-indent: 50%; background: aqua;} 18 .eight {text-indent: 50%; background: aqua;}
18 .nine {text-indent: 25px; background: aqua;} 19 .nine {text-indent: 25px; background: aqua;}
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 <P class="one"> 109 <P class="one">
109 Only the first line of this sentence should be indented half an inch,<BR> 110 Only the first line of this sentence should be indented half an inch,<BR>
110 no matter where the lines might start, and<BR> 111 no matter where the lines might start, and<BR>
111 <EM>regardless of any other markup</EM> which may be present. 112 <EM>regardless of any other markup</EM> which may be present.
112 </P> 113 </P>
113 <blockquote> 114 <blockquote>
114 In the first half of the test page, this BLOCKQUOTE element should have a text i ndent equal to 50% of the BODY element's width, since BLOCKQUOTE is a child of B ODY; in the second half, it is a child of TABLE. 115 In the first half of the test page, this BLOCKQUOTE element should have a text i ndent equal to 50% of the BODY element's width, since BLOCKQUOTE is a child of B ODY; in the second half, it is a child of TABLE.
115 </blockquote> 116 </blockquote>
116 </TD></TR></TABLE></BODY> 117 </TD></TR></TABLE></BODY>
117 </HTML> 118 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698