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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/gecko/variables/support/external-variable-font-face.css

Issue 1192983003: CSS Custom Properties (Variables) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use m_unit Created 5 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 @font-face {
2 --a: MyTestFontName;
3 font-family: var(--a);
4 src: url(../../resources/Ahem.ttf);
5 }
6 @font-face {
7 font-family: MyTestFontName2;
8 src: url(../../resources/Ahem.ttf);
9 }
10 #a {
11 font-family: MyTestFontName;
12 }
13 #b {
14 font-family: MyTestFontName2;
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698