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

Side by Side Diff: LayoutTests/fast/css/variables/var-inside-shape.html

Issue 14987004: Switching CSS Variables over to RuntimeEnabledFeatures (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 <script>
4 if (window.internals)
5 internals.settings.setCSSVariablesEnabled(true);
6 </script>
7 <style> 3 <style>
8 :root { 4 :root {
9 -webkit-var-a: 100px; 5 -webkit-var-a: 100px;
10 } 6 }
11 .a { 7 .a {
12 -webkit-shape-inside: ellipse(-webkit-var(a), -webkit-var(a), -webkit-var(a) , -webkit-var(a)); 8 -webkit-shape-inside: ellipse(-webkit-var(a), -webkit-var(a), -webkit-var(a) , -webkit-var(a));
13 } 9 }
14 .b { 10 .b {
15 -webkit-shape-inside: circle(-webkit-var(a), -webkit-var(a), -webkit-var(a)) ; 11 -webkit-shape-inside: circle(-webkit-var(a), -webkit-var(a), -webkit-var(a)) ;
16 } 12 }
(...skipping 10 matching lines...) Expand all
27 <div class="b"> 23 <div class="b">
28 Some text. 24 Some text.
29 </div> 25 </div>
30 <div class="c"> 26 <div class="c">
31 Some text. 27 Some text.
32 </div> 28 </div>
33 <div class="d"> 29 <div class="d">
34 Some text. 30 Some text.
35 </div> 31 </div>
36 </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