mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
14 lines
339 B
HTML
14 lines
339 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
ins {
|
|
border: 2px solid black;
|
|
color: green;
|
|
text-decoration-color: black;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if the text "2000-01-01T00:00:00-08:00" appears in the box below.</p>
|
|
<ins>2000-01-01T00:00:00-08:00</ins>
|
|
</body>
|