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

Side by Side Diff: LayoutTests/fast/css/variables/value-case-sensitive.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 #test:after { 4 #test:after {
5 -webkit-var-text: "ThIs LiNe oF TeXt sHoUlD Be iN MiXeD CaSe."; 5 var-text: "ThIs LiNe oF TeXt sHoUlD Be iN MiXeD CaSe.";
6 content: -webkit-var(text); 6 content: var(text);
7 } 7 }
8 </style> 8 </style>
9 <div>There should be two lines of text, the latter containing mixed case.</div> 9 <div>There should be two lines of text, the latter containing mixed case.</div>
10 <div id="test"></div> 10 <div id="test"></div>
11 </html> 11 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/variables/use-before-defined.html ('k') | LayoutTests/fast/css/variables/var-filter.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698