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

Unified Diff: LayoutTests/fast/css/variables/var-inside-pair.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-pair.html
diff --git a/LayoutTests/fast/css/variables/var-inside-pair.html b/LayoutTests/fast/css/variables/var-inside-pair.html
index 7574131c37cb767e34b83dfad04d25d9a90b8df4..3d7793ac02af72f6ba2edaff315c1f8213b6ac01 100644
--- a/LayoutTests/fast/css/variables/var-inside-pair.html
+++ b/LayoutTests/fast/css/variables/var-inside-pair.html
@@ -3,9 +3,9 @@
<style>
body {
border: 1px solid green;
- border-top-left-radius: -webkit-var(a) -webkit-var(b);
- -webkit-var-a: 3px;
- -webkit-var-b: 6px;
+ border-top-left-radius: var(a) var(b);
+ var-a: 3px;
+ var-b: 6px;
}
</style>
This text should be surrounded by a green border with a rounded top left corner.
« no previous file with comments | « LayoutTests/fast/css/variables/var-inside-box-reflect.html ('k') | LayoutTests/fast/css/variables/var-inside-quad.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698