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

Side by Side Diff: LayoutTests/transforms/perspective-parsing.html

Issue 98663004: Add support for unprefixed CSS Transforms (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <div id="target"></div>
5 <script src="resources/parsing-test-helper.js"></script>
6 <script>
7 expect = expect.bind(this, 'perspective', 'perspective');
8
9 expect('initial').parsesAs('initial').isComputedTo('none');
10 expect('inherit').parsesAs('inherit');
11
12 expect('none').parsesAs('none').isComputedTo('none');
13 expect('1px').parsesAs('1px').isComputedTo('1px');
14
15 expect('0').isInvalid();
16 expect('0px').isInvalid();
17 expect('5').isInvalid();
18 expect('-1px').isInvalid();
19 expect('50%').isInvalid();
20 </script>
OLDNEW
« no previous file with comments | « LayoutTests/transforms/perspective-origin-parsing.html ('k') | LayoutTests/transforms/perspective-parsing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698