diff options
Diffstat (limited to 'gfx/tests/crashtests/1505934-1.html')
-rw-r--r-- | gfx/tests/crashtests/1505934-1.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gfx/tests/crashtests/1505934-1.html b/gfx/tests/crashtests/1505934-1.html new file mode 100644 index 0000000000..67475fecf9 --- /dev/null +++ b/gfx/tests/crashtests/1505934-1.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<style> + body { + background-color: limegreen; + } + .A { + transform: scale(0.01) perspective(1000px); + transform-origin: 0% 0%; + filter: grayscale(40%); + } + .B { + background-color: black; + width: 10000px; + height: 5000px; + border-radius: 2000px; + } +</style> +<body> + <div class="A"> + <div class = "B"/> + </div> +</body> |