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

Side by Side Diff: LayoutTests/fast/alignment/parse-justify-items.html

Issue 1136283006: [CSS Grid Layout] Avoid using StyleAdjuster to resolve 'auto' values. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed some layout tests failures. Created 5 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #justifyItemsBaseline { 5 #justifyItemsBaseline {
6 justify-items: baseline; 6 justify-items: baseline;
7 } 7 }
8 8
9 #justifyItemsLastBaseline { 9 #justifyItemsLastBaseline {
10 justify-items: last-baseline; 10 justify-items: last-baseline;
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 checkInitialValues(element, "justifyItems", "justify-items", "right true", "stre tch"); 307 checkInitialValues(element, "justifyItems", "justify-items", "right true", "stre tch");
308 308
309 debug(""); 309 debug("");
310 debug("Test the value 'inherit'"); 310 debug("Test the value 'inherit'");
311 checkInheritValues("justifyItems", "justify-items", "end"); 311 checkInheritValues("justifyItems", "justify-items", "end");
312 checkInheritValues("justifyItems", "justify-items", "left safe"); 312 checkInheritValues("justifyItems", "justify-items", "left safe");
313 checkInheritValues("justifyItems", "justify-items", "legacy center"); 313 checkInheritValues("justifyItems", "justify-items", "legacy center");
314 314
315 debug(""); 315 debug("");
316 debug("Test the value 'legacy'"); 316 debug("Test the value 'legacy'");
317 checkLegacyValues("justifyItems", "justify-items", "legacy left"); 317 checkLegacyValues("justifyItems", "justify-items", "legacy left", "left");
318 checkLegacyValues("justifyItems", "justify-items", "legacy center"); 318 checkLegacyValues("justifyItems", "justify-items", "legacy center", "center");
319 checkLegacyValues("justifyItems", "justify-items", "legacy right"); 319 checkLegacyValues("justifyItems", "justify-items", "legacy right", "right");
320 320
321 </script> 321 </script>
322 </body> 322 </body>
323 </html> 323 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698