tenfourfox/layout/reftests/bugs/696739-1-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
478 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
fieldset {
display: inline; background: rgba(255, 255, 0, 0.7); color: black;
}
div { background: green; position:relative; z-index:1; }
div#one { float: left; }
</style>
</head>
<body>
<form>
<fieldset>
<div id="one">I should be black text on a green background</div>
</fieldset>
<fieldset>
<div>I should be black text on a green background</div>
</fieldset>
</form>
</body>
</html>