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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/resources/image-url-var.css

Issue 2873943002: Ensure original parser context is used when parsing resolved var() references (Closed)
Patch Set: g cl set-commit Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/variables/computed-image-url.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .background.image-set.var {
2 --test: url('test.png');
3 background: -webkit-image-set(var(--test) 1x);
4 }
5 .background.image-set.inline {
6 background: -webkit-image-set(url('test.png') 1x);
7 }
8
9 .background.url.var {
10 --test: url('test.png');
11 background: var(--test);
12 }
13 .background.url.inline {
14 background: url('test.png');
15 }
16
17 .background-image.image-set.var {
18 --test: url('test.png');
19 background-image: -webkit-image-set(var(--test) 1x);
20 }
21 .background-image.image-set.inline {
22 background-image: -webkit-image-set(url('test.png') 1x);
23 }
24
25 .background-image.url.var {
26 --test: url('test.png');
27 background-image: var(--test);
28 }
29 .background-image.url.inline {
30 background-image: url('test.png');
31 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/variables/computed-image-url.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698