Skip to content

Commit e286d7b

Browse files
committed
[css-ui] Resolved value of caret-color should be the used value
As discussed on issue w3c/csswg-drafts#781, I'm updating the tests so that caret-color behaves similar to the rest of color properties. Build from revision 5b3a864679e8b965513bd285487b7af640fb3f30
1 parent 9788742 commit e286d7b

25 files changed

+121
-103
lines changed

css-color-3_dev/html4/caret-color-013.htm

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@
3232
}
3333

3434
var textarea = document.getElementById("textarea");
35-
setAndCheckCaretColor(textarea, "", "", "auto", "Test default caret-color");
36-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Test caret-color: initial");
37-
setAndCheckCaretColor(textarea, "inherit", "inherit", "auto", "Test caret-color: inherit");
38-
setAndCheckCaretColor(textarea, "auto", "auto", "auto", "Test caret-color: auto");
39-
setAndCheckCaretColor(textarea, "currentcolor", "currentcolor", "currentcolor", "Test caret-color: currentcolor");
35+
setAndCheckCaretColor(textarea, "", "", "rgb(0, 0, 0)", "Test default caret-color");
36+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Test caret-color: initial");
37+
setAndCheckCaretColor(textarea, "inherit", "inherit", "rgb(0, 0, 0)", "Test caret-color: inherit");
38+
setAndCheckCaretColor(textarea, "auto", "auto", "rgb(0, 0, 0)", "Test caret-color: auto");
39+
setAndCheckCaretColor(textarea, "currentcolor", "currentcolor", "rgb(0, 0, 0)", "Test caret-color: currentcolor");
4040
setAndCheckCaretColor(textarea, "lime", "lime", "rgb(0, 255, 0)", "Test caret-color: lime");
41-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Reset caret-color: initial");
41+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Reset caret-color: initial");
4242
setAndCheckCaretColor(textarea, "rgb(0, 100, 100)", "rgb(0, 100, 100)", "rgb(0, 100, 100)", "Test caret-color: rgb(0, 100, 100)");
4343

4444
var wrapper = document.getElementById("wrapper");
4545
wrapper.style.caretColor = "green";
4646

47-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Test caret-color: initial (inherited)");
47+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Test caret-color: initial (inherited)");
4848
setAndCheckCaretColor(textarea, "inherit", "inherit", "rgb(0, 128, 0)", "Test caret-color: inherit (inherited)");
4949
setAndCheckCaretColor(textarea, "blue", "blue", "rgb(0, 0, 255)", "Test caret-color: blue (inherited)");
5050
</script>

css-color-3_dev/implementation-report-TEMPLATE.data

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# http://test.csswg.org/suites/css-color-3_dev/DATESTAMP/
44
# See http://wiki.csswg.org/test/implementation-report for instructions
55
testname revision result comment
6-
html4/caret-color-013.htm 9d819d02f818d6dd752192ff7136ce1ca2fa2bc6 ?
7-
xhtml1/caret-color-013.xht 9d819d02f818d6dd752192ff7136ce1ca2fa2bc6 ?
6+
html4/caret-color-013.htm 0e52cf5be9ac07172ba7be4d7feae0446c2156ee ?
7+
xhtml1/caret-color-013.xht 0e52cf5be9ac07172ba7be4d7feae0446c2156ee ?
88
html4/caret-color-016.htm 4d7ff9d4e4f8f12da4c2a6242ea91c22b8304d95 ?
99
xhtml1/caret-color-016.xht 4d7ff9d4e4f8f12da4c2a6242ea91c22b8304d95 ?
1010
html4/caret-color-018.htm 2b42067b6dbf7c555d46c69f305f3fd7bd42876f ?

css-color-3_dev/testinfo.data

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
id references title flags links revision credits assertion
2-
caret-color-013 caret-color dynamic changes dom,script http://www.w3.org/TR/css3-ui/#caret-color,https://www.w3.org/TR/css3-color/#color0 9d819d02f818d6dd752192ff7136ce1ca2fa2bc6 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Test checks checks that carret-color can be correctly changed using the style attribute, and that the computed value is done correctly.
2+
caret-color-013 caret-color dynamic changes dom,script http://www.w3.org/TR/css3-ui/#caret-color,https://www.w3.org/TR/css3-color/#color0 0e52cf5be9ac07172ba7be4d7feae0446c2156ee `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Test checks checks that carret-color can be correctly changed using the style attribute, and that the computed value is done correctly.
33
caret-color-016 caret-color visited link computed value interact,may,script http://www.w3.org/TR/css3-ui/#caret-color,https://www.w3.org/TR/css3-color/#color0,https://www.w3.org/TR/selectors4/#link 4d7ff9d4e4f8f12da4c2a6242ea91c22b8304d95 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Test checks that computed style of caret-color on visited links doesn't leak privacy information.
44
caret-color-018 caret-color test animation script http://www.w3.org/TR/css3-ui/#caret-color,https://www.w3.org/TR/web-animations-1/#dom-animatable-animate,https://www.w3.org/TR/css3-color/#color0 2b42067b6dbf7c555d46c69f305f3fd7bd42876f `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Test checks that caret-color is animatable as a color, and that the computed values during the animation are the expected ones.
55
t31-color-currentColor-b reference/t31-color-currentColor-b-ref color http://www.w3.org/TR/css3-color/#foreground,http://www.w3.org/TR/css3-color/#currentcolor 4dde926ad6a739b59385977b3d01c5676854e069 `L. David Baron`<https://dbaron.org/>,`Mozilla Corporation`<http://mozilla.com/> That currentColor on the color property acts like inherit.

css-color-3_dev/xhtml1/caret-color-013.xht

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@
3232
}
3333

3434
var textarea = document.getElementById("textarea");
35-
setAndCheckCaretColor(textarea, "", "", "auto", "Test default caret-color");
36-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Test caret-color: initial");
37-
setAndCheckCaretColor(textarea, "inherit", "inherit", "auto", "Test caret-color: inherit");
38-
setAndCheckCaretColor(textarea, "auto", "auto", "auto", "Test caret-color: auto");
39-
setAndCheckCaretColor(textarea, "currentcolor", "currentcolor", "currentcolor", "Test caret-color: currentcolor");
35+
setAndCheckCaretColor(textarea, "", "", "rgb(0, 0, 0)", "Test default caret-color");
36+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Test caret-color: initial");
37+
setAndCheckCaretColor(textarea, "inherit", "inherit", "rgb(0, 0, 0)", "Test caret-color: inherit");
38+
setAndCheckCaretColor(textarea, "auto", "auto", "rgb(0, 0, 0)", "Test caret-color: auto");
39+
setAndCheckCaretColor(textarea, "currentcolor", "currentcolor", "rgb(0, 0, 0)", "Test caret-color: currentcolor");
4040
setAndCheckCaretColor(textarea, "lime", "lime", "rgb(0, 255, 0)", "Test caret-color: lime");
41-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Reset caret-color: initial");
41+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Reset caret-color: initial");
4242
setAndCheckCaretColor(textarea, "rgb(0, 100, 100)", "rgb(0, 100, 100)", "rgb(0, 100, 100)", "Test caret-color: rgb(0, 100, 100)");
4343

4444
var wrapper = document.getElementById("wrapper");
4545
wrapper.style.caretColor = "green";
4646

47-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Test caret-color: initial (inherited)");
47+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Test caret-color: initial (inherited)");
4848
setAndCheckCaretColor(textarea, "inherit", "inherit", "rgb(0, 128, 0)", "Test caret-color: inherit (inherited)");
4949
setAndCheckCaretColor(textarea, "blue", "blue", "rgb(0, 0, 255)", "Test caret-color: blue (inherited)");
5050
</script>

css-color-3_dev/xhtml1print/caret-color-013.xht

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@
3232
}
3333

3434
var textarea = document.getElementById("textarea");
35-
setAndCheckCaretColor(textarea, "", "", "auto", "Test default caret-color");
36-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Test caret-color: initial");
37-
setAndCheckCaretColor(textarea, "inherit", "inherit", "auto", "Test caret-color: inherit");
38-
setAndCheckCaretColor(textarea, "auto", "auto", "auto", "Test caret-color: auto");
39-
setAndCheckCaretColor(textarea, "currentcolor", "currentcolor", "currentcolor", "Test caret-color: currentcolor");
35+
setAndCheckCaretColor(textarea, "", "", "rgb(0, 0, 0)", "Test default caret-color");
36+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Test caret-color: initial");
37+
setAndCheckCaretColor(textarea, "inherit", "inherit", "rgb(0, 0, 0)", "Test caret-color: inherit");
38+
setAndCheckCaretColor(textarea, "auto", "auto", "rgb(0, 0, 0)", "Test caret-color: auto");
39+
setAndCheckCaretColor(textarea, "currentcolor", "currentcolor", "rgb(0, 0, 0)", "Test caret-color: currentcolor");
4040
setAndCheckCaretColor(textarea, "lime", "lime", "rgb(0, 255, 0)", "Test caret-color: lime");
41-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Reset caret-color: initial");
41+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Reset caret-color: initial");
4242
setAndCheckCaretColor(textarea, "rgb(0, 100, 100)", "rgb(0, 100, 100)", "rgb(0, 100, 100)", "Test caret-color: rgb(0, 100, 100)");
4343

4444
var wrapper = document.getElementById("wrapper");
4545
wrapper.style.caretColor = "green";
4646

47-
setAndCheckCaretColor(textarea, "initial", "initial", "auto", "Test caret-color: initial (inherited)");
47+
setAndCheckCaretColor(textarea, "initial", "initial", "rgb(0, 0, 0)", "Test caret-color: initial (inherited)");
4848
setAndCheckCaretColor(textarea, "inherit", "inherit", "rgb(0, 128, 0)", "Test caret-color: inherit (inherited)");
4949
setAndCheckCaretColor(textarea, "blue", "blue", "rgb(0, 0, 255)", "Test caret-color: blue (inherited)");
5050
</script>

css-color-4_dev/html/caret-color-009.htm

+10-7
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@
55
<link href="http://www.w3.org/TR/css3-ui/#caret-color" rel="help">
66
<link href="https://drafts.csswg.org/css-color-4/#currentcolor-color" rel="help">
77
<meta content="dom" name="flags">
8-
<meta content="Test checks that auto and currentcolor compute to themselves for caret-color and that initial computes to auto" name="assert">
8+
<meta content="Test checks that the resolved value of auto, currentcolor and initial for caret-color property, is the used value." name="assert">
99
<script src="/resources/testharness.js"></script>
1010
<script src="/resources/testharnessreport.js"></script>
1111
<style>
1212
#d1 {
13+
color: lime;
1314
caret-color: auto;
1415
}
1516
#d2 {
17+
color: cyan;
1618
caret-color: currentcolor;
1719
}
1820
#d3 {
21+
color: magenta;
1922
caret-color: initial;
2023
}
2124
</style>
@@ -29,18 +32,18 @@
2932
test(
3033
function(){
3134
var d1 = document.getElementById("d1");
32-
assert_equals(window.getComputedStyle(d1)["caret-color"], "auto");
33-
}, "The computed value of auto should be auto");
35+
assert_equals(window.getComputedStyle(d1)["caret-color"], "rgb(0, 255, 0)");
36+
}, "Check the resolved value of 'auto'");
3437
test(
3538
function(){
3639
var d2 = document.getElementById("d2");
37-
assert_equals(window.getComputedStyle(d2)["caret-color"], "currentcolor");
38-
}, "The computed value of currentcolor should be currentcolor");
40+
assert_equals(window.getComputedStyle(d2)["caret-color"], "rgb(0, 255, 255)");
41+
}, "Check the resolved value of 'currentcolor'");
3942
test(
4043
function(){
4144
var d3 = document.getElementById("d3");
42-
assert_equals(window.getComputedStyle(d3)["caret-color"], "auto");
43-
}, "The computed value of initial should be auto");
45+
assert_equals(window.getComputedStyle(d3)["caret-color"], "rgb(255, 0, 255)");
46+
}, "Check the resolved value of 'initial'");
4447
</script>
4548

4649

css-color-4_dev/html/chapter-5.htm

+1-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ <h2>Named Colors (6 tests)</h2>
544544
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
545545
<td>caret-color computed values
546546
<ul class="assert">
547-
<li>Test checks that auto and currentcolor compute to themselves for caret-color and that initial computes to auto</li>
547+
<li>Test checks that the resolved value of auto, currentcolor and initial for caret-color property, is the used value.</li>
548548
</ul>
549549
</td>
550550
</tr>

css-color-4_dev/implementation-report-TEMPLATE.data

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ html/border-top-color.htm 36dd8fc359f31235f9b475f3ee72d224e013d988 ?
2727
xhtml1/border-top-color.xht 36dd8fc359f31235f9b475f3ee72d224e013d988 ?
2828
html/caret-color-007.htm adf2d7c68b94cd989f66054829398a4645768204 ?
2929
xhtml1/caret-color-007.xht adf2d7c68b94cd989f66054829398a4645768204 ?
30-
html/caret-color-009.htm de98bbd248400ce59cb26c48dcebf717d83852d7 ?
31-
xhtml1/caret-color-009.xht de98bbd248400ce59cb26c48dcebf717d83852d7 ?
30+
html/caret-color-009.htm 5cf99f4d75a5c16334cf11c5424ab533f1a568a1 ?
31+
xhtml1/caret-color-009.xht 5cf99f4d75a5c16334cf11c5424ab533f1a568a1 ?
3232
html/color-001.htm 2d4cc48f3fd2db3f4763e93e20b22efab2dbcc94 ?
3333
xhtml1/color-001.xht 2d4cc48f3fd2db3f4763e93e20b22efab2dbcc94 ?
3434
html/color-002.htm 590ce67fac62516559c06fa26086af436d398819 ?

css-color-4_dev/testinfo.data

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ border-left-color reference/border-color-ref Border-left-color set to hex with t
1111
border-right-color reference/border-color-ref Border-right-color set to hex with three digits with the maximum plus one value of #1000 https://drafts.csswg.org/css-color-4/#hex-notation 4baa69dd17c4593022e00b394eecd9b2b8cf78b5 `Microsoft`<http://www.microsoft.com/>,`Jack Moffitt`<http://metajack.im/>,`Ms2ger`<mailto:Ms2ger@gmail.com> The 'border-right-color' set to #1000 is a transparent dark red square.
1212
border-top-color reference/border-color-ref Border-top-color set to hex with three digits with the maximum plus one value of #1000 https://drafts.csswg.org/css-color-4/#hex-notation 36dd8fc359f31235f9b475f3ee72d224e013d988 `Microsoft`<http://www.microsoft.com/>,`Jack Moffitt`<http://metajack.im/>,`Ms2ger`<mailto:Ms2ger@gmail.com> The 'border-top-color' set to #1000 is a transparent dark red square.
1313
caret-color-007 caret-color: currentColor interact http://www.w3.org/TR/css3-ui/#caret-color,https://drafts.csswg.org/css-color-4/#currentcolor-color adf2d7c68b94cd989f66054829398a4645768204 `Chris Lilley`<mailto:chris@w3.org>,`Florian Rivoal`<mailto:florian@rivoal.net> Test checks that caret-color:currentColor is inherited as currentColor and resolves to the value of the color property at used value time
14-
caret-color-009 caret-color computed values dom,script http://www.w3.org/TR/css3-ui/#caret-color,https://drafts.csswg.org/css-color-4/#currentcolor-color de98bbd248400ce59cb26c48dcebf717d83852d7 `Florian Rivoal`<mailto:florian@rivoal.net> Test checks that auto and currentcolor compute to themselves for caret-color and that initial computes to auto
14+
caret-color-009 caret-color computed values dom,script http://www.w3.org/TR/css3-ui/#caret-color,https://drafts.csswg.org/css-color-4/#currentcolor-color 5cf99f4d75a5c16334cf11c5424ab533f1a568a1 `Florian Rivoal`<mailto:florian@rivoal.net> Test checks that the resolved value of auto, currentcolor and initial for caret-color property, is the used value.
1515
color-001 reference/greentext-ref CSS Color 4: color property https://drafts.csswg.org/css-color-4/#the-color-property 2d4cc48f3fd2db3f4763e93e20b22efab2dbcc94 `Chris Lilley`<mailto:chris@w3.org> This property describes the foreground fill color of an element&#8217;s text content.
1616
color-002 reference/blacktext-ref CSS Color 4: color property, initial value https://drafts.csswg.org/css-color-4/#the-color-property 590ce67fac62516559c06fa26086af436d398819 `Chris Lilley`<mailto:chris@w3.org> The initial value of this property is black.
1717
color-003 reference/greentext-ref CSS Color 4: color property, initial value https://drafts.csswg.org/css-color-4/#the-color-property d5556ee193cc822a1b4f516a2c60ae5e5b1d943b `Chris Lilley`<mailto:chris@w3.org> If the currentcolor keyword is set on the color property itself, it is treated as color: inherit.

css-color-4_dev/xhtml1/caret-color-009.xht

+10-7
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@
55
<link href="http://www.w3.org/TR/css3-ui/#caret-color" rel="help" />
66
<link href="https://drafts.csswg.org/css-color-4/#currentcolor-color" rel="help" />
77
<meta content="dom" name="flags" />
8-
<meta content="Test checks that auto and currentcolor compute to themselves for caret-color and that initial computes to auto" name="assert" />
8+
<meta content="Test checks that the resolved value of auto, currentcolor and initial for caret-color property, is the used value." name="assert" />
99
<script src="/resources/testharness.js"></script>
1010
<script src="/resources/testharnessreport.js"></script>
1111
<style>
1212
#d1 {
13+
color: lime;
1314
caret-color: auto;
1415
}
1516
#d2 {
17+
color: cyan;
1618
caret-color: currentcolor;
1719
}
1820
#d3 {
21+
color: magenta;
1922
caret-color: initial;
2023
}
2124
</style>
@@ -29,18 +32,18 @@
2932
test(
3033
function(){
3134
var d1 = document.getElementById("d1");
32-
assert_equals(window.getComputedStyle(d1)["caret-color"], "auto");
33-
}, "The computed value of auto should be auto");
35+
assert_equals(window.getComputedStyle(d1)["caret-color"], "rgb(0, 255, 0)");
36+
}, "Check the resolved value of 'auto'");
3437
test(
3538
function(){
3639
var d2 = document.getElementById("d2");
37-
assert_equals(window.getComputedStyle(d2)["caret-color"], "currentcolor");
38-
}, "The computed value of currentcolor should be currentcolor");
40+
assert_equals(window.getComputedStyle(d2)["caret-color"], "rgb(0, 255, 255)");
41+
}, "Check the resolved value of 'currentcolor'");
3942
test(
4043
function(){
4144
var d3 = document.getElementById("d3");
42-
assert_equals(window.getComputedStyle(d3)["caret-color"], "auto");
43-
}, "The computed value of initial should be auto");
45+
assert_equals(window.getComputedStyle(d3)["caret-color"], "rgb(255, 0, 255)");
46+
}, "Check the resolved value of 'initial'");
4447
</script>
4548

4649

css-color-4_dev/xhtml1/chapter-5.xht

+1-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@
544544
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
545545
<td>caret-color computed values
546546
<ul class="assert">
547-
<li>Test checks that auto and currentcolor compute to themselves for caret-color and that initial computes to auto</li>
547+
<li>Test checks that the resolved value of auto, currentcolor and initial for caret-color property, is the used value.</li>
548548
</ul>
549549
</td>
550550
</tr>

css-color-4_dev/xhtml1print/caret-color-009.xht

+10-7
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@
55
<link href="http://www.w3.org/TR/css3-ui/#caret-color" rel="help" />
66
<link href="https://drafts.csswg.org/css-color-4/#currentcolor-color" rel="help" />
77
<meta content="dom" name="flags" />
8-
<meta content="Test checks that auto and currentcolor compute to themselves for caret-color and that initial computes to auto" name="assert" />
8+
<meta content="Test checks that the resolved value of auto, currentcolor and initial for caret-color property, is the used value." name="assert" />
99
<script src="/resources/testharness.js"></script>
1010
<script src="/resources/testharnessreport.js"></script>
1111
<style>
1212
#d1 {
13+
color: lime;
1314
caret-color: auto;
1415
}
1516
#d2 {
17+
color: cyan;
1618
caret-color: currentcolor;
1719
}
1820
#d3 {
21+
color: magenta;
1922
caret-color: initial;
2023
}
2124
</style>
@@ -29,18 +32,18 @@
2932
test(
3033
function(){
3134
var d1 = document.getElementById("d1");
32-
assert_equals(window.getComputedStyle(d1)["caret-color"], "auto");
33-
}, "The computed value of auto should be auto");
35+
assert_equals(window.getComputedStyle(d1)["caret-color"], "rgb(0, 255, 0)");
36+
}, "Check the resolved value of 'auto'");
3437
test(
3538
function(){
3639
var d2 = document.getElementById("d2");
37-
assert_equals(window.getComputedStyle(d2)["caret-color"], "currentcolor");
38-
}, "The computed value of currentcolor should be currentcolor");
40+
assert_equals(window.getComputedStyle(d2)["caret-color"], "rgb(0, 255, 255)");
41+
}, "Check the resolved value of 'currentcolor'");
3942
test(
4043
function(){
4144
var d3 = document.getElementById("d3");
42-
assert_equals(window.getComputedStyle(d3)["caret-color"], "auto");
43-
}, "The computed value of initial should be auto");
45+
assert_equals(window.getComputedStyle(d3)["caret-color"], "rgb(255, 0, 255)");
46+
}, "Check the resolved value of 'initial'");
4447
</script>
4548

4649

css-color-4_dev/xhtml1print/chapter-5.xht

+1-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@
544544
<td><abbr class="dom" title="Requires Document Object Model support">DOM/JS</abbr><abbr class="script" title="Executes tests in script">Script</abbr></td>
545545
<td>caret-color computed values
546546
<ul class="assert">
547-
<li>Test checks that auto and currentcolor compute to themselves for caret-color and that initial computes to auto</li>
547+
<li>Test checks that the resolved value of auto, currentcolor and initial for caret-color property, is the used value.</li>
548548
</ul>
549549
</td>
550550
</tr>

0 commit comments

Comments
 (0)