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

Side by Side Diff: LayoutTests/fast/css/variables/case-sensitive.html

Issue 16081003: [CSS] -webkit-var must be case sensitive according to specs (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script> 3 <script>
4 internals.settings.setCSSVariablesEnabled(true); 4 internals.settings.setCSSVariablesEnabled(true);
5 </script> 5 </script>
6 <style> 6 <style>
7 div { 7 div {
8 background-color: -webkit-var(NaMe); 8 background-color: -webkit-var(NaMe);
9 -webkit-var-nAmE: green; 9 -webkit-var-nAmE: green;
10 padding-left: -webkit-var(padding);
11 -WEBKIT-VAR-padding: 200px;
10 } 12 }
11 </style> 13 </style>
12 <div>This text should have a transparent background.</div> 14 <div>This text should have a transparent background and no left padding.</div>
13 </html> 15 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/variables/case-sensitive-expected.html » ('j') | Source/core/css/CSSParser.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698