<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Sick time cases</title>
</head>
<body>
<ul type="circle">
<li>Item 1.</li>
<li type="square">Item 2.</li>
<li>Item 3.</li>
</ul>
</body>
</html>
Values of ul/@type are resolved: there is code completion and warnings for wrong values. Values of li/@type are not resolved this way. They could be. (Valid values are the same as for ul/@type attribute.)
Description
Get an HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Sick time cases</title>
</head>
<body>
<ul type="circle">
<li>Item 1.</li>
<li type="square">Item 2.</li>
<li>Item 3.</li>
</ul>
</body>
</html>
Values of ul/@type are resolved: there is code completion and warnings for wrong values. Values of li/@type are not resolved this way. They could be. (Valid values are the same as for ul/@type attribute.)