blob: 9036184115b2deaf88ec87a570b2d03faffcb532 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/ahem.js"></script>
<style>
#clear-left {
clear: left;
font: 20px/1 Ahem, sans-serif;
color: green;
}
#clear-left > div {
float: left;
width: 200px;
height: 20px;
}
/* DataURL Access is OK, as it is with Canvas. */
#shape-outside-data-url {
shape-outside: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100px' height='20px'><rect width='200' height='20' fill='blue'/></svg>");
}
</style>
</head>
<body>
<p>Verify that data URLs define the layout.</p>
<div id="clear-left"><div id="shape-outside-data-url"></div>X</div>
</body>
</html>