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

Unified Diff: LayoutTests/fast/css/variables/border-width.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/border-width.html
diff --git a/LayoutTests/fast/css/variables/border-width.html b/LayoutTests/fast/css/variables/border-width.html
index 235c12720cf8f90c42af5348627dbb55e5c1bdba..1c9a77088fa79b55dd9ce63f9b2a74edff1747d4 100644
--- a/LayoutTests/fast/css/variables/border-width.html
+++ b/LayoutTests/fast/css/variables/border-width.html
@@ -2,9 +2,9 @@
div {
border-color: green;
border-style: solid;
- border-width: -webkit-var(a) -webkit-var(b);
- -webkit-var-a: 3px;
- -webkit-var-b: 10px
+ border-width: var(a) var(b);
+ var-a: 3px;
+ var-b: 10px
}
</style>
<div>This text should have top and bottom borders of 3px and left and right borders of 10px</div>
« no previous file with comments | « LayoutTests/fast/css/test-setting-canvas-color-expected.txt ('k') | LayoutTests/fast/css/variables/calc.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698