mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
20 lines
321 B
HTML
20 lines
321 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span {color: green}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<input id="one" checked="checked"/>
|
|
<span>Should be no red </span>
|
|
</div>
|
|
<div>
|
|
<input id="one" checked="checked"/>
|
|
<span>Should be no red </span>
|
|
</div>
|
|
</body>
|
|
</html>
|