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

Unified Diff: LayoutTests/fast/css/variables/calc.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/calc.html
diff --git a/LayoutTests/fast/css/variables/calc.html b/LayoutTests/fast/css/variables/calc.html
index 487c88b45ba788c94897c48cbb29b7593af8ac00..6c1d64c0a366ebc7967f9752240baa83bc505015 100644
--- a/LayoutTests/fast/css/variables/calc.html
+++ b/LayoutTests/fast/css/variables/calc.html
@@ -4,11 +4,11 @@
div {
border-color: green;
border-style: solid;
- border-width: -webkit-calc(-webkit-var(a) + -webkit-var(b)) -webkit-calc(-webkit-var(c) * -webkit-var(d));
- -webkit-var-a: 2px;
- -webkit-var-b: 1px;
- -webkit-var-c: 5;
- -webkit-var-d: 2px;
+ border-width: -webkit-calc(var(a) + var(b)) -webkit-calc(var(c) * var(d));
+ var-a: 2px;
+ var-b: 1px;
+ var-c: 5;
+ var-d: 2px;
}
</style>
« no previous file with comments | « LayoutTests/fast/css/variables/border-width.html ('k') | LayoutTests/fast/css/variables/calc-inside-calc.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698