| Index: LayoutTests/http/tests/css/shape-image-file.html
|
| diff --git a/LayoutTests/http/tests/css/shape-image-file.html b/LayoutTests/http/tests/css/shape-image-file.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8f00c2d33c46e73c92c8cb563cf4efb981a63e8d
|
| --- /dev/null
|
| +++ b/LayoutTests/http/tests/css/shape-image-file.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<style>
|
| +#image-shape {
|
| + float: left;
|
| + shape-outside: url("resources/abe.png"); /* size: 76x103 */
|
| + margin-right: 100px; /* expose shape-outside failures */
|
| +}
|
| +
|
| +#content {
|
| + font: 60px/1 Ahem, sans-serif;
|
| + color: green;
|
| +}
|
| +</style>
|
| +<p>The green squares should appear to the right of and below Abe's photo.</p>
|
| +<div id="content">
|
| + <img id="image-shape" src="resources/abe.png"/>
|
| + X<br>X<br>X
|
| +</div>
|
| +</body>
|
| +</html>
|
| +
|
|
|