Files
servo/tests/wpt/css-tests/css21_dev/html4/background-iframes-001.htm

20 lines
857 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>CSS Test: Transparent IFrames</title>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/background/iframes/001.html" type="text/html">
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background">
<meta name="assert" content="An IFRAME's canvas is transparent.">
<style type="text/css">
* { background: transparent; margin: 0; padding: 0; }
body { padding: 1em; }
p { margin: 1em; color: green; }
iframe { position: absolute; top: 0; left: 0; z-index: 1; margin: 0; }
</style>
</head>
<body>
<p>PASS</p>
<iframe src="support/background-iframes-001.html"><p>XXXX FAIL</p></iframe>
</body>
</html>