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

Unified Diff: LayoutTests/inspector/styles/variables/css-variables.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/inspector/styles/variables/css-variables.html
diff --git a/LayoutTests/inspector/styles/variables/css-variables.html b/LayoutTests/inspector/styles/variables/css-variables.html
index fd68af70c0b8557b86477e564ee1d3ed74004485..77a81f874dc4baf2daeef4bee58ed087dda29f95 100644
--- a/LayoutTests/inspector/styles/variables/css-variables.html
+++ b/LayoutTests/inspector/styles/variables/css-variables.html
@@ -2,8 +2,8 @@
<head>
<style>
#inspected {
- -webkit-var-a: green;
- color: -webkit-var(a);
+ var-a: green;
+ color: var(a);
}
</style>

Powered by Google App Engine
This is Rietveld 408576698