mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
22 lines
247 B
HTML
22 lines
247 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>background: none test</title>
|
|
<style>
|
|
#a {
|
|
background: red;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
#a {
|
|
background: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=a>Background: none test</div>
|
|
</body>
|
|
</html>
|
|
|