blob: 6ba2e05ef5db2f315ebf9aeb8a0a24733794b334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<title>-moz-default-background-color and -moz-default-color (bug 591341)</title>
<style type="text/css">
body {
color: green;
color: -moz-default-color;
background-color: red;
background-color: -moz-default-background-color;
}
</style>
</head>
<body>
Test -moz-default-background-color and -moz-default-color (bug 591341).
</body>
</html>
|