mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
22 lines
654 B
HTML
22 lines
654 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: SGML comments</title>
|
|
<link rel="author" title="Gabriele Romanato" href="mailto:gabriele.romanato@gmail.com">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#comments">
|
|
<link rel="match" href="reference/ref-this-text-should-be-green.htm">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="UAs must ignore SGML comment delimiters between statements.">
|
|
<style type="text/css">
|
|
p {color: red}
|
|
<!--
|
|
p {color: green}
|
|
-->
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>This text should be green.</p>
|
|
|
|
</body>
|
|
</html> |