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

Unified Diff: LayoutTests/css3/flexbox/display-flexbox-set-get-expected.txt

Issue 15758002: Unprefix Flexbox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/css3/flexbox/display-flexbox-set-get.html ('k') | LayoutTests/css3/flexbox/flexitem.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/flexbox/display-flexbox-set-get-expected.txt
diff --git a/LayoutTests/css3/flexbox/display-flexbox-set-get-expected.txt b/LayoutTests/css3/flexbox/display-flexbox-set-get-expected.txt
index a8ebaf2fa315b7cda563c8aca645aa97adf5c596..a0d1b61fa596a0bfa34d0a9a3142e64cb7edc9d0 100644
--- a/LayoutTests/css3/flexbox/display-flexbox-set-get-expected.txt
+++ b/LayoutTests/css3/flexbox/display-flexbox-set-get-expected.txt
@@ -1,17 +1,19 @@
-Test that setting and getting display: -webkit-flex and -webkit-inline-flex works as expected
+Test that setting and getting display: flex and inline-flex works as expected
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Test getting |display| set through CSS
-PASS getComputedStyle(flexboxElement, '').getPropertyValue('display') is '-webkit-flex'
-PASS getComputedStyle(inlineFlexboxElement, '').getPropertyValue('display') is '-webkit-inline-flex'
+PASS getComputedStyle(flexboxElement, '').getPropertyValue('display') is 'flex'
+PASS getComputedStyle(inlineFlexboxElement, '').getPropertyValue('display') is 'inline-flex'
Test getting and setting display through JS
PASS getComputedStyle(element, '').getPropertyValue('display') is 'block'
-PASS getComputedStyle(element, '').getPropertyValue('display') is '-webkit-flex'
+PASS getComputedStyle(element, '').getPropertyValue('display') is 'flex'
PASS getComputedStyle(element, '').getPropertyValue('display') is 'block'
-PASS getComputedStyle(element, '').getPropertyValue('display') is '-webkit-inline-flex'
+PASS getComputedStyle(element, '').getPropertyValue('display') is 'inline-flex'
+PASS getComputedStyle(element, '').getPropertyValue('display') is 'flex'
+PASS getComputedStyle(element, '').getPropertyValue('display') is 'inline-flex'
PASS successfullyParsed is true
TEST COMPLETE
« no previous file with comments | « LayoutTests/css3/flexbox/display-flexbox-set-get.html ('k') | LayoutTests/css3/flexbox/flexitem.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698