| Index: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-negative-margins.html | 
| diff --git a/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-negative-margins.html b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-negative-margins.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..5138c21f65700b83e7ecf4295f52089abfd78ea0 | 
| --- /dev/null | 
| +++ b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-negative-margins.html | 
| @@ -0,0 +1,20 @@ | 
| +<!DOCTYPE html> | 
| +<style> | 
| +#one { | 
| +    float: right; | 
| +    margin: 5222vh -6568em; | 
| +    shape-outside: ellipse(50% 25% at 50% 25%); | 
| +} | 
| +#two { | 
| +    float: right; | 
| +    margin: -5222vh 6568em; | 
| +    shape-outside: ellipse(50% 25% at 50% 25%); | 
| +} | 
| +</style> | 
| +<script> | 
| +    if (window.testRunner) | 
| +        testRunner.dumpAsText(); | 
| +</script> | 
| +<div id="one"></div> | 
| +<div id="two"></div> | 
| +<div>Test passes if it does not crash.</div> | 
|  |