Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / flexbox / display-flexbox-set-get-expected.txt
bloba0d1b61fa596a0bfa34d0a9a3142e64cb7edc9d0
1 Test that setting and getting display: flex and inline-flex works as expected
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 Test getting |display| set through CSS
7 PASS getComputedStyle(flexboxElement, '').getPropertyValue('display') is 'flex'
8 PASS getComputedStyle(inlineFlexboxElement, '').getPropertyValue('display') is 'inline-flex'
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
19 TEST COMPLETE