servo/tests/ref/iframe/size_attributes.html
Patrick Walton 1a3395e077 script: Implement the width and height attributes for iframes per
HTML5 § 4.8.6.

Improves Amazon and Ars Technica.
2015-05-20 11:15:25 -07:00

14 lines
169 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
background: purple;
}
</style>
</head>
<body>
<iframe src="about:blank" width=200 height=100></iframe>
</body>
</html>