diff options
Diffstat (limited to 'layout/style/crashtests/1594960.html')
-rw-r--r-- | layout/style/crashtests/1594960.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/style/crashtests/1594960.html b/layout/style/crashtests/1594960.html new file mode 100644 index 0000000000..48cf0e4e41 --- /dev/null +++ b/layout/style/crashtests/1594960.html @@ -0,0 +1,15 @@ +<style> +.x { + transform: scale(1, 1) rotate(50deg); + opacity: 0.2; + transition: transform 0.96s, opacity 1s; + border: solid medium; + offset-path: path('M0 1 1 0'); +} +</style> +<script> +window.onload = () => { + a.setAttribute("class", "x") +} +</script> +<ol id="a"> |