mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1804890 [wpt PR 37427] - Issue #37425. Adds test for ::marker with variable, a=testonly
Automatic update from web-platform-tests Add tests for ::marker with variable (#37427) Fixes #37425. -- wpt-commits: 305aa1be5f5f2adc46edf05171b05bf380e2518f wpt-pr: 37427
This commit is contained in:
parent
f40abba605
commit
ba9f72022a
@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="author" title="Karl Dubost" href="https://github.com/karlcow" />
|
||||
<link rel="help" href="https://w3c.github.io/csswg-drafts/css-pseudo/#marker-pseudo" />
|
||||
<link rel="help" href="https://w3c.github.io/csswg-drafts/css-variables/#defining-variables" />
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<title>::marker with variables</title>
|
||||
<style>
|
||||
.firstTest::marker {
|
||||
--alpha: 0.75;
|
||||
color: rgba(0 128 0 / var(--alpha));
|
||||
}
|
||||
|
||||
.secondTest::marker {
|
||||
--color: rgb(0 128 0);
|
||||
color: var(--color);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<ul>
|
||||
<li class="firstTest">Item 1</li>
|
||||
<li class="secondTest">Item 2</li>
|
||||
</ul>
|
||||
<script>
|
||||
test(() => {
|
||||
let firstTest = document.querySelector('.firstTest');
|
||||
let markerStyle = getComputedStyle(firstTest, '::marker');
|
||||
assert_equals(markerStyle.color, "rgba(0, 128, 0, 0.75)", "color is green with 0.75 opacity.");
|
||||
}, `getComputedStyle() for opacity defined by variable in ::marker`);
|
||||
test(() => {
|
||||
let secondTest = document.querySelector('.secondTest');
|
||||
let markerStyle = getComputedStyle(secondTest, '::marker');
|
||||
assert_equals(markerStyle.color, "rgb(0, 128, 0)", "color is green.");
|
||||
}, `getComputedStyle() for color defined by variable in ::marker`);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="author" title="Karl Dubost" href="https://github.com/karlcow" />
|
||||
<link
|
||||
rel="help"
|
||||
href="https://w3c.github.io/csswg-drafts/css-pseudo/#marker-pseudo"
|
||||
/>
|
||||
<link
|
||||
rel="help"
|
||||
href="https://w3c.github.io/csswg-drafts/css-variables/#defining-variables"
|
||||
/>
|
||||
<title>::marker with variables</title>
|
||||
<style>
|
||||
.firstTest::marker {
|
||||
color: rgb(255 119 0 / 0.75);
|
||||
}
|
||||
|
||||
.secondTest::marker {
|
||||
color: rgb(255 119 0);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<ul>
|
||||
<li class="firstTest">Item 1</li>
|
||||
<li class="secondTest">Item 2</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="author" title="Karl Dubost" href="https://github.com/karlcow" />
|
||||
<link rel="help" href="https://w3c.github.io/csswg-drafts/css-pseudo/#marker-pseudo" />
|
||||
<link rel="help" href="https://w3c.github.io/csswg-drafts/css-variables/#defining-variables" />
|
||||
<link rel="match" href="marker-variable-ref.html">
|
||||
<title>::marker with variables</title>
|
||||
<style>
|
||||
.firstTest::marker {
|
||||
--alpha: 0.75;
|
||||
color: rgb(255 119 0 / var(--alpha));
|
||||
}
|
||||
|
||||
.secondTest::marker {
|
||||
--color: rgb(255 119 0);
|
||||
color: var(--color);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<ul>
|
||||
<li class="firstTest">Item 1</li>
|
||||
<li class="secondTest">Item 2</li>
|
||||
</ul>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user