haikuwebkit/LayoutTests/svg/custom/multiple-view-elements-expe...

38 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function loaded() {
if (window.testRunner)
testRunner.notifyDone();
}
</script>
</head>
<body onload="loaded()">
<div style="display: inline">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
<rect x="0" y="0" width="200" height="200" fill="green"/>
</svg>
</div>
<div style="display: inline">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
<rect x="0" y="0" width="200" height="200" fill="green"/>
</svg>
</div>
<br/>
<div style="display: inline">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
<rect x="0" y="0" width="200" height="200" fill="green"/>
</svg>
</div>
<div style="display: inline">
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
<rect x="0" y="0" width="200" height="200" fill="green"/>
</svg>
</div>
</body>
</html>