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

Side by Side Diff: LayoutTests/fast/css/variables/var-inside-shape.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <style> 3 <style>
4 :root { 4 :root {
5 -webkit-var-a: 100px; 5 var-a: 100px;
6 } 6 }
7 .a { 7 .a {
8 -webkit-shape-inside: ellipse(-webkit-var(a), -webkit-var(a), -webkit-var(a) , -webkit-var(a)); 8 -webkit-shape-inside: ellipse(var(a), var(a), var(a), var(a));
9 } 9 }
10 .b { 10 .b {
11 -webkit-shape-inside: circle(-webkit-var(a), -webkit-var(a), -webkit-var(a)) ; 11 -webkit-shape-inside: circle(var(a), var(a), var(a));
12 } 12 }
13 .c { 13 .c {
14 -webkit-shape-inside: rectange(-webkit-var(a)); 14 -webkit-shape-inside: rectange(var(a));
15 } 15 }
16 .d { 16 .d {
17 -webkit-shape-inside: polygon(-webkit-var(a), -webkit-var(a), -webkit-var(a) , -webkit-var(a)); 17 -webkit-shape-inside: polygon(var(a), var(a), var(a), var(a));
18 } 18 }
19 </style> 19 </style>
20 <div class="a"> 20 <div class="a">
21 Some text. 21 Some text.
22 </div> 22 </div>
23 <div class="b"> 23 <div class="b">
24 Some text. 24 Some text.
25 </div> 25 </div>
26 <div class="c"> 26 <div class="c">
27 Some text. 27 Some text.
28 </div> 28 </div>
29 <div class="d"> 29 <div class="d">
30 Some text. 30 Some text.
31 </div> 31 </div>
32 </html> 32 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/variables/var-inside-quad.html ('k') | LayoutTests/fast/css/variables/var-inside-shorthand.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698