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

Unified Diff: LayoutTests/fast/css/variables/var-inside-shorthand.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css/variables/var-inside-shorthand.html
diff --git a/LayoutTests/fast/css/variables/var-inside-shorthand.html b/LayoutTests/fast/css/variables/var-inside-shorthand.html
index 069a58f35b439673d6a2c922ae5028e8791ba699..262a5bf80046164308a014299a07e2b4f60c9942 100644
--- a/LayoutTests/fast/css/variables/var-inside-shorthand.html
+++ b/LayoutTests/fast/css/variables/var-inside-shorthand.html
@@ -1,8 +1,8 @@
<style>
body {
- -webkit-var-MyBorderColor: green;
+ var-MyBorderColor: green;
border: 10px solid red;
- border: 10px solid -webkit-var(MyBorderColor);
+ border: 10px solid var(MyBorderColor);
}
</style>
This text should be surrounded by a green border. There should be no red visible.
« no previous file with comments | « LayoutTests/fast/css/variables/var-inside-shape.html ('k') | LayoutTests/fast/css/variables/variable-chain.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698