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

Unified Diff: LayoutTests/fast/css/variables/var-inside-shape.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-shape.html
diff --git a/LayoutTests/fast/css/variables/var-inside-shape.html b/LayoutTests/fast/css/variables/var-inside-shape.html
index 1cbf7469b4fc19312be6561cbf202f6a0db2dec4..acd76adb5f90c514968c039f79cd466d31dd127c 100644
--- a/LayoutTests/fast/css/variables/var-inside-shape.html
+++ b/LayoutTests/fast/css/variables/var-inside-shape.html
@@ -2,19 +2,19 @@
<html>
<style>
:root {
- -webkit-var-a: 100px;
+ var-a: 100px;
}
.a {
- -webkit-shape-inside: ellipse(-webkit-var(a), -webkit-var(a), -webkit-var(a), -webkit-var(a));
+ -webkit-shape-inside: ellipse(var(a), var(a), var(a), var(a));
}
.b {
- -webkit-shape-inside: circle(-webkit-var(a), -webkit-var(a), -webkit-var(a));
+ -webkit-shape-inside: circle(var(a), var(a), var(a));
}
.c {
- -webkit-shape-inside: rectange(-webkit-var(a));
+ -webkit-shape-inside: rectange(var(a));
}
.d {
- -webkit-shape-inside: polygon(-webkit-var(a), -webkit-var(a), -webkit-var(a), -webkit-var(a));
+ -webkit-shape-inside: polygon(var(a), var(a), var(a), var(a));
}
</style>
<div class="a">
« no previous file with comments | « LayoutTests/fast/css/variables/var-inside-quad.html ('k') | LayoutTests/fast/css/variables/var-inside-shorthand.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698