| Index: LayoutTests/fast/shapes/parsing/parsing-shape-outside-none.html
|
| diff --git a/LayoutTests/fast/shapes/parsing/parsing-shape-outside-none.html b/LayoutTests/fast/shapes/parsing/parsing-shape-outside-none.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..580731c4efca859623c85301563ed43a09328af5
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/shapes/parsing/parsing-shape-outside-none.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../../resources/testharness.js"></script>
|
| +<script src="../../../resources/testharnessreport.js"></script>
|
| +<style>
|
| +#target { shape-outside: url(//fail); }
|
| +#target { shape-outside: none; }
|
| +</style>
|
| +<div id="target"></div>
|
| +<script>
|
| +test(function() {
|
| + assert_equals(getComputedStyle(target).shapeOutside, 'none');
|
| +}, 'Test setting the none value for shape-outside');
|
| +</script>
|
|
|