layout/reftests/counters/counter-name-case-sensitive.html
author Gabriel Luong <gabriel.luong@gmail.com>
Sun, 13 Jul 2025 02:28:40 +0000 (16 hours ago)
changeset 796385 23185ed855a5b168943bde8ebe8ec946cd83f675
parent 11413 3557109a3d004cc8a0c55301dcf61a17ae7b2b72
permissions -rw-r--r--
Bug 1972159 - Part 25: Enable Compose Homepage by default and remove associated settings and Nimbus flags r=android-reviewers,devota Differential Revision: https://phabricator.services.mozilla.com/D254598
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
	"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head>
	<title>Test that counter names are case sensitive (bug 416106)</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<style type="text/css">

	body { counter-reset: foo 0 Foo 5; }
	div:before { content: counters(foo, ".") "-" counters(Foo, "."); }
	div.a { counter-increment: foo; }
	div.b { counter-increment: Foo 2; }

	</style>
</head>
<body>

<div class="a"></div>
<div class="b"></div>
<div></div>
<div class="a"></div>
<div class="b"></div>
<div></div>

</body>
</html>