diff options
Diffstat (limited to 'layout/style/crashtests/1400926.html')
-rw-r--r-- | layout/style/crashtests/1400926.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/layout/style/crashtests/1400926.html b/layout/style/crashtests/1400926.html new file mode 100644 index 0000000000..f49030759e --- /dev/null +++ b/layout/style/crashtests/1400926.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<style> +@keyframes anim { + 0% { background-color: black; } + 100% { background-color: yellow; } +} +</style> +<script> +document.styleSheets[0].cssRules[0].cssRules[0].style.setProperty('background-color', 'red', 'important'); +</script> |