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

Side by Side Diff: LayoutTests/fast/css/variables/transform-test.html

Issue 16183002: Unprefix CSS Variables (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased and updated prefix test 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <style> 1 <style>
2 div { 2 div {
3 display: inline-block; 3 display: inline-block;
4 -webkit-var-a: 0.866; 4 var-a: 0.866;
5 -webkit-var-b: 0.5; 5 var-b: 0.5;
6 -webkit-var-c: -0.5; 6 var-c: -0.5;
7 -webkit-var-d: 0; 7 var-d: 0;
8 -webkit-transform: matrix(-webkit-var(a),-webkit-var(b),-webkit-var(c),-webk it-var(a),-webkit-var(d),-webkit-var(d)); 8 -webkit-transform: matrix(var(a),var(b),var(c),var(a),var(d),var(d));
9 background-color: green; 9 background-color: green;
10 } 10 }
11 </style> 11 </style>
12 <div>Rotated</div> 12 <div>Rotated</div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/variables/simple-cycle.html ('k') | LayoutTests/fast/css/variables/undefined.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698