| OLD | NEW |
| (Empty) |
| 1 Test that setting and getting display: flex and inline-flex works as expected | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 Test getting |display| set through CSS | |
| 7 PASS getComputedStyle(flexboxElement, '').getPropertyValue('display') is 'flex' | |
| 8 PASS getComputedStyle(inlineFlexboxElement, '').getPropertyValue('display') is '
inline-flex' | |
| 9 | |
| 10 Test getting and setting display through JS | |
| 11 PASS getComputedStyle(element, '').getPropertyValue('display') is 'block' | |
| 12 PASS getComputedStyle(element, '').getPropertyValue('display') is 'flex' | |
| 13 PASS getComputedStyle(element, '').getPropertyValue('display') is 'block' | |
| 14 PASS getComputedStyle(element, '').getPropertyValue('display') is 'inline-flex' | |
| 15 PASS getComputedStyle(element, '').getPropertyValue('display') is 'flex' | |
| 16 PASS getComputedStyle(element, '').getPropertyValue('display') is 'inline-flex' | |
| 17 PASS successfullyParsed is true | |
| 18 | |
| 19 TEST COMPLETE | |
| 20 | |
| OLD | NEW |