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

Unified Diff: LayoutTests/fast/css/variables/prefix.html

Issue 16183002: Unprefix CSS Variables (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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/prefix.html
diff --git a/LayoutTests/fast/css/variables/prefix.html b/LayoutTests/fast/css/variables/prefix.html
new file mode 100644
index 0000000000000000000000000000000000000000..f4b9b3a8c839d082523bcdcf7d7ab45a051a052f
--- /dev/null
+++ b/LayoutTests/fast/css/variables/prefix.html
@@ -0,0 +1,13 @@
+<style>
+#outer {
+ color: white;
+ background-color: green;
+}
+#inner {
+ -webkit-var-test: red;
+ background-color: -webkit-var(test);
+}
+</style>
+<div id="outer">
+ <div id="inner">This text should be white on a green background.</div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698