| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |