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

Side by Side Diff: LayoutTests/ietestcenter/css3/grid/grid-column-003.htm

Issue 291823004: Update Ahem capitalization in LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR /xhtml1/DTD/xhtml1-strict.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR /xhtml1/DTD/xhtml1-strict.dtd">
2 <!-- 2 <!--
3 Internet Explorer Test Pages Copyright © 2012 Microsoft Corporation. All rights reserved. 3 Internet Explorer Test Pages Copyright © 2012 Microsoft Corporation. All rights reserved.
4 4
5 Redistribution and use in source and binary forms, with or without modification , 5 Redistribution and use in source and binary forms, with or without modification ,
6 are permitted provided that the following conditions are met: 6 are permitted provided that the following conditions are met:
7 7
8 Redistributions of source code must retain the above copyright notice, this lis t of 8 Redistributions of source code must retain the above copyright notice, this lis t of
9 conditions and the following disclaimer. 9 conditions and the following disclaimer.
10 10
(...skipping 26 matching lines...) Expand all
37 <link rel="stylesheet" href="testRunner.css"> 37 <link rel="stylesheet" href="testRunner.css">
38 <style type="text/css"> 38 <style type="text/css">
39 #test 39 #test
40 { 40 {
41 color: green; 41 color: green;
42 display: -ms-grid; 42 display: -ms-grid;
43 display: -moz-grid; 43 display: -moz-grid;
44 display: -o-grid; 44 display: -o-grid;
45 display: -webkit-grid; 45 display: -webkit-grid;
46 display: grid; 46 display: grid;
47 font: 20px/1 ahem; 47 font: 20px/1 Ahem;
48 height: 3em; 48 height: 3em;
49 -ms-grid-template-columns: auto 1fr; 49 -ms-grid-template-columns: auto 1fr;
50 -moz-grid-template-columns: auto 1fr; 50 -moz-grid-template-columns: auto 1fr;
51 -o-grid-template-columns: auto 1fr; 51 -o-grid-template-columns: auto 1fr;
52 -webkit-grid-template-columns: auto 1fr; 52 -webkit-grid-template-columns: auto 1fr;
53 grid-template-columns: auto 1fr; 53 grid-template-columns: auto 1fr;
54 -ms-grid-template-rows: auto 1fr; 54 -ms-grid-template-rows: auto 1fr;
55 -moz-grid-template-rows: auto 1fr; 55 -moz-grid-template-rows: auto 1fr;
56 -o-grid-template-rows: auto 1fr; 56 -o-grid-template-rows: auto 1fr;
57 -webkit-grid-template-rows: auto 1fr; 57 -webkit-grid-template-rows: auto 1fr;
(...skipping 20 matching lines...) Expand all
78 </style> 78 </style>
79 </head> 79 </head>
80 <body> 80 <body>
81 <p>Test passes if there is no red visible on the page.</p> 81 <p>Test passes if there is no red visible on the page.</p>
82 <div id="test"> 82 <div id="test">
83 <div><span>XX</span>X<span>XX</span></div> 83 <div><span>XX</span>X<span>XX</span></div>
84 <div id="griditem">XX XX</div> 84 <div id="griditem">XX XX</div>
85 </div> 85 </div>
86 </body> 86 </body>
87 </html> 87 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698