| Index: LayoutTests/svg/css/display.html
|
| diff --git a/LayoutTests/svg/css/display.html b/LayoutTests/svg/css/display.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..651f96e183072ee31f233a4d4ea1bd2c56af9de6
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/css/display.html
|
| @@ -0,0 +1,26 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +svg {
|
| + width: 20px;
|
| + height: 20px;
|
| + background: green;
|
| +}
|
| +
|
| +.table { display: table }
|
| +
|
| +#t1 { display: inline }
|
| +#t2 { display: block; }
|
| +#t3 { display: inline-block; }
|
| +#t4 { display: inline-table; }
|
| +#t5 { display: table; }
|
| +#t6 { display: table-cell; }
|
| +</style>
|
| +<svg id="t1"></svg>
|
| +<svg id="t2"></svg>
|
| +<svg id="t3"></svg>
|
| +<svg id="t4"></svg>
|
| +<svg id="t5"></svg>
|
| +<div class="table">
|
| +
|
| + <svg id="t6"></svg>
|
| +</div>
|
|
|