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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/display-flexbox-set-get-expected.txt

Issue 2130543003: Convert some flexbox tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698