blob: 2995930fc43758bde65c88c34a0db64a5bfedd0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!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>
|