gecko-dev/layout/style/crashtests/1290994-3.html
Hiroyuki Ikezoe 99d11e5e5f Bug 1290994 - Do not multiply 0 by infinity in nsCSSScanner::ScanNumber. r=heycam
Without this patch test cases 1290995-{1,2,3}.html causes an assertion.
1290995-4.html is hit by the assertion in this patch if we don't avoid the
multiplication.

MozReview-Commit-ID: AtPVyPtd0r8

--HG--
extra : rebase_source : 43dbbbb98eb95faa15774b206a5776f43b1ea072
2016-08-03 19:09:58 +09:00

12 lines
335 B
HTML

<!DOCTYPE html>
<html>
<script>
window.onload=function(){
var a = document.createElement("div");
document.documentElement.appendChild(a);
a.animate([{background: "-webkit-gradient(radial, 1 2, 8, 3 4, 9, from(lime))"},
{background: "-webkit-gradient(radial, 0e309 2, 8, 3 4, 9, from(lime))"}]);
};
</script>
</html>