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

Unified Diff: LayoutTests/transforms/backface-visibility-parsing.html

Issue 211213002: CSS Transforms: Implement backface-visibility (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 9 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 | « no previous file | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/transforms/backface-visibility-parsing.html
diff --git a/LayoutTests/transforms/transform-style-parsing.html b/LayoutTests/transforms/backface-visibility-parsing.html
similarity index 55%
copy from LayoutTests/transforms/transform-style-parsing.html
copy to LayoutTests/transforms/backface-visibility-parsing.html
index 1011a63458002b8944a92475df9dd76253eddbed..1fcf6c771014fc96a6a902e1b1a626898e0cf2ba 100644
--- a/LayoutTests/transforms/transform-style-parsing.html
+++ b/LayoutTests/transforms/backface-visibility-parsing.html
@@ -4,13 +4,13 @@
<div id="target"></div>
<script src="resources/parsing-test-helper.js"></script>
<script>
-expect = expect.bind(this, 'transform-style', 'transformStyle');
+expect = expect.bind(this, 'backface-visibility', 'backfaceVisibility');
-expect('initial').parsesAs('initial').isComputedTo('flat');
+expect('initial').parsesAs('initial').isComputedTo('visible');
expect('inherit').parsesAs('inherit');
-expect('flat').parsesAs('flat').isComputedTo('flat');
-expect('preserve-3d').parsesAs('preserve-3d').isComputedTo('preserve-3d');
+expect('visible').parsesAs('visible').isComputedTo('visible');
+expect('hidden').parsesAs('hidden').isComputedTo('hidden');
expect('none').isInvalid();
expect('0').isInvalid();
« no previous file with comments | « no previous file | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698